  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #9A7A32;
    --navy: #0D1B2A;
    --navy-light: #1A2E45;
    --navy-mid: #243B55;
    --white: #FFFFFF;
    --off-white: #F8F6F2;
    --light-gray: #EAE8E4;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #7A7A9A;
    --red: #C0392B;
    --green: #27AE60;
    --shadow-sm: 0 2px 12px rgba(13,27,42,0.10);
    --shadow-md: 0 8px 32px rgba(13,27,42,0.16);
    --shadow-lg: 0 20px 60px rgba(13,27,42,0.22);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  }

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

  html { scroll-behavior: smooth; }

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

  /* ===== TOPBAR ===== */
  .topbar {
    background: var(--navy);
    color: #aac4e0;
    font-size: 13px;
    padding: 7px 0;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
  .topbar a:hover { color: var(--white); }
  .topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .topbar-icon { display: inline-block; margin-right: 5px; }

  /* ===== HEADER ===== */
  header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
  }
  header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
  }
  .header-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .logo-icon::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
  }
  .logo-icon svg { width: 28px; height: 28px; fill: var(--gold); }
  .logo-text { display: flex; flex-direction: column; }
  .logo-text img {
  display: flex;
  flex-direction: column;
  width: 89%;
}
  .logo-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--navy);
    line-height: 1;
  }
  .logo-sub {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    line-height: 1.2;
  }

  /* NAV */
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
  }
  nav a:hover { color: var(--gold-dark); background: rgba(201,168,76,0.07); }
  nav a:hover::after { left: 14%; right: 14%; }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.45); background: #0D1B2A; }
  .nav-cta::after { display: none !important; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    border-radius: 8px;
    transition: var(--transition);
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE NAV */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(16px);
    z-index: 999;
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: var(--transition);
  }
  .mobile-nav a:hover { color: var(--gold-light); border-left-color: var(--gold); background: rgba(201,168,76,0.08); }
  .mobile-nav .nav-cta-mob {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white) !important;
    text-align: center;
    margin-top: 16px;
    border-left: none !important;
  }

  /* ===== HERO SLIDER ===== */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    max-height: 820px;
    overflow: hidden;
    background: var(--navy);
  }
  .slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease;
  }
  .slide.active .slide-bg { transform: scale(1); }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.45) 60%, transparent 100%);
  }
  .slide-content {
    position: relative;
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    width: 100%;
  }
  .slide-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    max-width: 640px;
    margin-bottom: 20px;
  }
  .slide-title span { color: var(--gold-light); }
  .slide-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
  }
  .slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,0.5); }
  .btn-outline-white {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

  /* Slider Controls */
  .slider-dots {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
  }
  .dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
  }
  .dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    z-index: 10;
  }
  .slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
  .slider-prev { left: 24px; }
  .slider-next { right: 24px; }
  .slide-counter {
    position: absolute;
    bottom: 32px; right: 40px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .slide-counter span { color: var(--gold-light); font-size: 18px; font-weight: 700; }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    background: var(--navy);
    padding: 22px 0;
    border-bottom: 3px solid var(--gold);
  }
  .trust-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--white);
  }
  .trust-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .trust-num { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--gold-light); line-height: 1; }
  .trust-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

  /* ===== SECTION SHARED ===== */
  section { padding: 0px 0; }
  .container { max-width: 1280px; margin: auto; padding: 0 24px; }
  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-subtitle {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 600px;
  }
  .section-header { margin-bottom: 56px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-subtitle { margin: 0 auto; }
  .divider {
    width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 18px 0;
  }
  .divider.center { margin: 18px auto; }

  /* ===== ABOUT SECTION ===== */
  #about { background: var(--white); margin:0px; padding: 90px 0; text-align: justify; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .about-images {
    position: relative;
    height: 520px;
  }
  .about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--light-gray);
  }
  .about-img-sub {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    background: var(--light-gray);
  }
  .about-img-main img, .about-img-sub img {
    width: 100%; 
    object-fit: cover;
    display: block;
  }
  .about-badge {
    position: absolute;
    top: 50%; left: 68%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    width: 90px; height: 90px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    border: 3px solid var(--white);
    line-height: 1.2;
  }
  .about-badge strong { font-size: 26px; display: block; }
  .about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .about-feat {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
  }
  .about-feat:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
  .about-feat-icon { font-size: 22px; margin-top: 2px; }
  .about-feat h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .about-feat p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

  /* ===== VARIANTS SECTION ===== */
  #variants { background: var(--off-white); padding: 90px 0; }
  .variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }
  .variant-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
  }
  .variant-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
  .variant-img {
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
  }
  .variant-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .variant-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--navy);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
  }
  .variant-body { padding: 24px; }
  .variant-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .variant-body p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
  .variant-specs { display: flex; gap: 16px; flex-wrap: wrap; }
  .spec-pill {
    display: flex; align-items: center; gap: 6px;
    background: var(--off-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
  }
  .spec-pill span { color: var(--gold-dark); font-size: 14px; }

  /* ===== INTERIOR GALLERY ===== */
  #interior { background: var(--navy); padding: 90px 0; }
  #interior .section-title { color: var(--white); }
  #interior .section-eyebrow { color: var(--gold-light); }
  #interior .section-subtitle { color: rgba(255,255,255,0.65); }
  #interior .divider { background: linear-gradient(90deg, var(--gold-light), transparent); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
  }
  .gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-mid);
    position: relative;
    cursor: pointer;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
  .gallery-item:hover img { transform: scale(1.07); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex; align-items: flex-end; padding: 16px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { color: var(--white); font-size: 13px; font-weight: 600; }

  /* ===== FEATURES SECTION ===== */
  #features { background: var(--white);padding: 90px 0; }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
  }
  .feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
  }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
  .feature-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(13,27,42,0.18);
  }
  .feature-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

  /* ===== PACKAGES SECTION ===== */
  #packages { background: var(--off-white);padding: 90px 0; }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }
  .package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
  }
  .package-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.03);
  }
  .package-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
  .package-card.featured:hover { transform: translateY(-8px) scale(1.03); }
  .pkg-ribbon {
    position: absolute;
    top: 20px; right: -28px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 36px;
    transform: rotate(45deg);
  }
  .pkg-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 32px 28px;
    text-align: center;
  }
  .pkg-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
  }
  .pkg-header .pkg-type { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
  .pkg-price { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--gold-light); line-height: 1; }
  .pkg-price small { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.55); }
  .pkg-body { padding: 28px; }
  .pkg-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
  .pkg-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
  .pkg-features li .check { color: var(--green); font-size: 16px; }
  .pkg-features li .cross { color: #ccc; font-size: 16px; }
  .btn-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

  /* ===== SERVICES ===== */
  #services { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);padding: 90px 0; }
  #services .section-title { color: var(--white); }
  #services .section-eyebrow { color: var(--gold-light); }
  #services .section-subtitle { color: rgba(255,255,255,0.65); }
  #services .divider { background: linear-gradient(90deg, var(--gold-light), transparent); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    text-align: center;
  }
  .service-card:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }
  .service-icon { font-size: 42px; margin-bottom: 16px; display: block; }
  .service-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .service-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

  /* ===== BENEFITS ===== */
  #benefits { background: var(--white);padding: 90px 0; }
  .benefits-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .benefits-list { display: flex; flex-direction: column; gap: 20px; }
  .benefit-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    cursor: default;
  }
  .benefit-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); background: #fffdf5; }
  .benefit-num {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
  }
  .benefit-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
  .benefit-item p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
  .benefits-cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }
  .benefits-cta-box::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
    border-radius: 50%;
  }
  .benefits-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
  }
  .benefits-cta-box p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .cta-contact-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
  .cta-contact-list li { font-size: 14px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; justify-content: center; }
  .cta-contact-list a { color: var(--gold-light); text-decoration: none; }

  /* ===== FAQ ===== */
  #faq { background: var(--off-white);padding: 90px 0; }
  .faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: var(--transition);
  }
  .faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
  .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    gap: 12px;
    transition: var(--transition);
  }
  .faq-q:hover { color: var(--gold-dark); }
  .faq-item.open .faq-q { color: var(--gold-dark); }
  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--navy);
    transition: var(--transition);
  }
  .faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
  .faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
  .faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

  /* ===== INQUIRY FORM ===== */
  #inquiry { background: linear-gradient(135deg, #f0ece2 0%, #e8e4da 100%);padding: 90px 0; }
  .inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
  }
  .inquiry-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .inquiry-info p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
  .contact-details { display: flex; flex-direction: column; gap: 16px; }
  .contact-detail { display: flex; align-items: flex-start; gap: 14px; }
  .cd-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .cd-text label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); display: block; }
  .cd-text a, .cd-text span { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
  .cd-text a:hover { color: var(--gold-dark); }

  /* FORM */
  .inquiry-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
  }
  .form-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
  .form-sub { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .captcha-box {
    display: flex; align-items: center; gap: 16px;
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
  }
  .captcha-challenge {
    background: var(--navy);
    color: var(--gold-light);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    user-select: none;
    white-space: nowrap;
    border: 2px dashed rgba(201,168,76,0.4);
    min-width: 100px;
    text-align: center;
  }
  .captcha-input-wrap { flex: 1; }
  .captcha-input-wrap label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); display: block; margin-bottom: 4px; }
  .captcha-input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: var(--transition);
    letter-spacing: 4px;
    text-align: center;
    font-weight: 700;
    max-width: 80px;
  }
  .captcha-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
  .captcha-refresh {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-mid);
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
  }
  .captcha-refresh:hover { color: var(--gold-dark); background: rgba(201,168,76,0.1); transform: rotate(180deg); }
  .captcha-error { color: var(--red); font-size: 12px; margin-top: 4px; display: none; }
  .form-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  }
  .form-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,168,76,0.5); }
  .form-submit-btn:active { transform: translateY(0); }
  .form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
  .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 14px; line-height: 1.5; }
  #form-success {
    display: none;
    background: #eafaf1;
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: var(--green);
    font-size: 15px;
    font-weight: 600;
    margin-top: 16px;
  }
  #form-success .success-icon { font-size: 40px; margin-bottom: 10px; display: block; }
  #form-error-msg {
    display: none;
    background: #fdf0ee;
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: var(--red);
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
  }
  /* ===== FOOTER ===== */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding-top: 72px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
  .footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
  }
  .footer-links a::before { content: '›'; color: var(--gold); opacity: 0; transition: var(--transition); }
  .footer-links a:hover { color: var(--white); padding-left: 4px; }
  .footer-links a:hover::before { opacity: 1; }
  .footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
  .footer-contact-item span { font-size: 16px; margin-top: 1px; }
  .footer-contact-item div { font-size: 13px; line-height: 1.5; }
  .footer-contact-item a { color: var(--gold-light); text-decoration: none; font-size: 13px; }
  .footer-contact-item a:hover { color: var(--white); }
  .footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 13px; }
  .footer-bottom a { color: var(--gold-light); text-decoration: none; }
  .footer-bottom a:hover { color: var(--white); }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
  .footer-bottom-links a:hover { color: var(--gold-light); }

  /* ===== BACK TO TOP ===== */
  .back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(201,168,76,0.45);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    text-decoration: none;
  }
  .back-to-top.visible { opacity: 1; transform: translateY(0); }
  .back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(201,168,76,0.55); }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 86px; right: 28px;
    width: 52px; height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 900;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); }
  @keyframes pulse-wa {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  }

  /* Image placeholder */
  .img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
  }
  .img-placeholder span { font-size: 36px; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3, 200px); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .inquiry-grid { grid-template-columns: 1fr; }
    .benefits-wrap { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 320px; }
    .about-img-main { width: 100%; height: 88%; }
  }

  @media (max-width: 768px) {
    section { padding: 0px 0; }
    nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .header-inner { height: 64px; }
    .topbar-right { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .package-card.featured { transform: scale(1); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .inquiry-form-wrap { padding: 28px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .slider-arrow { display: none; }
  }

  @media (max-width: 480px) {
    .trust-inner { justify-content: center; }
    .slide-title { font-size: 32px; }
    .slide-btns { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item { height: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
  }

  /* LOADING ANIMATION */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in { animation: fadeInUp 0.6s ease both; }
  .fade-in-delay-1 { animation-delay: 0.1s; }
  .fade-in-delay-2 { animation-delay: 0.2s; }
  .fade-in-delay-3 { animation-delay: 0.3s; }
  .fade-in-delay-4 { animation-delay: 0.5s; }
