/* ==========================================================================
   ARI TOYS • OYUNCAK MAYMUN DIEGO
   Premium Industrial & Toy Brand Design System (Vanilla CSS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Color Palette - Luxurious Warm Obsidian & Caramel Amber Gold */
  --bg-main: #0B0C10;
  --bg-secondary: #13161C;
  --bg-tertiary: #1B1F28;
  --bg-card: rgba(27, 31, 40, 0.65);
  --bg-card-hover: rgba(35, 42, 55, 0.85);
  --bg-glass: rgba(19, 22, 28, 0.75);
  
  --color-primary: #F7C873;       /* Bright Warm Caramel Gold */
  --color-primary-dark: #E5A93B;  /* Deep Amber */
  --color-primary-light: #FCE1B6; /* Creamy Gold */
  --color-accent: #38E5B1;        /* Neo Mint for highlight badges */
  
  --text-main: #F5F7FA;
  --text-muted: #9DA7B8;
  --text-dark: #0B0C10;
  --text-gold: #F7C873;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(247, 200, 115, 0.35);
  --border-gold-strong: rgba(247, 200, 115, 0.7);

  /* Shadows & Glows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 35px rgba(247, 200, 115, 0.25);
  --shadow-gold-lg: 0 0 60px rgba(247, 200, 115, 0.4);

  /* Typography Tokens */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* Background Animated Ambient Gradient Blobs */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  filter: blur(140px);
  opacity: 0.22;
  border-radius: 50%;
  transition: transform 12s ease-in-out;
  animation: float-blob 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary-dark) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.blob-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #6C3F1B 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -5s;
}

.blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #38E5B1 0%, transparent 70%);
  top: 40%;
  left: 60%;
  opacity: 0.08;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-40px, 50px) scale(0.95); }
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.accent-script {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(247, 200, 115, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.section-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: var(--color-primary);
  color: var(--text-dark);
  border-color: var(--color-primary);
  transform: rotate(15deg) scale(1.1);
}

/* ==========================================================================
   NAVIGATION BAR (STICKY GLASSMORPHISM)
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  z-index: 100;
  transition: all var(--transition-normal);
  background: rgba(11, 12, 16, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
  height: 72px;
  background: rgba(11, 12, 16, 0.92);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-gold);
  color: var(--text-dark);
  font-weight: 900;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-title span {
  color: var(--color-primary);
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.98rem;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 150px 0 100px;
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(56, 229, 177, 0.12);
  border: 1px solid rgba(56, 229, 177, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1.08;
}

.hero-description {
  font-size: 1.22rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-description strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Interactive Speech Bubble Box */
.diego-speech-box {
  background: rgba(247, 200, 115, 0.1);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: all var(--transition-normal);
}

.diego-speech-box:hover {
  background: rgba(247, 200, 115, 0.16);
  border-color: var(--color-primary);
  transform: scale(1.01);
}

.speech-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 15px rgba(247, 200, 115, 0.4);
  flex-shrink: 0;
}

.speech-content {
  flex-grow: 1;
}

.speech-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.speech-text {
  font-size: 0.98rem;
  color: var(--text-main);
  font-weight: 500;
  min-height: 24px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Right: Interactive Product Showcase Frame */
.hero-showcase-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold-lg), 0 25px 60px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-slow);
}

.hero-image-frame:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--color-primary);
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: opacity 0.4s ease, transform 0.8s ease;
}

.hero-image-frame:hover .hero-main-img {
  transform: scale(1.05);
}

/* Floating Badges on Hero Image */
.floating-badge {
  position: absolute;
  padding: 10px 18px;
  background: rgba(11, 12, 16, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: float-badge 6s infinite ease-in-out;
}

.badge-top-left {
  top: 24px;
  left: 24px;
}

.badge-bottom-right {
  bottom: 24px;
  right: 24px;
  animation-delay: -3s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
}

.floating-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.floating-badge-subtext {
  font-size: 0.7rem;
  color: var(--color-primary);
}

/* Hero Thumbnail Switcher Bar */
.hero-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 16px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.thumb-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--bg-main);
  transition: all var(--transition-fast);
  padding: 0;
  position: relative;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--color-primary);
  transform: scale(1.12);
  box-shadow: 0 0 15px rgba(247, 200, 115, 0.6);
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   PRODUCT FEATURES & CRAFTSMANSHIP GRID
   ========================================================================== */

