
    /* ── CSS VARIABLES ── */
    :root {
      --pink:        #0f0f0f;
      --pink-light:  #e6c78b;
      --pink-dark:   #1a1a1a;
      --gold:        #c8a96a;
      --gold-light:  #f5efe0;
      --gold-dark:   #a07840;
      --white:       #ffffff;
      --off-white:   #fdf9f6;
      --text-dark:   #1a1a1a;
      --text-mid:    #444;
      --text-light:  #777;
      --border:      #e2c97e;
--shadow-sm: 0 4px 18px rgba(230,199,139,0.10);
--shadow-md: 0 8px 35px rgba(230,199,139,0.16);
--shadow-lg: 0 15px 55px rgba(230,199,139,0.22);
      --radius:      16px;
      --radius-lg:   28px;
      /* Navbar height — updated dynamically by JS.
         60px is a safe mobile default that prevents
         any flash of wrong spacing before JS runs. */
      --nav-h: 60px;
    }
    /* Reduce layout shift: reserve space for sticky nav */
    html { scroll-padding-top: var(--nav-h, 60px); }

    /* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px;overflow-x: hidden; }
    body {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      /* prevent any default body margin that causes gap */
      margin: 0;
      padding: 0;
    }
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
    }
    p { line-height: 1.8;/* color: var(--text-light);*/ }
    a { text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; display: block; }
    /* dynamic scroll-margin using CSS variable set by JS */
    section { scroll-margin-top: var(--nav-h, 72px); }

    /* ── PAGE LOADER ── */
    #page-loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #page-loader.hide { opacity: 0; visibility: hidden; }
    .loader-inner {
      text-align: center;
    }
    .loader-logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; color: var(--pink); letter-spacing: 0.08em;
    }
    .loader-bar {
      width: 120px; height: 2px; background: var(--border);
      margin: 16px auto 0; border-radius: 2px; overflow: hidden;
    }
    .loader-bar::after {
      content: ''; display: block; height: 100%;
      background: linear-gradient(90deg, var(--pink), var(--gold));
      animation: loaderAnim 1.2s ease-in-out forwards;
    }
    @keyframes loaderAnim { from { width: 0; } to { width: 100%; } }

    /* ── PAGE SECTIONS TOGGLE ──
    .page-section { display: none; margin: 0; padding: 0; }
    .page-section.active { display: block; } */

    /* ══════════════════════════════════════
       NAVBAR — mobile-first, zero-gap fix
    ══════════════════════════════════════ */
    #mainNav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      /* NO padding — controlled entirely by inner elements */
      padding: 0;
      /* contain layout so nothing bleeds below */
      contain: layout;
      transition: box-shadow 0.3s ease;
    }
    /* Scrolled shadow */
    #mainNav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

    /* Container inside navbar: use flexbox for perfect alignment */
    #mainNav > .container {
      display: flex;
      align-items: center;
      /* min-height matches our CSS variable */
      min-height: var(--nav-h, 68px);
      padding-top: 0;
      padding-bottom: 0;
    }

    /* Brand / logo */
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.25rem, 4vw, 1.5rem);
      font-weight: 700;
      color: var(--pink) !important;
      letter-spacing: 0.04em;
      /* NO vertical padding — parent flex handles centering */
      padding: 0;
      line-height: 1;
      flex-shrink: 0;
    }
    .navbar-brand span { color: var(--gold); }

    /* ── DESKTOP nav-links ── */
    .nav-link {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-mid) !important;
      /* Horizontal padding only; vertical handled by flex parent */
      padding: 0.55rem 0.9rem !important;
      position: relative;
      line-height: 1.4;
      white-space: nowrap;
    }
    /* Underline indicator */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0.9rem;
      right: 0.9rem;
      height: 2px;
      background: var(--pink);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      border-radius: 2px;
    }
    .nav-link:hover,
    .nav-link.active-nav { color: var(--pink) !important; }
    .nav-link:hover::after,
    .nav-link.active-nav::after { transform: scaleX(1); }

    /* Book Now CTA */
    .nav-book-btn {
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      color: #fff !important;
      border-radius: 50px;
      padding: 0.55rem 1.4rem !important;
      font-size: 0.8rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.08em !important;
      box-shadow: 0 4px 18px rgba(230,199,139,0.22);
      transition: transform 0.2s, box-shadow 0.2s !important;
      line-height: 1.4;
    }
    .nav-book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(230,199,139,0.22) !important;
      color: #fff !important;
    }
    .nav-book-btn::after { display: none !important; }

    /* ── MOBILE TOGGLER ── */
    .navbar-toggler {
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 7px 10px;
      background: transparent;
      /* flex-shrink so it never pushes logo */
      flex-shrink: 0;
      margin-left: auto; /* push to right edge */
    }
    .navbar-toggler:focus { box-shadow: none; outline: none; }
    .navbar-toggler-icon {
      width: 22px;
      height: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: none;
    }
    /* Custom animated hamburger lines */
    .nav-hamburger-icon {
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
      width: 22px;
      height: 16px;
      cursor: pointer;
    }
    .nav-hamburger-icon span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--pink);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: left center;
    }
    /* Animate to X when expanded */
    .navbar-toggler[aria-expanded="true"] .nav-hamburger-icon span:nth-child(1) {
      transform: rotate(45deg) translateY(-1px);
    }
    .navbar-toggler[aria-expanded="true"] .nav-hamburger-icon span:nth-child(2) {
      opacity: 0; transform: scaleX(0);
    }
    .navbar-toggler[aria-expanded="true"] .nav-hamburger-icon span:nth-child(3) {
      transform: rotate(-45deg) translateY(1px);
    }

    /* ── MOBILE MENU PANEL ── */
    #navbarMenu {
      /* When open, draw a top border to separate from navbar */
      background: var(--white);
    }
    @media (max-width: 991.98px) {
      /* Navbar row: brand left, toggler right — zero padding */
      #mainNav > .container {
        flex-wrap: wrap;
        min-height: var(--nav-h, 60px);
        padding-top: 0;
        padding-bottom: 0;
      }
      /* Prevent navbar-brand and toggler from wrapping mid-line */
      .navbar-brand { order: 1; }
      .navbar-toggler { order: 2; margin-left: auto; }
      #navbarMenu { order: 3; width: 100%; }

      /* Mobile dropdown panel */
      #navbarMenu.show {
        border-top: 1px solid var(--border);
        background: var(--white);
        padding: 12px 0 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      }
      /* Mobile nav links */
      #navbarMenu .nav-link {
        padding: 10px 4px !important;
        font-size: 0.88rem;
        border-bottom: 1px solid var(--border);
        color: var(--text-dark) !important;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      #navbarMenu .nav-link:last-of-type { border-bottom: none; }
      #navbarMenu .nav-link::after { display: none; }
      #navbarMenu .nav-link:hover,
      #navbarMenu .nav-link.active-nav {
        color: var(--pink) !important;
        background: var(--pink-light);
        border-radius: 8px;
        padding-left: 10px !important;
      }
      /* Book Now on mobile — full width pill */
      .nav-item.ms-lg-3 { margin-top: 12px; margin-left: 0 !important; }
      .nav-book-btn {
        width: 100%;
        justify-content: center;
        display: flex;
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
      }
    }

    @media (min-width: 992px) {
      /* Desktop: container is single row, items vertically centered */
      #mainNav > .container {
        flex-wrap: nowrap;
      }
      #navbarMenu {
        background: transparent;
      }
      #navbarMenu .navbar-nav {
        align-items: center;
      }
    }

    /* ── UTILITY CLASSES ── */
    .section-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 12px;
    }
    .section-badge::before, .section-badge::after {
      content: ''; width: 28px; height: 1px; background: var(--gold);
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--text-dark); margin-bottom: 16px;
    }
    .section-title span { color: var(--pink); font-style: italic; }
    .section-sub {
      font-size: 0.95rem; color: var(--text-light);
      max-width: 560px; margin: 0 auto;
    }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--gold));
      border-radius: 2px; margin: 16px auto 0;
    }
    .divider.left { margin-left: 0; }
    .btn-pink {
      background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
      color: #fff; border: none; border-radius: 50px;
      padding: 14px 36px; font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.06em; transition: all 0.3s;
      box-shadow: 0 0 12px rgba(230,199,139,0.5);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-pink:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 50px rgba(230,199,139,0.35);;
      color: #fff;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #fff; border: none; border-radius: 50px;
      padding: 14px 36px; font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.06em; transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(200,169,106,0.28);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(200,169,106,0.4);
      color: #fff;
    }
    .btn-outline-pink {
      background: transparent;
      color: var(--pink-light); border: 2px solid var(--pink-light); border-radius: 50px;
      padding: 12px 34px; font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.06em; transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline-pink:hover {
      background: var(--gold-dark); color: #fff;
      transform: translateY(-2px);
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
                  transform 0.8s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }

    /* ────────────────────────────────────────
       HOMEPAGE SECTIONS
    ──────────────────────────────────────── */

    /* ── HERO ── */
    #hero {
      /* Mobile-first: minimal top padding so hero kissed the navbar */
      min-height: calc(100svh - var(--nav-h, 60px));
      background: linear-gradient(135deg, #fdf0f5 0%, #fff8f0 50%, #fdf5ff 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      /* Responsive padding: small on mobile, larger on desktop */
    /*  padding: clamp(48px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);*/
      /* Remove any top margin */
      margin-top: 0;
    }
    .hero-decor-1 {
      position: absolute; top: -80px; right: -80px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(233,30,99,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-decor-2 {
      position: absolute; bottom: -100px; left: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,169,106,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
    }
    .hero-eyebrow::before { content: '✦'; color: var(--pink); font-size: 0.6rem; }
    .hero-title {
      font-size: clamp(2.6rem, 6vw, 5rem);
      color: var(--text-dark); line-height: 1.1; margin-bottom: 24px;
    }
    .hero-title .accent { color: var(--pink); font-style: italic; }
    .hero-title .gold-text { color: var(--gold); }
    .hero-desc {
      font-size: 1rem; line-height: 1.9; /*color: var(--text-light);*/
      max-width: 520px; margin-bottom: 40px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
    .hero-stats { display: flex; flex-wrap: wrap; gap: 40px; }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--pink); line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 0.72rem; font-weight: 500; color: var(--text-light);
      letter-spacing: 0.06em; margin-top: 4px;
    }
    .hero-img-wrap {
      position: relative; padding: 20px;
    }
    .hero-img-main {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      width: 100%;
      /* fluid aspect ratio that doesn't break on small screens */
      aspect-ratio: 4 / 5;
      object-fit: cover;
      overflow: hidden;
      /* gradient fallback if image fails to load */
      background: linear-gradient(135deg, #f8d7e3 0%, #fce4ec 50%, #f8bbd0 100%);
      display: block;
    }
    /* On mobile, relax the aspect ratio so image doesn't become too tall */
    @media (max-width: 767.98px) {
      .hero-img-main { aspect-ratio: 4 / 3.5; }
    }
    @media (max-width: 479.98px) {
      .hero-img-main { aspect-ratio: 16 / 9; }
    }
    .hero-img-badge {
      position: absolute; bottom: 40px; left: -10px;
      background: var(--white); border-radius: var(--radius);
      padding: 16px 22px; box-shadow: var(--shadow-md);
      display: flex; align-items: center; gap: 14px;
    }
    .hero-img-badge .icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--pink-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .hero-img-badge .badge-text strong {
      display: block; font-size: 0.85rem; color: var(--text-dark);
    }
    .hero-img-badge .badge-text span {
      font-size: 0.7rem; color: var(--text-light);
    }
    .hero-img-tag {
      position: absolute; top: 30px; right: 0;
      background: linear-gradient(135deg, var(--pink-light), var(--gold-dark));
      color: #fff; border-radius: var(--radius);
      padding: 12px 18px; text-align: center;
      box-shadow: 0 0 50px rgba(230,199,139,0.35);
    }
    .hero-img-tag .tag-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }
    .hero-img-tag .tag-txt { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; opacity: 0.9; }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      overflow: hidden; padding: 14px 0;
    }
    .marquee-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: marqueeScroll 25s linear infinite;
    }
    .marquee-item {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.9);
      padding: 0 32px; display: inline-flex; align-items: center; gap: 32px;
    }
    .marquee-item::after { content: '✦'; font-size: 0.5rem; opacity: 0.7; }
    @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── ABOUT ── */
    #about-section { background: var(--off-white); padding: 100px 0; }
    .about-img-wrap { position: relative; }
    .about-img-main {
      border-radius: var(--radius-lg);
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      overflow: hidden;
      background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
      box-shadow: var(--shadow-md);
      display: block;
    }
    .about-img-main img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .about-img-accent {
      position: absolute; bottom: -24px; right: -24px;
      width: 180px; height: 180px; border-radius: var(--radius);
      background: linear-gradient(135deg, #fff8f0 0%, #f5efe0 100%);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 20px;
    }
    .about-img-accent .acc-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1;
    }
    .about-img-accent .acc-txt { font-size: 0.7rem; color: var(--text-light); margin-top: 6px; line-height: 1.4; }
    .about-feature {
      display: flex; align-items: flex-start; gap: 16px; padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }
    .about-feature:last-child { border-bottom: none; }
    .about-feature .af-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: var(--pink-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--pink);
    }
    .about-feature h5 { font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
    .about-feature p { font-size: 0.82rem; margin: 0; }

    /* ── SERVICES ── */
    #services-section { background: var(--white); padding: 100px 0; }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .service-card-img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      position: relative; overflow: hidden;
    }
    .service-card-img-inner {
      width: 100%; height: 100%;
      transition: transform 0.5s ease;
      overflow: hidden;
    }
    .service-card-img-inner img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    .service-card:hover .service-card-img-inner { transform: scale(1.06); }
    .service-card:hover .service-card-img-inner img { transform: scale(1.0); } /* img already scaled via parent */
    .service-card-body { padding: 24px; }
    .service-card-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--pink-light); color: var(--pink);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; margin-bottom: 14px;
    }
    .service-card h4 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
    .service-card p { font-size: 0.82rem; margin-bottom: 16px; }
    .service-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--gold); font-weight: 700;
      margin-bottom: 16px; display: block;
    }
    .service-price small { font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: var(--text-light); font-weight: 400; }

    /* ── BRIDAL HIGHLIGHT ── */
    #bridal-section {
