@charset "utf-8";
/* CSS Document */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red:     #660a0e;
    --navy:    #0A0E1A;
    --navy2:   #111827;
    --card:    #161D2F;
    --gold:    #C9A84C;
    --gold2:   #E8D5A3;
    --white:   #F5F7FA;
    --muted:   #8A9BB5;
    --border:  #1E2A40;
    --radius:  4px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── TOP BAR ─────────────────────────────────── */
  .topbar {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .topbar a { color: var(--gold2); text-decoration: none; }

  /* ─── NAV ─────────────────────────────────────── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--white); }
  /* Desktop: inline flex row */
  .nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    font-size: 13px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 102; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile: drawer that drops below the sticky nav */
  @media (max-width: 768px) {
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      position: fixed;
      top: 64px; /* height of nav bar */
      left: 0; right: 0;
      background: var(--navy2);
      border-bottom: 1px solid var(--border);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      z-index: 99;
    }
    .nav-links.open {
      max-height: 500px;
      padding: 16px 0 24px;
    }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      color: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.04); }
    .nav-cta {
      background: transparent !important;
      color: var(--gold) !important;
      padding: 14px 0 !important;
      border-radius: 0 !important;
      font-size: 16px !important;
    }
    .hamburger { display: flex; }
  }

  /* ─── HERO ────────────────────────────────────── */
  #home {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    /* padding: 26px 7% !important; */
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 80px 7%;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 40px;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
  .btn-outline {
    border: 1.5px solid var(--border);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .slide.active { opacity: 1; }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 25%),
                linear-gradient(to bottom, transparent 60%, rgba(10,14,26,0.5) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border: none;
    transition: background 0.3s, width 0.3s;
  }
  .dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

  /* ─── GOLD DIVIDER ────────────────────────────── */
  .gold-divider {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold2) 50%, var(--gold) 70%, transparent);
    opacity: 0.6;
  }

  /* ─── SECTION COMMONS ─────────────────────────── */
  section { padding: 96px 7%; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
  }
  .section-sub {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
  }

  /* ─── ABOUT ───────────────────────────────────── */
  #about {
    background: var(--navy2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
  }
  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
  }
  .about-badge-year {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
  }
  .about-badge-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .about-text { padding-right: 20px; }
  .about-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
  }
  .about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
  .about-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .about-col p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 0; }

  /* ─── WHY ─────────────────────────────────────── */
  #why { background: var(--navy); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .why-card {
    background: var(--card);
    padding: 36px 28px;
    position: relative;
    transition: background 0.2s;
  }
  .why-card:hover { background: #1a2438; }
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .why-card:hover::before { opacity: 1; }
  .why-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ─── SERVICES ────────────────────────────────── */
  #services { background: var(--navy2); }
  .services-head { margin-bottom: 64px; }
  .service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2px;
  }
  .service-item:nth-child(even) .service-img { order: 2; }
  .service-item:nth-child(even) .service-text { order: 1; }
  .service-img { position: relative; overflow: hidden; height: 340px; }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
  }
  .service-item:hover .service-img img { transform: scale(1.04); }
  .service-text {
    background: var(--card);
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .service-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .service-text p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }
  .service-tags span {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold2);
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
  }
  .service-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 14px; }

  /* ─── CTA BANNER ──────────────────────────────── */

  .cta-banner {
    position: relative;
    overflow: hidden;

    padding: 120px 7%;
    text-align: center;

    background-image: url('img/cta-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* Parallax */
    background-attachment: fixed;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;

    /* Dark overlay */
    background: rgba(0,0,0,.70);

    z-index: 1;
}

.cta-banner > * {
    position: relative;
    z-index: 2;
}
  /* .cta-banner {
    background: linear-gradient(135deg, #0d1829 0%, var(--card) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 7%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.02) 40px,
      rgba(201,168,76,0.02) 80px
    );
  } */
  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
  }
  .cta-banner p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .cta-banner .hero-btns { justify-content: center; position: relative; }

  /* ─── REVIEWS ─────────────────────────────────── */
  #reviews { background: var(--navy); }
  .reviews-head { margin-bottom: 56px; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
  }
  .review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(201,168,76,0.12);
    line-height: 1;
  }
  .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
  .review-text { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
    flex-shrink: 0;
  }
  .reviewer-name { font-weight: 600; font-size: 14px; color: var(--white); }
  .reviewer-time { font-size: 12px; color: var(--muted); }

  /* ─── CONTACT ─────────────────────────────────── */
  #contact {
    background: var(--navy2);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .contact-info p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
  .contact-items { display: flex; flex-direction: column; gap: 24px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-item-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .contact-item-val { font-size: 15px; color: var(--white); }
  .contact-item-val a { color: var(--white); text-decoration: none; }
  .contact-item-val a:hover { color: var(--gold); }

  .booking-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
  }
  .booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
  }
  .form-note { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--navy);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--navy); }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .submit-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
  }
  .submit-btn:hover { background: #1ab955; transform: translateY(-1px); }

  /* ─── FOOTER ──────────────────────────────────── */
  footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 32px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  footer .nav-logo { font-size: 18px; }
  footer p { color: var(--muted); font-size: 13px; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  /* ─── WHATSAPP FAB ────────────────────────────── */
  .whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 200;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
  .whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

  /* ─── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 1024px) {
    #home { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 80px 5% 56px; }
    .hero-right { height: 50vw; max-height: 420px; }
    .hero-right::after { background: linear-gradient(to bottom, var(--navy) 0%, transparent 20%), linear-gradient(to top, var(--navy) 0%, transparent 20%); }
    #about { grid-template-columns: 1fr; gap: 48px; }
    .about-img-wrap img { height: 360px; }
    .about-badge { right: 0; bottom: -16px; }
    .about-text { padding-right: 0; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .service-item { grid-template-columns: 1fr; }
    .service-img { height: 260px; order: 0 !important; }
    .service-text { order: 1 !important; padding: 36px 32px; }
    #contact { grid-template-columns: 1fr; gap: 48px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    section { padding: 64px 5%; }
    .hero-stats { gap: 24px; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .about-cols { grid-template-columns: 1fr; }
    .booking-form { padding: 28px 20px; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }