/* ============================================================
   Lensmoment || Made by Yudistira Mudita
   ============================================================ */

/* ── Google Fonts Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&family=Great+Vibes&display=swap');

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Color Palette — Earthy, Gold, Navy */
  --color-gold:          #C9A84C;
  --color-gold-light:    #E2C67A;
  --color-gold-dark:     #8B6914;
  --color-navy:          #1A2744;
  --color-navy-dark:     #0D1B2A;
  --color-navy-mid:      #243054;
  --color-earth:         #3D2B1F;
  --color-earth-mid:     #6B4C35;
  --color-cream:         #F7F0E3;
  --color-cream-mid:     #EFE3CA;
  --color-cream-dark:    #DBC9A6;
  --color-sand:          #C8B08A;
  --color-ivory:         #FDFAF4;
  --color-white:         #FFFFFF;
  --color-text-dark:     #2C1F14;
  --color-text-mid:      #5A4233;
  --color-text-light:    #8C7057;

  /* Typography */
  --font-display:   'Cormorant Garamond', 'Georgia', serif;
  --font-script:    'Great Vibes', cursive;
  --font-body:      'Jost', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:     100px;
  --container-max:  1200px;

  /* Transitions */
  --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-base: 0.35s var(--ease-smooth);

  /* Shadows */
  --shadow-card:    0 8px 40px rgba(29, 19, 9, 0.12);
  --shadow-gold:    0 4px 24px rgba(201, 168, 76, 0.30);
  --shadow-navy:    0 4px 32px rgba(26, 39, 68, 0.20);
  --shadow-float:   0 20px 60px rgba(29, 19, 9, 0.18);

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-pill: 999px;
}

/* ── CSS Reset & Base ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── Typography Utilities ────────────────────────────────── */
.display-font   { font-family: var(--font-display); }
.script-font    { font-family: var(--font-script); }
.body-font      { font-family: var(--font-body); }

.text-gold      { color: var(--color-gold); }
.text-navy      { color: var(--color-navy); }
.text-earth     { color: var(--color-earth); }
.text-cream     { color: var(--color-cream); }
.text-sand      { color: var(--color-sand); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-earth);
}

.section-title.light {
  color: var(--color-cream);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.8;
}

.section-subtitle.light {
  color: var(--color-cream-dark);
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin: 12px auto 0;
}

/* Ornament Divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0;
}

.ornament::before,
.ornament::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.ornament-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition-base);
}

.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: white;
  color: #8B6914;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-outline-gold {
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-cream {
  border: 1.5px solid rgba(247, 240, 227, 0.6);
  color: var(--color-cream);
  background: transparent;
}

.btn-outline-cream:hover {
  background: rgba(247, 240, 227, 0.15);
  border-color: var(--color-cream);
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-cream);
  box-shadow: var(--shadow-navy);
}

.btn-navy:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 22px; font-size: 0.8rem; }
.btn-lg { padding: 16px 42px; font-size: 0.95rem; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 99px; }

/* ============================================================
   SECTION 1 — NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

#navbar.scrolled {
  background: rgba(253, 250, 244, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(29, 19, 9, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-earth);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--color-gold);
}

#navbar.scrolled .nav-logo { color: var(--color-earth); }
#navbar:not(.scrolled) .nav-logo { color: var(--color-earth); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-mid);
  position: relative;
  padding-bottom: 3px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-gold);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}
/* ── Dropdown Menu Styles ───────────────────────────────── */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* Kotak Menu Dropdown Melayang (Desktop) */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--color-navy); /* Menyesuaikan warna dasar navbar */
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  min-width: 210px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-dropdown-menu li {
  width: 100%;
  margin: 0 !important; /* Reset margin bawaan nav-links */
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--color-cream);
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: left;
}

/* Hover Effect pada Item Dropdown */
.nav-dropdown-menu li a:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-dark) !important;
  padding-left: 24px; /* Efek bergeser sedikit ke kanan saat di-hover */
}
.pricing-mobile-view {
  display: none;
}
/* Logika Tampil Saat Hover di Desktop */
@media (min-width: 769px) {
  .nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }
  
  .nav-dropdown-wrapper:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}
  
/* Penyesuaian Responsif untuk Tampilan Mobile (max-width: 768px) */
/* ── FORMAT ULANG NAV MOBILE & DROPDOWN ACCORDION ────────── */
@media (max-width: 768px) {
  .pricing-mobile-view {
    display: fl;
  }
  /* Desain Tombol Menutup Menu (X Button) */
  .nav-mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1010;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .nav-mobile-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
  }

  /* Memberikan ruang di atas list agar tidak tertutup tombol close */
  .nav-mobile ul[role="list"] {
    margin-top: 60px;
    width: 100%;
    padding: 0 10px;
  }

  /* Struktur Utama Pemicu Dropdown */
  .nav-mobile .nav-dropdown-wrapper {
    width: 100%;
    display: block;
  }

  .nav-mobile .nav-dropdown-wrapper a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream);
  
  }
  .nav-mobile .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: var(--color-cream);
    text-decoration: none;
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: color 0.25s ease;
  }

  .nav-mobile .nav-dropdown-trigger .dropdown-icon {
    font-size: 0.85rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ── FIX: Box Sub-menu List Instagram (Sistem Akordeon) ──────────────────
     Global CSS memiliki opacity:0, visibility:hidden, position:absolute, dan
     transform. Semua wajib di-reset di sini agar saat display:block diaktifkan
     oleh .active-mobile, dropdown benar-benar tampil (tidak transparan/tersembunyi). */
  .nav-mobile .nav-dropdown-menu {
    /* Reset properti desktop — ini kunci agar dropdown tidak invisible */
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* Sembunyikan via display saja — property yang di-toggle */
    display: none;
    /* Styling accordion */
    list-style: none;
    padding: 4px 0 8px 16px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.06);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 0 0 4px;
    /* Reset sisa style desktop */
    min-width: unset;
    box-shadow: none;
    top: unset;
    left: unset;
    z-index: auto;
    border-top: none;
    border-right: none;
    border-bottom: none;
    transition: none;
  }

  .nav-mobile .nav-dropdown-menu li {
    margin: 0 !important;
    width: 100%;
  }

  .nav-mobile .nav-dropdown-menu li a {
    display: block;
    padding: 10px 16px !important;
    color: rgba(247, 240, 227, 0.75) !important;
    font-size: 0.95rem !important;
    text-align: left;
    text-transform: none;
  }

  .nav-mobile .nav-dropdown-menu li a:hover {
    color: var(--color-gold) !important;
    background: transparent !important;
    padding-left: 20px !important;
  }

  /* State Aktif saat Dropdown dibuka di HP */
  .nav-mobile .nav-dropdown-wrapper.active-mobile .nav-dropdown-menu {
    display: block !important;
    animation: fadeInSlideDown 0.3s ease-out forwards;
  }

  .nav-mobile .nav-dropdown-wrapper.active-mobile .nav-dropdown-trigger {
    color: var(--color-gold);
  }

  .nav-mobile .nav-dropdown-wrapper.active-mobile .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* Animasi Masuk Submenu */
@keyframes fadeInSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-earth);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
/* ── FIX: nav-mobile background dibuat gelap (navy) agar close button dan
   teks cream terlihat jelas — sebelumnya ivory (terang) menyebabkan teks
   tidak kontras dan tidak terbaca. */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

/* ── FIX: Teks link mobile disesuaikan dengan background gelap (navy) ── */
.nav-mobile li a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.04em;
}

.nav-mobile li a:hover { color: var(--color-gold); }

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-cream) 0%, var(--color-cream-mid) 50%, var(--color-cream-dark) 100%);
  padding-top: 80px;
}

/* Decorative background circles */
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -180px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.hero-bg-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(139,105,20,0.10) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(61,43,31,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content {}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-earth);
  margin-bottom: 12px;
}

.hero-subtitle-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-gold);
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 38px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,168,76,0.22);
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-earth);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-phone-wrapper {
  position: relative;
  z-index: 2;
}

.hero-phone {
  width: 2000px;
  filter: drop-shadow(var(--shadow-float));
  /* animation: floatPhone 4s ease-in-out infinite; */
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}

.hero-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.35) 0%, transparent 70%);
  filter: blur(12px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* Decorative card floating */
.hero-card-float {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.15);
}

.hero-card-float-1 {
  top: 60px;
  left: -60px;
  animation: floatCard1 5s ease-in-out infinite;
}

.hero-card-float-2 {
  bottom: 80px;
  right: -20px;
  animation: floatCard2 5.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.card-float-icon { font-size: 1.4rem; margin-bottom: 4px; }
.card-float-label { font-size: 0.68rem; font-weight: 600; color: var(--color-gold); letter-spacing: 0.08em; text-transform: uppercase; }
.card-float-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--color-earth); }

/* Balinese decorative dots */
.hero-dots {
  position: absolute;
  top: 40px;
  right: -60px;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 8px;
  opacity: 0.25;
}

.hero-dots span {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--color-gold-dark);
  border-radius: 50%;
}

/* Hero Features Bar */
.hero-features {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  margin-top: 30px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  z-index: 2;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-cream), var(--color-cream-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-feature-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-earth);
  line-height: 1.3;
}

.hero-feature-desc {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 2px;
  line-height: 1.5;
}

/* ============================================================
   SECTION 3 — ABOUT / UNDANGAN DIGITAL BERNUANSA BALI
   ============================================================ */
#about {
  padding: var(--section-py) 0;
  background: var(--color-ivory);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Image Column */
.about-image-col {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-navy);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-navy);
}

.badge-years {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-top: 4px;
}

.about-img-gold-border {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(201,168,76,0.30);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}

/* About Content Column */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature-card {
  background: var(--color-white);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-base);
}

.about-feature-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.about-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-feature-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-earth);
  margin-bottom: 6px;
}

.about-feature-desc {
  font-size: 0.77rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   SECTION 4 — TEMPLATE GALLERY / PILIH DESAIN FAVORIT
   ============================================================ */
#gallery {
  padding: var(--section-py) 0;
  background: var(--color-cream);
  overflow: hidden;
}

/* Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-mid);
  border: 1.5px solid rgba(61,43,31,0.16);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* Template Cards Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.template-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
}

.template-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.template-card-img {
  aspect-ratio: 9/14;
  overflow: hidden;
  position: relative;
}

.template-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-smooth);
}

.template-card:hover .template-card-img img {
  transform: scale(1.06);
}

.template-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,19,9,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.template-card:hover .template-card-overlay {
  opacity: 1;
}

.template-overlay-btn {
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transform: translateY(12px);
  transition: var(--transition-base);
}

.template-card:hover .template-overlay-btn {
  transform: translateY(0);
}

/* Featured Badge */
.template-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.template-card-footer {
  padding: 14px 16px;
}

.template-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-earth);
}

.template-category {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-earth);
}

.template-type {
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   SECTION 5 — HOW IT WORKS / MUDAH DALAM 3 LANGKAH
   ============================================================ */
#how-it-works {
  padding: var(--section-py) 0;
  background: var(--color-ivory);
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 60px;
}

/* Dashed connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0, var(--color-gold) 8px, transparent 8px, transparent 20px);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.14);
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.35);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-earth);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

.step-cta:hover { gap: 10px; }

/* ============================================================
   SECTION 6 — PRICING / PAKET UNDANGAN DIGITAL
   ============================================================ */
#pricing {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  margin-top: 60px;
}

/* Feature Labels Column */
.pricing-col-features {
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(201,168,76,0.12);
}

/* Pricing Columns */
.pricing-col {
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.08);
  position: relative;
  transition: var(--transition-base);
}

.pricing-col:last-child { border-right: none; }

.pricing-col.popular {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}

/* Popular badge */
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* Header Cells */
.pricing-header-cell {
  padding: 28px 16px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  min-height: 100px;
}

.pricing-plan-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cream-dark);
  margin-bottom: 8px;
}

.popular .pricing-plan-name { color: var(--color-gold-light); }

.pricing-price {
  font-family: var(--font-georgia);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1;
}

.pricing-price span {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-cream-dark);
  display: block;
  margin-top: 2px;
}

.popular .pricing-price { color: var(--color-gold-light); }

/* Feature Label Cell */
.features-label-cell {
  padding: 14px 8px;
  font-size: 0.8rem;
  color: var(--color-cream-dark);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Feature Value Cell */
.pricing-cell {
  padding: 14px 8px;
  display: block;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8rem;
  color: var(--color-cream-dark);
}

.pricing-cell .check {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.pricing-cell .cross {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
}

/* CTA Row */
.pricing-cta-row {
  padding: 20px 16px;
}

.pricing-col-features .pricing-cta-row { padding: 20px; }

.pricing-cta-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-cream);
}

/* Pricing Note */
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8rem;
  color: rgba(239,227,202,0.6);
}

/* ============================================================
   SECTION 7 — TESTIMONIALS / KATA MEREKA
   ============================================================ */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--color-cream);
  overflow: hidden;
}

.testimonials-swiper {
  padding: 20px 10px 50px !important;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.12);
  height: auto;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  font-family: var(--font-display);
  color: rgba(201,168,76,0.18);
  position: absolute;
  top: -10px;
  left: -8px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.30);
  background: var(--color-cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-earth);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* Swiper Customizations */
.swiper-pagination-bullet {
  background: var(--color-cream-dark) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  width: 20px !important;
  border-radius: var(--radius-pill) !important;
  transition: width 0.3s ease !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-gold) !important;
  background: var(--color-white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-card) !important;
  border: 1px solid rgba(201,168,76,0.2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0.85rem !important;
  font-weight: 900;
}

/* ============================================================
   SECTION 8 — CTA BANNER
   ============================================================ */
#cta-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--color-earth) 0%, var(--color-navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner-subtitle {
  font-size: 0.92rem;
  color: var(--color-cream-dark);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION 9 — FOOTER
   ============================================================ */
#footer {
  background: var(--color-navy-dark);
  color: var(--color-cream-dark);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 52px;
}

.footer-brand .nav-logo {
  color: var(--color-cream);
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(239,227,202,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-dark);
  font-size: 0.85rem;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 0.82rem;
  color: rgba(239,227,202,0.6);
  transition: var(--transition-base);
}

.footer-links li a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(239,227,202,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(239,227,202,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(239,227,202,0.4);
  transition: var(--transition-base);
}

.footer-bottom-links a:hover { color: var(--color-gold); }

/* ── Back To Top Button ───────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition-base);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.5);
}

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-pill);
  margin: 14px 0;
}

.gold-divider.center { margin: 14px auto; }

/* ── AOS Overrides ────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE — TABLET ( ≤ 1024px )
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual  { order: 1; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc    { margin: 0 auto 38px; }
  .hero-cta-group { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-features { grid-template-columns: 1fr; gap: 16px; }
  .hero-card-float-1 { left: 10px; }
  .hero-card-float-2 { right: 10px; }

  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-image-col { max-width: 500px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }

  .pricing-grid {
    grid-template-columns: 140px repeat(4, 1fr);
  }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE ( ≤ 768px )
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 64px; padding: 5 5px;}
  .container { padding: 5 5px; }

  /* Navigation Mobile Toggle Active */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  
  .nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-navy-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-smooth);
  }
  .nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
  .nav-mobile li a { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-cream); }

  /* Sembunyikan Struktur Grid Desktop */
  .pricing-desktop-view {
    display: none !important;
  }
  
  /* Aktifkan Wadah Khusus Mobile */
  .pricing-mobile-view {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  /* Kotak Utama / Card Per Paket */
  .pricing-mob-card {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(36, 48, 84, 0.4) !important;
    border: 1px solid rgba(247, 240, 227, 0.08) !important;
    border-radius: 14px !important;
    padding: 16px !important;
    position: relative;
    width: 100%;
  }

  .pricing-mob-card.popular {
    border: 1.5px solid var(--color-gold) !important;
    background: rgba(13, 27, 42, 0.8) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  /* Badge Penanda Paket Populer */
  .mob-popular-badge {
    position: absolute;
    top: -10px;
    left: 14px;
    background: var(--color-gold);
    color: var(--color-navy-dark);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
  }

  /* BARIS ATAS: Membagi Info Harga (Kiri) dan Area Fitur (Kanan) */
  .mob-card-body {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  /* SISI KIRI: Detail Nama & Harga Paket */
  .mob-left-info {
    width: 42%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
  }

  .mob-plan-name {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 2px 0;
  }

  .mob-plan-price {
    font-size: 1.3rem;
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.1;
  }

  .mob-plan-duration {
    font-size: 0.65rem;
    color: rgba(247, 240, 227, 0.5);
    margin-top: 2px;
  }

  /* SISI KANAN: Kontainer Pembatas Area Geser */
  .mob-right-scroll-area {
    width: 58%;
    overflow: hidden;
    position: relative;
    border-left: 1px solid rgba(247, 240, 227, 0.1);
    padding-left: 12px;
  }

  /* Wrapper Utama Pemaksa Aliran Horizontal (Scroll Samping) */
  .mob-feature-scroll-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    overflow-x: auto !important;
    padding: 4px 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Momentum halus untuk perangkat iOS */
  }

  /* Menyembunyikan Scrollbar Bawaan Sistem Agar Desain Bersih */
  .mob-feature-scroll-wrapper::-webkit-scrollbar {
    display: none !important;
  }

  /* Komponen Kapsul / Pil Fitur Undangan */
  .mob-feature-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(247, 240, 227, 0.1) !important;
    padding: 6px 12px !important;
    border-radius: 30px !important;
    white-space: nowrap !important; /* Mengunci teks agar tidak melipat kebawah */
    font-size: 0.75rem !important;
    color: rgba(247, 240, 227, 0.9) !important;
    flex-shrink: 0; /* Menolak penciutan ukuran kapsul */
  }

  .mob-feature-pill i {
    color: var(--color-gold) !important;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .mob-feature-pill span strong {
    color: var(--color-gold-light);
  }

  /* BARIS BAWAH: Penempatan Tombol Pesan Tepat di Bawah Harga */
  .mob-card-footer {
    margin-top: 14px;
    width: 100%;
  }

  .mob-cta-full {
    display: flex !important;
    width: 100% !important;
    padding: 10px !important;
    font-size: 0.8rem !important;
    justify-content: center !important;
    align-items: center;
    border-radius: 30px !important;
    text-align: center;
  }
}
/* ============================================================
   RESPONSIVE — SMALL MOBILE ( ≤ 480px )
   ============================================================ */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
}