/* --- DÜNYA AMBALAJ INNER PAGES STYLESHEET --- */

/* Split Content Grid (Used in Kurumsal & Uretim) */
.inner-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

.inner-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.inner-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.inner-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Beautiful dynamic background block for missing images */
.visual-card-fallback {
  width: 100%;
  max-width: 450px;
  height: 380px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--border-radius-l);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-card-fallback h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.visual-card-fallback p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Stats Counter Grid */
.stats-section {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.stat-item p {
  color: hsl(210, 40%, 80%);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Production Features (Uretim Page) */
.production-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0 80px;
}

.prod-card {
  background-color: var(--white);
  border-radius: var(--border-radius-m);
  padding: 40px 30px;
  border: 1.5px solid var(--border-color);
  transition: var(--transition-normal);
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-glow);
}

.prod-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.prod-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.prod-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Page Layout */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--white);
  border-radius: var(--border-radius-m);
  padding: 24px;
  border: 1.5px solid var(--border-color);
}

.contact-detail-card i {
  font-size: 1.5rem;
  color: var(--primary);
  background-color: var(--primary-glow);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-detail-card p, .contact-detail-card a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-detail-card a:hover {
  color: var(--primary);
}

/* Bank Account details */
.bank-accounts-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bank-card {
  background-color: var(--white);
  border-radius: var(--border-radius-m);
  padding: 24px 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition-normal);
}

.bank-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.bank-card-divider {
  border-top: 1px dotted #cbd5e1;
  margin: 2px 0;
  width: 100%;
}

.bank-card-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bank-field-label {
  font-size: 0.75rem;
  color: #64748b; /* slate-500 gray */
  font-weight: 500;
}

.bank-field-value {
  font-size: 1rem;
  font-weight: 800;
  color: #15803d; /* bold emerald green */
  letter-spacing: -0.2px;
}

.iban-copy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.copy-iban-icon-btn {
  background: none;
  border: none;
  color: #0f766e;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  opacity: 0.7;
}

.copy-iban-icon-btn:hover {
  opacity: 1;
  transform: scale(1.1);
  color: var(--primary);
}

.copy-svg-icon {
  width: 18px;
  height: 18px;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--white);
  border-radius: var(--border-radius-l);
  padding: 40px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

/* Dynamic Product Page Styles */
.product-hero {
  padding: 60px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-tagline {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.product-image-box {
  background-color: var(--light);
  border-radius: var(--border-radius-l);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-color);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Features List Styling */
.product-features-box {
  padding: 60px 0;
  background-color: var(--light);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-m);
  border: 1.5px solid var(--border-color);
}

.feature-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.feature-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* Accordion FAQs */
.faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--light);
  border-radius: var(--border-radius-m);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-trigger {
  padding: 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-trigger i {
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active State Accordion */
.faq-item.active {
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 1000px; /* high enough value */
  padding-bottom: 24px;
  transition: max-height var(--transition-normal) cubic-bezier(1, 0, 1, 0);
}

/* Responsive inner styles */
@media (max-width: 1024px) {
  .inner-split-grid,
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .product-image-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .production-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .production-cards {
    grid-template-columns: 1fr;
  }
  
  .bank-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.about-prod-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary) !important;
  box-shadow: 0 10px 15px rgba(37, 99, 235, 0.08) !important;
}