.features-section {
  padding: 110px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(247, 200, 115, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--color-primary);
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(6deg);
  background: var(--color-primary);
  color: var(--text-dark);
}

.feature-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.feature-tag {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ==========================================================================
   PHOTO GALLERY & LIGHTBOX SECTION
   ========================================================================== */

.gallery-section {
  padding: 110px 0;
  background: rgba(19, 22, 28, 0.4);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: var(--text-dark);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

/* Asymmetric interesting layout */
.gallery-item:nth-child(1) { grid-column: span 6; aspect-ratio: 4 / 3; }
.gallery-item:nth-child(2) { grid-column: span 6; aspect-ratio: 4 / 3; }
.gallery-item:nth-child(3) { grid-column: span 4; aspect-ratio: 1; }
.gallery-item:nth-child(4) { grid-column: span 4; aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: span 4; aspect-ratio: 1; }

@media (max-width: 900px) {
  .gallery-item:nth-child(n) {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}

.gallery-title {
  font-size: 1.35rem;
  color: var(--text-main);
  font-weight: 700;
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 12, 16, 0.8);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content-box {
  position: relative;
  max-width: 950px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold-lg);
}

.lightbox-caption {
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 18px;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 1010;
}

.lightbox-close-btn:hover {
  background: var(--color-primary);
  color: var(--text-dark);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(27, 31, 40, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--color-primary);
  color: var(--text-dark);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* ==========================================================================
   COMPANY STORY & PRODUCTION TECH (PENDİK SÜLÜNTEPE)
   ========================================================================== */

.company-section {
  padding: 120px 0;
  position: relative;
}

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

.company-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(247, 200, 115, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.company-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 24px;
}

.company-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.company-description strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Capabilities list cards */
.capabilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-fast);
}

.capability-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(247, 200, 115, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.cap-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main);
}

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

/* Interactive Manufacturing Timeline Card */
.factory-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-gold-lg);
  position: relative;
}

.factory-badge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.factory-badge-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.factory-badge-location {
  padding: 6px 14px;
  background: rgba(56, 229, 177, 0.15);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.timeline-step:hover, .timeline-step.active {
  background: rgba(247, 200, 115, 0.12);
  border-color: var(--color-primary);
  transform: translateX(6px);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   NEW PRODUCTS SNEAK PEEK ("YENİ ÜRÜNLER GELİŞTİRİLİYOR")
   ========================================================================== */

.rd-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-subtle);
}

.rd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.rd-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.rd-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.rd-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 14px;
  background: rgba(247, 200, 115, 0.18);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rd-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.rd-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-main);
}

.rd-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rd-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-main);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}

.rd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-full);
}

.rd-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Newsletter CTA Card inside RD Section */
.rd-newsletter-box {
  background: linear-gradient(135deg, rgba(247, 200, 115, 0.14) 0%, rgba(229, 169, 59, 0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.newsletter-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-main);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(247, 200, 115, 0.3);
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */

.faq-section {
  padding: 110px 0;
  background: var(--bg-main);
}

.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 30px 24px;
}

.faq-answer-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* ==========================================================================
   CONTACT, ORDER & DEALERSHIP INQUIRY SECTION
   ========================================================================== */

.contact-section {
  padding: 110px 0 130px;
  background: linear-gradient(0deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-gold);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(247, 200, 115, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.info-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(247, 200, 115, 0.25);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Toast Confirmation Alert */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1B1F28;
  border: 1px solid var(--color-primary);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-gold-lg);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.toast-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.toast-message {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 380px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-made-in {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 600;
}

.footer-made-in span {
  color: var(--color-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-badge-row {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 34px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .diego-speech-box {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 32px;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Mobile menu active state */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav-links.mobile-open li a {
    display: block;
    padding: 12px 16px;
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-thumbnails {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-thumbnails::-webkit-scrollbar {
    height: 4px;
  }

  .hero-thumbnails::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
  }

  .gallery-grid,
  .features-grid,
  .rd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-embed-wrapper iframe {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .diego-speech-box {
    padding: 12px 14px;
    gap: 10px;
  }

  .speech-avatar {
    width: 40px;
    height: 40px;
  }

  .speech-text {
    font-size: 0.88rem;
  }

  .contact-info-card,
  .contact-form-card,
  .rd-newsletter-box,
  .factory-showcase-card {
    padding: 24px 18px;
  }
}

