    :root {
      --green-dark: #0d3d1e;
      --green-main: #155e31;
      --green-mid: #1e7a3e;
      --green-light: #d4edda;
      --gold: #c9922a;
      --gold-light: #f5e6c8;
      --off-white: #f8f6f0;
      --text-dark: #1a1a1a;
      --text-muted: #5a6672;
    }

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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar-custom {
      background: rgba(13, 61, 30, 0.97);
      backdrop-filter: blur(16px);
      padding: 10px 0;
      position: fixed;
      width: 100%;
      z-index: 999;
      border-bottom: 1px solid rgba(201,146,42,0.25);
    }
    .navbar-custom .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 8px;
    }
    .navbar-custom .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 6px 10px !important;
      transition: color 0.25s;
      white-space: nowrap;
    }
    .navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
      color: var(--gold) !important;
    }
    .navbar-brand-logo {
      flex-shrink: 0;
    }
    .navbar-brand-logo img {
      max-width: 330px;
      object-fit: contain;
      border-radius: 6px;
    }
    .btn-daftar-nav {
      background: var(--gold);
      color: #fff !important;
      border-radius: 6px;
      padding: 7px 16px !important;
      font-weight: 600;
      font-size: 13px;
      transition: background 0.2s, transform 0.2s;
      white-space: nowrap;
    }
    .btn-daftar-nav:hover {
      background: #a8791f;
      transform: translateY(-1px);
    }

    /* Hamburger toggler */
    .navbar-toggler-custom {
      background: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 6px;
      color: #fff;
      padding: 6px 10px;
      cursor: pointer;
      flex-shrink: 0;
      display: none;
      line-height: 1;
    }
    .navbar-toggler-custom:focus { outline: none; }

    /* Mobile nav menu */
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2px;
      flex-wrap: nowrap;
    }

    /* Mobile drawer overlay */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      /*z-index: 1040;*/
	  z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .nav-overlay.open {
      display: block;
      opacity: 1;
    }

    @media (max-width: 991px) {
      .navbar-toggler-custom { display: block; }
      .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 90%;
        max-width: 360px;
        background: var(--green-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        box-shadow: 4px 0 32px rgba(0,0,0,0.4);
        border-right: 1px solid rgba(201,146,42,0.2);
      }
      .nav-menu.open {
        transform: translateX(0);
        display: flex;
      }
      .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(201,146,42,0.2);
        background: rgba(0,0,0,0.2);
      }
      .nav-menu-header-logo {
        height: 34px;
        object-fit: contain;
		border-radius:6px !important;
      }
      .nav-menu-close {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
        border-radius: 6px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        transition: background 0.2s;
      }
      .nav-menu-close:hover { background: rgba(255,255,255,0.18); }
      .nav-menu-body {
        flex: 1;
        padding: 12px 0 20px;
      }
      .navbar-inner { flex-wrap: nowrap; }
      .navbar-custom .nav-link {
        padding: 14px 24px !important;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.85) !important;
        transition: background 0.2s, color 0.2s;
      }
      .navbar-custom .nav-link:hover {
        background: rgba(255,255,255,0.06);
        color: var(--gold) !important;
      }
      .btn-daftar-nav {
        margin: 16px 20px 0 !important;
        display: flex !important;
        justify-content: center;
        padding: 13px 16px !important;
        border-radius: 10px;
        font-size: 15px;
        border-bottom: none !important;
        background: var(--gold);
      }
      .btn-daftar-nav:hover { background: #a8791f !important; }
      .nav-menu-footer {
        padding: 20px 24px;
        border-top: 1px solid rgba(255,255,255,0.06);
        font-size: 12px;
        color: rgba(255,255,255,0.3);
        text-align: center;
      }
      .navbar-brand-logo img {
        max-width: 300px;
		border-radius:6px !important;
      }
    }

    /* ── HERO ── */
    .hero {
      min-height: 80vh;
      background: linear-gradient(135deg, var(--green-dark) 0%, #0f2d18 55%, #163826 100%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 0L80 40 40 80 0 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    }
    .hero-circle {
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1.5px solid rgba(201,146,42,0.12);
    }
    .hero-circle::after {
      content:'';
      position: absolute;
      inset: 40px;
      border-radius: 50%;
      border: 1px solid rgba(201,146,42,0.08);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,146,42,0.15);
      border: 1px solid rgba(201,146,42,0.35);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 62px);
      color: #fff;
      line-height: 1.12;
      margin-bottom: 20px;
    }
    .hero h1 span { color: var(--gold); }
    .hero p.lead {
      color: rgba(255,255,255,0.65);
      font-size: 16px;
      font-weight: 300;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 32px;
    }
    .btn-hero-primary {
      background: var(--gold);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 13px 28px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .btn-hero-primary:hover { background: #a8791f; color: #fff; transform: translateY(-2px); }
    .btn-hero-outline {
      background: transparent;
      color: rgba(255,255,255,0.8);
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      padding: 13px 28px;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .btn-hero-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

    .hero-stat-strip {
      display: flex;
      gap: 28px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .hero-stat-strip .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--gold);
      display: block;
    }
    .hero-stat-strip .stat-lbl {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ── SIDE BANNER SLIDER ── */
    .hero-right-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    /* Banner Slider */
    .side-banner-slider {
      width: 100%;
      max-width: 520px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    }
    .banner-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .banner-slide {
      min-width: 100%;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
    }
    .banner-slide-inner {
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 36px;
      position: relative;
      overflow: hidden;
    }
    /* Banner 1 – Pendaftaran */
    .banner-1 { background: linear-gradient(135deg, #c9922a 0%, #a8791f 60%, #8a5a10 100%); }
    /* Banner 2 – Beasiswa */
    .banner-2 { background: linear-gradient(135deg, #0d3d1e 0%, #155e31 60%, #1e7a3e 100%); }
    /* Banner 3 – Tahfidz */
    .banner-3 { background: linear-gradient(135deg, #0f2d40 0%, #1a5c7a 60%, #1e7aa0 100%); }
    /* Banner 4 – Boarding */
    .banner-4 { background: linear-gradient(135deg, #2a1a0d 0%, #6b3c10 60%, #a05a1a 100%); }

    .banner-bg-icon {
      position: absolute;
      right: -20px;
      bottom: -20px;
      font-size: 120px;
      opacity: 0.1;
      color: #fff;
      line-height: 1;
    }
    .banner-content {
      position: relative;
      z-index: 1;
      width: 100%;
    }
    .banner-tag {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
    }
    .banner-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 10px;
    }
    .banner-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
      line-height: 1.55;
      margin-bottom: 18px;
    }
    .banner-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.35);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .banner-cta:hover { background: rgba(255,255,255,0.35); color: #fff; }

    /* Dots navigation */
    .banner-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 10px;
    }
    .banner-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background 0.25s, width 0.25s;
      border: none;
      padding: 0;
    }
    .banner-dot.active {
      background: var(--gold);
      width: 22px;
      border-radius: 4px;
    }

    /* Banner nav arrows */
    .banner-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.35);
      border: none;
      color: #fff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      font-size: 14px;
      transition: background 0.2s;
    }
    .banner-arrow:hover { background: rgba(0,0,0,0.6); }
    .banner-arrow.prev { left: 8px; }
    .banner-arrow.next { right: 8px; }

    /* ── COUNTDOWN ── */
    .countdown-band {
      background: var(--green-main);
      padding: 18px 0;
    }
    .countdown-band .inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .countdown-band .label {
      color: rgba(255,255,255,0.7);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.03em;
    }
    .countdown-band .boxes {
      display: flex;
      gap: 10px;
    }
    .countdown-box {
      text-align: center;
      background: rgba(0,0,0,0.2);
      border-radius: 8px;
      padding: 8px 14px;
      min-width: 58px;
    }
    .countdown-box span.num {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: #fff;
      line-height: 1;
    }
    .countdown-box span.unit {
      display: block;
      font-size: 10px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ── SECTION GENERIC ── */
    section { padding: 80px 0; }
    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.5vw, 42px);
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      color: var(--text-muted);
      font-size: 15.5px;
      font-weight: 300;
      line-height: 1.7;
      max-width: 560px;
    }
    .divider-gold {
      width: 48px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: 16px 0 32px;
    }

    /* ── UNIT CARDS ── */
    .unit-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.07);
      transition: transform 0.28s, box-shadow 0.28s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .unit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(13,61,30,0.12);
    }
    .unit-card-header {
      background: var(--green-dark);
      padding: 28px 24px 22px;
      position: relative;
    }
    .unit-card-header .icon {
      width: 48px;
      height: 48px;
      background: rgba(201,146,42,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .unit-card-header h4 {
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 4px;
    }
    .unit-card-header p {
      color: rgba(255,255,255,0.55);
      font-size: 12px;
      letter-spacing: 0.04em;
    }
    .unit-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 100px;
      text-transform: uppercase;
    }
    .unit-card-body {
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .unit-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .unit-feature .bi { color: var(--green-mid); margin-top: 2px; flex-shrink: 0; }
    .btn-unit {
      display: block;
      text-align: center;
      background: var(--green-dark);
      color: #fff;
      border-radius: 8px;
      padding: 12px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      margin-top: auto;
      transition: background 0.2s;
    }
    .btn-unit:hover { background: var(--green-mid); color: #fff; }

    /* ── TIMELINE / ALUR ── */
    .alur-section { background: #fff; }
    .timeline-item {
      display: flex;
      gap: 24px;
      margin-bottom: 36px;
      align-items: flex-start;
    }
    .timeline-dot {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--gold);
      position: relative;
    }
    .timeline-dot::after {
      content:'';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 36px;
      background: linear-gradient(var(--green-light), transparent);
    }
    .timeline-item:last-child .timeline-dot::after { display: none; }
    .timeline-content h5 { font-weight: 600; font-size: 16px; margin-bottom: 4px; color: var(--green-dark); }
    .timeline-content p { font-size: 14px; color: var(--text-muted); margin: 0; }
    .timeline-date { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 2px; }

    /* ── BERITA ── */
    .berita-section { background: var(--off-white); }
    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
      height: 100%;
    }
    .news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .news-card .news-img {
      height: 200px;
      background: var(--green-dark);
      overflow: hidden;
      position: relative;
    }
    .news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .news-card:hover .news-img img { transform: scale(1.05); }
    .news-cat {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.07em;
      padding: 4px 10px;
      border-radius: 100px;
      text-transform: uppercase;
    }
    .news-body { padding: 20px; }
    .news-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }
    .news-meta .bi { font-size: 11px; }
    .news-body h5 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--green-dark); line-height: 1.4; margin-bottom: 10px; }
    .news-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }
    .news-read-more {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green-mid);
      text-decoration: none;
      margin-top: 14px;
      transition: gap 0.2s;
    }
    .news-read-more:hover { gap: 8px; color: var(--green-dark); }

    /* ── BIAYA ── */
    .biaya-card {
      background: #fff;
      border-radius: 16px;
      border: 1.5px solid var(--green-light);
      padding: 28px 24px;
      height: 100%;
      transition: box-shadow 0.25s, border-color 0.25s;
    }
    .biaya-card:hover { box-shadow: 0 12px 40px rgba(13,61,30,0.1); border-color: var(--green-main); }
    .biaya-card.featured { border-color: var(--gold); background: linear-gradient(145deg, #fffbf4, #fff); }
    .biaya-card .price-tag { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--green-dark); margin: 12px 0 4px; }
    .biaya-card .price-tag span { font-size: 15px; color: var(--text-muted); }
    .biaya-list li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      list-style: none;
    }
    .biaya-list li:last-child { border: none; }

    /* ── FORM PENDAFTARAN ── */
    .form-section {
      background: var(--green-dark);
      position: relative;
      overflow: hidden;
    }
    .form-section::before {
      content:'';
      position: absolute;
      bottom: -120px;
      right: -120px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.025);
    }
    .form-section .section-eyebrow { color: var(--gold); }
    .form-section .section-title { color: #fff; }
    .form-section .section-sub { color: rgba(255,255,255,0.5); }
    .form-section .divider-gold { margin: 12px 0 24px; }
    .form-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.2);
    }
    .form-label { font-size: 13px; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
    .form-control, .form-select {
      border-color: rgba(0,0,0,0.12);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 14px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--green-mid);
      box-shadow: 0 0 0 3px rgba(30,122,62,0.12);
    }
    .btn-submit {
      background: var(--green-dark);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-size: 15px;
      font-weight: 600;
      width: 100%;
      transition: background 0.2s, transform 0.2s;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

    /* ── KONTAK ── */
    .kontak-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
    .kontak-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-main);
      font-size: 18px;
      flex-shrink: 0;
    }
    .kontak-text h6 { font-size: 13px; font-weight: 600; color: var(--green-dark); margin-bottom: 2px; }
    .kontak-text p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

    /* ── FAQ ── */
    .accordion-button:not(.collapsed) { background: var(--green-light); color: var(--green-dark); box-shadow: none; font-weight: 600; }
    .accordion-button:focus { box-shadow: 0 0 0 3px rgba(30,122,62,0.12); }
    .accordion-button { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--green-dark); border-radius: 10px !important; }
    .accordion-item { border-color: rgba(0,0,0,0.08) !important; border-radius: 10px !important; overflow: hidden; margin-bottom: 10px; }
    .accordion-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

    /* ── FOOTER ── */
    footer { background: var(--green-dark); color: rgba(255,255,255,0.65); padding: 56px 0 28px; }
    footer h5 { color: #fff; font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 18px; }
    footer p, footer a { font-size: 13.5px; line-height: 1.8; }
    footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 22px;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      font-size: 15px;
    }
    .social-btn:hover { background: var(--gold); color: #fff; }

    /* ── STICKY CTA ── */
    .sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 888; }
    .sticky-cta a {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25d366;
      color: #fff;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .sticky-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); color: #fff; }

    /* Desktop: hide drawer-specific elements */
    @media (min-width: 992px) {
      .nav-menu-header,
      .nav-menu-footer { display: none !important; }
      .nav-menu-body {
        display: flex;
        align-items: center;
        gap: 2px;
        padding: 0;
      }
      .nav-overlay { display: none !important; }
    }

    /* Smooth scroll */
    html { scroll-behavior: smooth; }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.7s ease both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.35s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1199px) {
      .side-banner-slider { max-width: 460px; }
      .banner-slide-inner { height: 240px; }
    }

    @media (max-width: 991px) {
      .hero { padding-top: 70px; min-height: auto; padding-bottom: 60px; }
      .hero-circle { display: none; }
      .hero-right-col { flex-direction: column; align-items: center; gap: 16px; }
      .side-banner-slider { max-width: 100%; }
      .banner-slide-inner { height: 220px; }
      .banner-title { font-size: 22px; }
    }

    @media (max-width: 767px) {
      .hero { padding-top: 65px; padding-bottom: 48px; }
      .hero h1 { font-size: clamp(28px, 8vw, 40px); }
      .hero p.lead { font-size: 14.5px; }
      .hero-right-col { flex-direction: column; align-items: center; }
      .side-banner-slider { max-width: 100%; }
      .banner-slide-inner { height: 200px; padding: 22px 24px; }
      .banner-title { font-size: 20px; }
      .hero-stat-strip { gap: 16px; }
      .hero-stat-strip .stat-num { font-size: 22px; }
      .d-flex.gap-3.flex-wrap { gap: 10px !important; }
      .btn-hero-primary, .btn-hero-outline { padding: 11px 20px; font-size: 14px; }
      .countdown-band .inner { gap: 12px; }
      .countdown-box { min-width: 50px; padding: 7px 10px; }
      .countdown-box span.num { font-size: 20px; }
      section { padding: 60px 0; }
      .form-card { padding: 24px 18px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    }

    @media (max-width: 480px) {
      .hero-badge { font-size: 10px; padding: 5px 12px; }
      .countdown-band .label { font-size: 11px; }
      .countdown-box { min-width: 44px; padding: 6px 8px; }
      .countdown-box span.num { font-size: 18px; }
      .banner-slide-inner { height: 185px; padding: 18px 20px; }
      .banner-title { font-size: 18px; }
      .banner-desc { font-size: 13px; margin-bottom: 12px; }
      .sticky-cta a { padding: 10px 14px; font-size: 13px; }
    }
