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

  :root {
    --ocean: #0A4F6E;
    --ocean-light: #1A7FA0;
    --sand: #F5EDD8;
    --sand-dark: #E8D9B8;
    --coral: #C7533A;
    --coral-light: #E8846E;
    --white: #FAFAF8;
    --dark: #1A1A18;
    --text: #2C2C28;
    --text-muted: #6B6B60;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 2.5rem;
    background: rgba(10, 79, 110, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
  }
  .nav-logo { font-family: var(--serif); color: var(--sand); font-size: 1.3rem; font-weight: 300; letter-spacing: 0.04em; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(245,237,216,0.8); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 300; transition: color 0.2s; }
  .nav-links a:hover { color: var(--sand); }
  .nav-cta {
    background: var(--coral); color: var(--white); border: none; padding: 0.6rem 1.4rem;
    font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s; font-weight: 500; text-decoration: none;
  }
  .nav-cta:hover { background: var(--coral-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 22px; height: 1.5px; background: var(--sand); display: block; transition: all 0.3s; }

  /* ─── HERO ─── */
  .hero {
    height: 100vh; min-height: 600px;
    position: relative; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #062D3E 0%, #0A4F6E 40%, #0E6A91 70%, #1A7FA0 100%);
    overflow: hidden;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
  }
  .hero-waves {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px; overflow: hidden;
  }
  .hero-waves svg { position: absolute; bottom: 0; width: 200%; animation: wave-slide 12s linear infinite; }
  @keyframes wave-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  .hero-content {
    position: relative; text-align: center; z-index: 2;
    padding: 2rem;
    animation: fade-up 1s ease both;
  }
  @keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  .hero-eyebrow {
    font-family: var(--sans); color: rgba(245,237,216,0.65);
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 1.2rem; font-weight: 300;
  }
  .hero-title {
    font-family: var(--serif); color: var(--sand);
    font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300;
    line-height: 1.05; letter-spacing: -0.01em;
    margin-bottom: 0.3rem;
  }
  .hero-title em { font-style: italic; color: rgba(245,237,216,0.7); }
  .hero-subtitle {
    font-family: var(--serif); color: rgba(245,237,216,0.6);
    font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300; font-style: italic;
    margin-bottom: 2.5rem;
  }
  .hero-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .hero-badge {
    border: 1px solid rgba(245,237,216,0.25); color: rgba(245,237,216,0.75);
    padding: 0.35rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.08em;
    text-transform: uppercase; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--coral); color: var(--white);
    padding: 1rem 2.2rem; font-size: 0.82rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 500; border: none;
    cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--coral-light); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: var(--sand);
    border: 1px solid rgba(245,237,216,0.35);
    padding: 1rem 2.2rem; font-size: 0.82rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 300; cursor: pointer; transition: all 0.25s;
    text-decoration: none; display: inline-block; font-family: var(--sans);
  }
  .btn-ghost:hover { border-color: var(--sand); background: rgba(245,237,216,0.08); }
  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(245,237,216,0.4); font-size: 0.65rem; letter-spacing: 0.18em;
    text-transform: uppercase; z-index: 2;
    animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll .arrow { width: 1px; height: 40px; background: rgba(245,237,216,0.3); }
  @keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(6px); } }

  /* ─── BOOKING BAR ─── */
  .booking-bar {
    background: var(--dark); padding: 1.5rem 2.5rem;
    display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
    position: sticky; top: 65px; z-index: 90;
    border-bottom: 2px solid var(--coral);
  }
  .booking-field {
    display: flex; flex-direction: column; padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .booking-field:last-of-type { border-right: none; }
  .booking-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
  .booking-field input, .booking-field select {
    background: none; border: none; color: var(--sand); font-family: var(--sans);
    font-size: 0.92rem; font-weight: 300; cursor: pointer; outline: none;
    appearance: none; -webkit-appearance: none;
  }
  .booking-field select option { background: var(--dark); }
  .booking-submit {
    background: var(--coral); color: var(--white); border: none;
    padding: 0.9rem 2rem; font-size: 0.78rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 500; cursor: pointer;
    transition: background 0.2s; margin-left: 1.5rem; white-space: nowrap;
  }
  .booking-submit:hover { background: var(--coral-light); }

  /* ─── SECTION COMMONS ─── */
  section { padding: 6rem 2.5rem; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral); font-weight: 400; margin-bottom: 1rem; }
  .section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.1; color: var(--ocean); margin-bottom: 1rem; }
  .section-title em { font-style: italic; }
  .section-lead { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; max-width: 620px; }

  /* ─── WHY US ─── */
  .why { background: var(--sand); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
  .pillar {
    padding: 1.5rem; border-left: 2px solid var(--coral);
    background: rgba(255,255,255,0.5);
  }
  .pillar-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
  .pillar-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--ocean); margin-bottom: 0.4rem; }
  .pillar-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
  .why-visual {
    position: relative; height: 520px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-light) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .why-visual-overlay {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 60%);
  }
  .why-stat-block { text-align: center; z-index: 1; margin: 1rem 0; }
  .why-stat-number { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--sand); line-height: 1; }
  .why-stat-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,237,216,0.55); margin-top: 0.3rem; }
  .why-divider { width: 40px; height: 1px; background: rgba(245,237,216,0.2); margin: 0.5rem auto; }

  /* ─── ROOMS ─── */
  .rooms { background: var(--white); }
  .rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
  .rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.5px; }
  .room-card { position: relative; overflow: hidden; cursor: pointer; }
  .room-card-bg {
    height: 380px;
    display: flex; align-items: flex-end;
    position: relative; overflow: hidden;
    transition: transform 0.5s ease;
  }
  .room-card:hover .room-card-bg { transform: scale(1.04); }
  .room-ocean { background: linear-gradient(160deg, #062D3E 0%, #1A7FA0 60%, #5BB8D4 100%); }
  .room-garden { background: linear-gradient(160deg, #1C3A1C 0%, #2E6B2E 60%, #5A9E5A 100%); }
  .room-family { background: linear-gradient(160deg, #3A1C1C 0%, #7A3E2E 60%, #C4785C 100%); }
  .room-pattern {
    position: absolute; inset: 0; opacity: 0.07;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 20px);
  }
  .room-info {
    position: relative; z-index: 1; padding: 1.8rem; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  }
  .room-type { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; }
  .room-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: #fff; margin-bottom: 0.5rem; }
  .room-features { display: flex; gap: 0.8rem; flex-wrap: wrap; }
  .room-feat { font-size: 0.68rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
  .room-feat::before { content: "·"; margin-right: 0.3rem; }
  .room-cta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.8rem; background: var(--ocean); cursor: pointer;
    border: none; width: 100%; font-family: var(--sans); transition: background 0.2s;
  }
  .room-cta:hover { background: var(--ocean-light); }
  .room-cta-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); font-weight: 400; }
  .room-cta-price { font-family: var(--serif); font-size: 1.1rem; color: var(--sand); font-weight: 300; }

  /* ─── AMENITIES ─── */
  .amenities { background: var(--ocean); position: relative; overflow: hidden; }
  .amenities::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .amenities::after {
    content: ''; position: absolute; bottom: -150px; left: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .amenities .section-title { color: var(--sand); }
  .amenities .section-lead { color: rgba(245,237,216,0.6); max-width: 100%; }
  .amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; margin-top: 3.5rem; background: rgba(255,255,255,0.06); }
  .amen-item {
    padding: 2rem 1.5rem; background: var(--ocean);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s;
  }
  .amen-item:hover { background: rgba(255,255,255,0.05); }
  .amen-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
  .amen-name { font-size: 0.82rem; color: var(--sand); font-weight: 400; margin-bottom: 0.3rem; }
  .amen-desc { font-size: 0.75rem; color: rgba(245,237,216,0.45); line-height: 1.6; font-weight: 300; }

  /* ─── EXPERIENCES ─── */
  .experiences { background: var(--sand-dark); }
  .exp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; margin-top: 3.5rem; }
  .exp-card {
    padding: 2.5rem 2rem; background: var(--sand);
    border-top: 2px solid transparent; transition: border-color 0.25s, background 0.25s;
    cursor: pointer;
  }
  .exp-card:hover { border-color: var(--coral); background: var(--white); }
  .exp-num { font-family: var(--serif); font-size: 2.8rem; color: rgba(10,79,110,0.12); font-weight: 300; line-height: 1; margin-bottom: 0.8rem; }
  .exp-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ocean); margin-bottom: 0.6rem; }
  .exp-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
  .exp-link { display: inline-block; margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); text-decoration: none; font-weight: 400; }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--white); }
  .test-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 3.5rem; }
  .test-card {
    padding: 2rem; border: 1px solid rgba(10,79,110,0.1);
    position: relative; transition: border-color 0.25s, box-shadow 0.25s;
  }
  .test-card:hover { border-color: var(--coral); box-shadow: 4px 4px 0 var(--sand); }
  .test-stars { color: #F0A500; font-size: 0.85rem; margin-bottom: 0.8rem; }
  .test-text { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; }
  .test-author { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; }
  .test-platform { font-size: 0.65rem; color: rgba(107,107,96,0.5); margin-top: 0.2rem; }
  .test-badge {
    position: absolute; top: -1px; right: 1.5rem;
    background: var(--coral); color: var(--white);
    font-size: 0.6rem; padding: 0.25rem 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .rating-banner {
    display: flex; align-items: center; gap: 3rem; margin-top: 3rem;
    padding: 2rem 2.5rem; background: var(--sand);
    flex-wrap: wrap;
  }
  .rating-big { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: var(--ocean); line-height: 1; }
  .rating-detail { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; }
  .rating-detail strong { display: block; font-size: 0.9rem; color: var(--text); font-weight: 400; }

  /* ─── LOCATION ─── */
  .location-section { background: var(--dark); color: var(--sand); }
  .location-section .section-title { color: var(--sand); }
  .location-section .section-lead { color: rgba(245,237,216,0.55); }
  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
  .loc-map-placeholder {
    height: 380px; background: rgba(26,127,160,0.12);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; cursor: pointer; transition: background 0.25s;
    text-decoration: none;
  }
  .loc-map-placeholder:hover { background: rgba(26,127,160,0.2); }
  .loc-map-pin { font-size: 2.5rem; }
  .loc-map-text { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,237,216,0.5); }
  .loc-map-sub { font-family: var(--serif); font-size: 1rem; color: rgba(245,237,216,0.7); font-style: italic; }
  .loc-info { display: flex; flex-direction: column; gap: 2rem; }
  .loc-point { display: flex; gap: 1rem; }
  .loc-point-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
  .loc-point-title { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,237,216,0.5); margin-bottom: 0.3rem; }
  .loc-point-text { font-size: 0.9rem; color: rgba(245,237,216,0.8); font-weight: 300; line-height: 1.6; }
  .loc-contact { margin-top: 2rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
  .loc-contact-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,237,216,0.35); margin-bottom: 0.8rem; }
  .loc-contact-phone { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--sand); }

  /* ─── CTA FINAL ─── */
  .final-cta {
    background: var(--coral); padding: 6rem 2.5rem;
    text-align: center; position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 30px);
  }
  .final-cta .section-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
  .final-cta .section-lead { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
  .final-cta .section-tag { color: rgba(255,255,255,0.55); }
  .final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: var(--white); color: var(--coral);
    padding: 1rem 2.2rem; font-size: 0.82rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 500; border: none; cursor: pointer;
    transition: all 0.25s; text-decoration: none; display: inline-block;
    font-family: var(--sans);
  }
  .btn-white:hover { background: var(--sand); transform: translateY(-2px); }
  .btn-outline-white {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 1rem 2.2rem; font-size: 0.82rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 300; cursor: pointer;
    transition: all 0.25s; text-decoration: none; display: inline-block;
    font-family: var(--sans);
  }
  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark); padding: 4rem 2.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
  .footer-brand { font-family: var(--serif); color: var(--sand); font-size: 1.4rem; font-weight: 300; margin-bottom: 1rem; letter-spacing: 0.03em; }
  .footer-brand-sub { font-size: 0.8rem; color: rgba(245,237,216,0.4); font-weight: 300; line-height: 1.7; max-width: 280px; }
  .footer-col-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,237,216,0.3); margin-bottom: 1rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { color: rgba(245,237,216,0.55); text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: color 0.2s; }
  .footer-links a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap 1rem; }
  .footer-copy { font-size: 0.72rem; color: rgba(245,237,216,0.25); font-weight: 300; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75);
    z-index: 200; align-items: center; justify-content: center; padding: 1.5rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--white); max-width: 520px; width: 100%; padding: 3rem;
    position: relative; animation: modal-in 0.3s ease;
  }
  @keyframes modal-in { from { opacity: 0; transform: scale(0.96) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.5rem;
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
    color: var(--text-muted); line-height: 1;
  }
  .modal-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--ocean); margin-bottom: 0.5rem; }
  .modal-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 300; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 0; border: none; border-bottom: 1px solid rgba(10,79,110,0.2);
    background: none; font-family: var(--sans); font-size: 0.95rem; color: var(--text);
    outline: none; transition: border-color 0.2s; font-weight: 300;
    appearance: none; -webkit-appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--coral); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit {
    width: 100%; background: var(--coral); color: var(--white); border: none;
    padding: 1rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-family: var(--sans); font-weight: 500; cursor: pointer; transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--coral-light); }
  .form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.8rem; text-align: center; font-weight: 300; }

  /* ─── WHATSAPP FLOAT ─── */
  .wa-btn {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
    background: #25D366; color: #fff; width: 56px; height: 56px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    font-size: 1.4rem;
  }
  .wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }

  /* ─── RESPONSIVE ─── */
  @media(max-width: 900px) {
    .why-grid, .loc-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .exp-grid, .test-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .booking-bar { gap: 0.5rem; padding: 1rem; }
    .booking-field { padding: 0.5rem 1rem; }
    .booking-submit { margin-left: 0; margin-top: 0.5rem; width: 100%; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 4rem 1.5rem; }
    .rooms-grid { grid-template-columns: 1fr; }
    .amen-grid { grid-template-columns: 1fr 1fr; }
    .why-pillars { grid-template-columns: 1fr; }
    .modal { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media(max-width: 600px) {
    .hero-title { font-size: 2.4rem; }
    .amen-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .rating-banner { flex-direction: column; gap: 1.5rem; }
  }