background: linear-gradient(160deg, #fff8e6 0%, #f5deb3 50%, #f5deb3 50%);
      padding: 100px 0; position: relative; overflow: hidden;
    }
    .bridal-bg-text {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Playfair Display', serif;
      font-size: 18vw; font-weight: 700; color: rgba(233,30,99,0.04);
      white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
    }
    .bridal-feature-card {
      background: var(--white); border-radius: var(--radius);
      padding: 28px; border: 1px solid var(--border);
      transition: all 0.3s; margin-bottom: 16px;
    }
    .bridal-feature-card:hover {
      border-color: var(--pink); box-shadow: var(--shadow-sm);
      transform: translateX(6px);
    }
    .bridal-feature-card .bfc-icon {
      color: var(--pink); font-size: 1.4rem; margin-bottom: 10px;
    }
    .bridal-feature-card h5 { font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
    .bridal-feature-card p { font-size: 0.8rem; margin: 0; }
    .bridal-main-img {
      border-radius: var(--radius-lg);
      width: 100%;
     /* aspect-ratio: 3/4;*/
      object-fit: cover;
      overflow: hidden;
      background: linear-gradient(160deg, #fff8e6 0%, #f5deb3 50%, #e6c78b 100%);
      box-shadow: var(--shadow-lg);
      display: block;
    }
    .bridal-main-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .bridal-price-tag {
      position: absolute; top: 30px; right: -10px;
      background: var(--white); border-radius: var(--radius);
      padding: 18px 22px; box-shadow: var(--shadow-md);
      border-left: 4px solid var(--gold);
    }
    .bridal-price-tag .bpt-label { font-size: 0.7rem; color: var(--text-light); margin-bottom: 4px; }
    .bridal-price-tag .bpt-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700; color: var(--pink); line-height: 1;
    }

    /* ── COURSES ── */
    #courses-section { background: var(--text-dark); padding: 100px 0; }
    #courses-section .section-title { color: var(--white); }
    #courses-section .section-badge { color: var(--gold); }
    #courses-section .section-sub { color: rgba(255,255,255,0.6); }
    .course-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: all 0.35s; height: 100%;
    }
    .course-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(200,169,106,0.4);
      transform: translateY(-6px);
      box-shadow: 0 0 50px rgba(230,199,139,0.35);;
    }
    .course-card-top {
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      padding: 32px 28px;
      position: relative; overflow: hidden;
    }
    .course-card-top.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
    .course-card-top.dark { background: linear-gradient(135deg, #2d1b2e, #4a1942); }
    .course-card-top::after {
      content: ''; position: absolute; bottom: -20px; right: -20px;
      width: 100px; height: 100px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }
    .course-badge-tag {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: rgba(255,255,255,0.8);
      background: rgba(255,255,255,0.15); border-radius: 50px;
      padding: 4px 14px; display: inline-block; margin-bottom: 14px;
    }
    .course-card-top h3 {
      font-size: 1.4rem; color: var(--white); margin-bottom: 8px;
    }
    .course-card-top p { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin: 0; }
    .course-card-body { padding: 28px; }
    .course-meta {
      display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
    }
    .course-meta-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.78rem; color: rgba(255,255,255,0.6);
    }
    .course-meta-item i { color: var(--gold); }
    .course-includes { list-style: none; padding: 0; margin-bottom: 28px; }
    .course-includes li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.82rem; color: rgba(255,255,255,0.75);
      padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .course-includes li:last-child { border-bottom: none; }
    .course-includes li i { color: var(--pink); font-size: 0.8rem; }
    .course-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; color: var(--gold); font-weight: 700;
      margin-bottom: 16px;
    }
    .course-price small {
      font-family: 'Poppins', sans-serif; font-size: 0.75rem;
      color: rgba(255,255,255,0.45); font-weight: 400;
    }

    /* ── GALLERY (Instagram style) ── */
    #gallery-section { background: var(--white); padding: 100px 0; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 220px;
      gap: 8px;
    }
    .gallery-item {
      border-radius: 12px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item-inner {
      width: 100%; height: 100%;
      transition: transform 0.5s ease;
      background-size: cover; background-position: center;
    }
    .gallery-item:hover .gallery-item-inner { transform: scale(1.07); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(233,30,99,0.7) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label {
      font-size: 0.78rem; font-weight: 600; color: #fff;
      letter-spacing: 0.08em;
    }
    /* Placeholder gradient backgrounds for gallery */
    .g1 { background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 100%); }
    .g2 { background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 100%); }
    .g3 { background: linear-gradient(135deg, #fff8e1 0%, #ffcc02 100%); }
    .g4 { background: linear-gradient(135deg, #fbe9e7 0%, #ff8a65 100%); }
    .g5 { background: linear-gradient(135deg, #e8f5e9 0%, #81c784 100%); }
    .g6 { background: linear-gradient(135deg, #e3f2fd 0%, #64b5f6 100%); }
    .g7 { background: linear-gradient(135deg, #fce4ec 0%, #e91e63 100%); }
    .g8 { background: linear-gradient(135deg, #fff3e0 0%, #c8a96a 100%); }

    /* Watermark text for gallery items */
    .gallery-wm {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 3vw, 2.5rem);
      font-style: italic; color: rgba(255,255,255,0.35);
      pointer-events: none; text-align: center; padding: 16px;
    }

    /* ── TESTIMONIALS ── */
    #testimonials-section { background: var(--off-white); padding: 100px 0; }
    .testi-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 36px 32px; border: 1px solid var(--border);
      position: relative; height: 100%;
      transition: all 0.3s;
    }
    .testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .testi-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 5rem; color: var(--pink-light);
      position: absolute; top: 10px; left: 24px;
      line-height: 1; pointer-events: none;
    }
    .testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
    .testi-text {
      font-size: 0.9rem; line-height: 1.9; color: var(--text-mid);
      font-style: italic; margin-bottom: 24px; padding-top: 20px;
    }
    .testi-author {
      display: flex; align-items: center; gap: 14px;
    }
    .testi-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pink-light), var(--pink));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--white); font-weight: 700;
      flex-shrink: 0;
    }
    .testi-author h6 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
    .testi-author span { font-size: 0.75rem; color: var(--text-light); }

    /* ── WHY CHOOSE US ── */
    #why-section {
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
      padding: 100px 0; position: relative; overflow: hidden;
    }
    #why-section::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    #why-section::after {
      content: ''; position: absolute; bottom: -80px; left: -80px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }
    #why-section .section-badge { color: rgba(255,255,255,0.7); }
    #why-section .section-badge::before,
    #why-section .section-badge::after { background: rgba(255,255,255,0.4); }
    #why-section .section-title { color: var(--white); }
    #why-section .section-sub { color: rgba(255,255,255,0.75); }
    .why-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius); padding: 32px 24px; text-align: center;
      transition: all 0.3s; height: 100%;
      backdrop-filter: blur(8px);
    }
    .why-card:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.3);
    }
    .why-card .wc-icon {
      width: 64px; height: 64px; border-radius: 20px;
      background: rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin: 0 auto 20px;
      transition: background 0.3s;
    }
    .why-card:hover .wc-icon { background: rgba(255,255,255,0.25); }
    .why-card h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
    .why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin: 0; }

    /* ── BOOKING CTA BANNER ── */
    #cta-section {
      background: var(--off-white); padding: 80px 0;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .cta-inner {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 60px; box-shadow: var(--shadow-md);
      display: flex; align-items: center; gap: 40px;
      flex-wrap: wrap;
    }
    .cta-icon {
      width: 80px; height: 80px; border-radius: 24px;
      background: linear-gradient(135deg, var(--pink-light), #f8bbd0);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; flex-shrink: 0;
    }
    .cta-text { flex: 1; }
    .cta-text h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 10px; }
    .cta-text p { font-size: 0.92rem; color: var(--text-light); margin: 0; max-width: 480px; }

    /* ── CONTACT ── */
    #contact-section { background: var(--white); padding: 100px 0; }
    .contact-info-card {
      background: var(--off-white); border-radius: var(--radius);
      padding: 28px; margin-bottom: 20px;
      border: 1px solid var(--border);
      display: flex; align-items: flex-start; gap: 16px;
      transition: all 0.3s;
    }
    .contact-info-card:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }
    .contact-info-card .ci-icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--pink-light); color: var(--pink);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .contact-info-card h5 { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
    .contact-info-card p { font-size: 0.82rem; margin: 0; }
    .contact-form-wrap {
      background: var(--off-white); border-radius: var(--radius-lg);
      padding: 40px; border: 1px solid var(--border);
    }
    .form-label {
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px;
    }
    .form-control, .form-select {
      border: 1.5px solid var(--border); border-radius: 10px;
      padding: 12px 16px; font-size: 0.88rem; font-family: 'Poppins', sans-serif;
      color: var(--text-dark); background: var(--white);
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--pink-light);
      box-shadow: 0 0 50px rgba(230,199,139,0.35);;
      outline: none;
    }
    .form-control::placeholder { color: #bbb; }
    .map-wrap {
      border-radius: var(--radius-lg); overflow: hidden;
      border: 1px solid var(--border); margin-top: 28px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark); padding: 80px 0 0;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; font-weight: 700;
      color: var(--white); letter-spacing: 0.06em;
      margin-bottom: 16px; display: block;
    }
    .footer-logo span { color: var(--pink-light); }
    .footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 28px; }
    .footer-social {
      display: flex; gap: 10px;
    }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); font-size: 0.95rem;
      transition: all 0.3s;
    }
    .footer-social a:hover { background: var(--pink-light); border-color: var(--gold-dark); color: #fff; }
    .footer-heading {
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li + li { margin-top: 10px; }
    .footer-links a {
      font-size: 0.85rem; color: rgba(255,255,255,0.55);
      display: flex; align-items: center; gap: 8px;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--pink-light); }
    .footer-links a i { font-size: 0.6rem; color: var(--gold); }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.85rem; color: rgba(255,255,255,0.55);
      margin-bottom: 14px;
    }
    .footer-contact-item i { color: var(--gold-dark); margin-top: 3px; flex-shrink: 0; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 60px; padding: 24px 0;
    }
    .footer-bottom p {
      font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0;
    }
    .footer-bottom .made-with { color: rgba(255,255,255,0.35); }
    .footer-bottom .made-with span { color: var(--pink); }

    /* ── FLOATING WHATSAPP ── */
    .whatsapp-float {
      position: fixed; bottom: 28px; left: 28px; z-index: 999;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 50px rgba(230,199,139,0.35);
      transition: all 0.3s; font-size: 1.5rem; color: #fff;
      text-decoration: none;
      animation: waPulse 2.5s ease infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.12) translateY(-3px);
      box-shadow: 0 0 50px rgba(230,199,139,0.35);;
      color: #fff;
    }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12); }
    }
    .whatsapp-float .wa-tooltip {
      position: absolute; left: 68px; top: 50%; transform: translateY(-50%);
      background: var(--text-dark); color: #fff;
      font-size: 0.75rem; font-weight: 500; white-space: nowrap;
      padding: 6px 14px; border-radius: 8px;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .whatsapp-float:hover .wa-tooltip { opacity: 1; }

    /* ── APPOINTMENT POPUP ── */
    .popup-overlay {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .popup-overlay.open { opacity: 1; visibility: visible; }
    .popup-box {
      background: var(--white); border-radius: var(--radius-lg);
      width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto;
      padding: 30px 30px;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
      box-shadow: 0 0 50px rgba(230,199,139,0.35);
      position: relative;
    }
    .popup-overlay.open .popup-box { transform: translateY(0) scale(1); }
    .popup-close {
      position: absolute; top: 20px; right: 20px;
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--border); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--text-light);
      transition: background 0.2s;
    }
    .popup-close:hover { background: var(--pink-light); color: var(--pink); }
    .popup-header { text-align: center; margin-bottom: 15px; }
    .popup-header .popup-icon {
      font-size: 2.2rem; margin-bottom: 14px; display: block;
    }
    .popup-header h3 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 8px; }
    .popup-header p { font-size: 0.85rem; color: var(--text-light); }

    /* ────────────────────────────────────────
       INNER PAGES
    ──────────────────────────────────────── */

    /* ── PAGE HERO (inner pages) ── */
    .page-hero {
      background: linear-gradient(135deg, #fff0f5 0%, #fff8f0 100%);
	background-image: url("../../assets/banner/banner.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
      padding: 80px 0 60px;
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    .page-hero .ph-badge {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 14px; display: block;
    }
    .page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--text-dark); }
    .page-hero h1 span { color: var(--pink); font-style: italic; }
    .page-hero p { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 16px auto 0; }
    .breadcrumb-wrap {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 0.78rem; color: var(--text-light); margin-top: 20px;
    }
    .breadcrumb-wrap a { color: var(--pink); }
    .breadcrumb-wrap i { font-size: 0.6rem; }

    /* ── ABOUT PAGE ── */
    .founder-card {
      background: var(--off-white); border-radius: var(--radius-lg);
      padding: 48px; border: 1px solid var(--border);
    }
    .founder-img {
      width: 180px; height: 180px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pink-light), var(--pink));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 3rem; color: var(--white); font-weight: 700;
      margin: 0 auto 24px; border: 5px solid var(--white);
      box-shadow: var(--shadow-md);
    }
    .achievement-item {
      text-align: center; padding: 32px 20px;
      border: 1px solid var(--border); border-radius: var(--radius);
      transition: all 0.3s;
    }
    .achievement-item:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }
    .achievement-item .ach-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; color: var(--pink); font-weight: 700; line-height: 1;
    }
    .achievement-item .ach-label { font-size: 0.8rem; color: var(--text-light); margin-top: 8px; }
    .cert-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold-light); border: 1px solid var(--gold);
      border-radius: 10px; padding: 12px 18px;
      font-size: 0.82rem; color: var(--gold-dark); font-weight: 500;
      margin: 6px;
    }
    .cert-badge i { color: var(--gold); }
    .mission-card {
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      border-radius: var(--radius-lg); padding: 48px;
      color: #fff; height: 100%;
    }
    .mission-card h3 { color: #fff; font-size: 1.8rem; margin-bottom: 16px; }
    .mission-card p { color: rgba(255,255,255,0.85); line-height: 1.9; }

    /* ── GALLERY PAGE ── */
    .gallery-filter {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
      margin-bottom: 40px;
    }
    .gallery-filter button {
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
      padding: 10px 24px; border-radius: 50px;
      background: var(--off-white); border: 1.5px solid var(--border);
      color: var(--text-mid); cursor: pointer;
      transition: all 0.25s;
    }
    .gallery-filter button.active,
    .gallery-filter button:hover {
      background: var(--pink); border-color: var(--pink); color: #fff;
    }
    .gallery-full-grid {
      columns: 4; column-gap: 10px;
    }
    .gallery-full-item {
      break-inside: avoid; margin-bottom: 10px;
      border-radius: 12px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-full-item img, .gallery-full-item .gfi-placeholder {
      width: 100%; display: block;
      transition: transform 0.5s ease;
    }
    .gallery-full-item:hover .gfi-placeholder { transform: scale(1.04); }
    .gfi-placeholder {
      aspect-ratio: 3/4; object-fit: cover;
    }
    .gfi-overlay {
      position: absolute; inset: 0;
      background: rgba(233,30,99,0.6);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .gallery-full-item:hover .gfi-overlay { opacity: 1; }
    .gfi-overlay i { color: #fff; font-size: 2rem; }

    /* ── COURSE PAGE ── */
    .module-card {
      background: var(--off-white); border-radius: var(--radius);
      padding: 24px; border: 1px solid var(--border);
      margin-bottom: 12px; transition: all 0.3s;
    }
    .module-card:hover { border-color: var(--pink); background: var(--white); }
    .module-card .mc-num {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--pink-light); color: var(--pink);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
    }
    .module-card h5 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
    .module-card p { font-size: 0.8rem; margin: 0; }
    .enroll-card {
      background: linear-gradient(135deg, #fff0f5, #fff8f0);
      border: 2px solid var(--pink-light);
      border-radius: var(--radius-lg); padding: 40px;
      text-align: center; position: sticky; top: 100px;
    }
    .enroll-card .ec-price {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; color: var(--pink); font-weight: 700;
      margin-bottom: 6px;
    }
    .enroll-card .ec-original {
      font-size: 1rem; color: var(--text-light); text-decoration: line-through; margin-bottom: 20px;
    }
    .enroll-card .ec-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
    .enroll-card .ec-features li {
      font-size: 0.85rem; color: var(--text-mid);
      padding: 9px 0; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
    }
    .enroll-card .ec-features li:last-child { border-bottom: none; }
    .enroll-card .ec-features li i { color: var(--pink); }

    /* ══════════════════════════════════════
       RESPONSIVE — mobile-first
    ══════════════════════════════════════ */
.le-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}
    /* ── Tablet: 768px–991px ── */
    @media (max-width: 991.98px) {
      #hero {
        /* reset to tight padding, text-center on tablet too */
        padding: clamp(40px, 7vw, 80px) 0 clamp(32px, 5vw, 60px);
        text-align: center;
        /* ensure hero fills visible viewport below nav */
        min-height: calc(100svh - var(--nav-h, 60px));
      }
      .hero-actions { justify-content: center; }
      .hero-stats   { justify-content: center; gap: 28px; }
      .hero-img-wrap { margin-top: 40px; }
      .hero-img-badge { left: 0; }

      /* Gallery collapses to 2 cols */
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-full-grid { columns: 2; }
      .hero-stat { text-align: center; }

      /* about accent image contained */
      .about-img-accent { right: 0; bottom: -12px; width: 140px; height: 140px; }
      .cta-inner { text-align: center; flex-direction: column; }
    }

    /* ── Mobile: up to 767px ── */
    @media (max-width: 767.98px) {
      #hero {
        padding: clamp(32px, 6vw, 56px) 0 clamp(28px, 5vw, 48px);
        text-align: center;
        min-height: calc(100svh - var(--nav-h, 60px));
      }
      /* Stat items */
      .hero-stats { justify-content: center; gap: 20px; }
      .hero-stat .num { font-size: 1.8rem; }
      .hero-stat .lbl { font-size: 0.68rem; }
      .hero-img-wrap { margin-top: 32px; padding: 12px; }
      .hero-img-badge { left: 4px; bottom: 24px; }
      .hero-img-tag { right: 4px; top: 20px; }

      /* gallery on mobile */
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
      }
      .gallery-item.tall,
      .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
      .gallery-full-grid { columns: 2; }

      /* popup full-screen friendly */
      .popup-box { padding: 28px 18px; max-height: 95vh; }

      /* CTA section */
      .cta-inner { padding: 32px 24px; }
      .cta-text h2 { font-size: 1.5rem; }

      /* Bridal price tag */
      .bridal-price-tag { right: 4px; }

      /* Section padding */
      #about-section,
      #services-section,
      #bridal-section,
      #courses-section,
      #gallery-section,
      #testimonials-section,
      #why-section,
      #contact-section { padding: 72px 0; }
    }

    /* ── Small mobile: up to 480px ── */
    @media (max-width: 479.98px) {
      #hero { padding: 28px 0 36px; }
      .hero-title { font-size: clamp(2.1rem, 8vw, 2.8rem); }
      .hero-desc { font-size: 0.9rem; }
      .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
      .hero-actions .btn-pink,
      .hero-actions .btn-outline-pink { width: 100%; justify-content: center; }
      .hero-stats { gap: 16px; }
      .hero-stat { min-width: 100px; }

      .gallery-full-grid { columns: 1; }
      .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
      .gallery-item.tall,
      .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
    }

/* =====================
   GO TO TOP BUTTON
===================== */

/* Base styles – hidden by default */
.go-top-btn {
  position: fixed;
  bottom: 20px;          /* sits above the floating WhatsApp button */
  right: 28px;
  z-index: 9990;

  /* Size & shape */
  width: 48px;
  height: 48px;
  border-radius: 50%;

  /* Colors */
  background: #c8a96a;    /* matches --gold */
  color: #0f0f0f;
  border: none;

  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* Shadow */
  box-shadow: 0 4px 20px rgba(200, 169, 106, 0.35);

  /* Hidden state – opacity + translateY */
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;   /* non-clickable when hidden */

  /* Smooth fade + rise animation */
  transition:
    opacity 0.38s ease,
    transform 0.38s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* Visible state (class added by JS) */
.go-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hover effect */
.go-top-btn:hover {
  background: #b89655;    /* matches --gold-hover */
  box-shadow: 0 6px 28px rgba(200, 169, 106, 0.55);
  transform: translateY(-3px);
}

/* Active / press feedback */
.go-top-btn:active {
  transform: translateY(0px) scale(0.95);
  box-shadow: 0 3px 12px rgba(200, 169, 106, 0.4);
}

/* Focus ring for accessibility */
.go-top-btn:focus-visible {
  outline: 2px solid #c8a96a;
  outline-offset: 3px;
}

/* Icon size fine-tune */
.go-top-btn svg {
  flex-shrink: 0;
  display: block;
}

/* ── Responsive: slightly smaller on mobile ── */
@media (max-width: 576px) {
  .go-top-btn {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 18px;
  }

