/* Hotel Ganga Palace - Main Stylesheet */
/* themicrosites.in */

/* ── Reset & Base ─────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background: #faf9f7;
    overflow-x: hidden;
  }

  /* ── CSS Variables ────────────────────────────────────── */
  :root {
    --saffron:     #c8651a;
    --saffron-lt:  #e8844a;
    --ganga:       #2d6a8f;
    --ganga-dk:    #1a4160;
    --ganga-lt:    #eaf4f9;
    --cream:       #faf9f7;
    --sand:        #f2ede6;
    --charcoal:    #1a1a1a;
    --mid:         #5a5a5a;
    --border:      #e0d9d0;
    --gold:        #b8963e;
    --coming-bg:   #2a2a2a;
  }

  /* ── Navbar ───────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(250,249,247,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ganga-dk);
    letter-spacing: 0.02em;
  }
  .nav-brand span { color: var(--saffron); }
  .nav-cta {
    background: var(--saffron);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--saffron-lt); }

  /* ── Hero ─────────────────────────────────────────────── */
  .hero {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .hero-left {
    padding: 80px 56px 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    position: relative;
  }
  .hero-left::after {
    content: '';
    position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px;
    background: var(--border);
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 20px;
  }
  .hero-tag::before {
    content: '';
    display: block; width: 28px; height: 1px;
    background: var(--saffron);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--ganga-dk);
    margin-bottom: 10px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--saffron);
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--mid);
    margin-bottom: 36px;
    max-width: 420px;
  }
  .hero-distance {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ganga-lt);
    border-left: 3px solid var(--ganga);
    padding: 10px 16px;
    margin-bottom: 36px;
    font-size: 0.88rem;
    color: var(--ganga-dk);
  }
  .hero-distance strong { font-weight: 500; }
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-wa {
    display: inline-flex; align-items: center; gap: 9px;
    background: #25d366;
    color: #fff;
    font-size: 0.88rem; font-weight: 500;
    padding: 14px 28px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  .btn-call {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent;
    color: var(--ganga-dk);
    font-size: 0.88rem; font-weight: 500;
    padding: 14px 28px;
    text-decoration: none;
    border: 1.5px solid var(--ganga);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .btn-call:hover { background: var(--ganga); color: #fff; }
  .btn-icon { font-size: 1.1rem; }

  /* Hero Right - Placeholder Visual */
  .hero-right {
    position: relative;
    background: linear-gradient(145deg, var(--ganga-dk) 0%, #0e2d45 50%, #1a4a30 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 70%, rgba(200,101,26,0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 25%, rgba(45,106,143,0.3) 0%, transparent 50%);
  }
  .hero-placeholder {
    position: relative; z-index: 2;
    text-align: center;
    padding: 40px;
  }
  .hotel-emblem {
    width: 90px; height: 90px;
    border: 2px solid rgba(200,101,26,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
  }
  .hotel-emblem-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-align: center;
    margin-bottom: 24px;
  }
  .hotel-name-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .hotel-city {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
  }
  .img-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
  }
  /* Decorative dots */
  .hero-dots {
    position: absolute; bottom: 24px; right: 24px;
    display: grid; grid-template-columns: repeat(5,8px); gap: 6px;
    opacity: 0.2;
  }
  .hero-dots span {
    display: block; width: 4px; height: 4px;
    border-radius: 50%; background: #fff;
  }

  /* ── Trust Strip ──────────────────────────────────────── */
  .trust-strip {
    background: var(--ganga-dk);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }
  .trust-item .ti {
    font-size: 1rem;
    color: var(--saffron-lt);
  }
  .trust-divider {
    width: 1px; height: 18px;
    background: rgba(255,255,255,0.15);
  }

  /* ── Section Wrapper ──────────────────────────────────── */
  .section { padding: 80px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 8px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--ganga-dk);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .section-desc {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 48px;
  }

  /* ── Rooms ────────────────────────────────────────────── */
  .rooms-section { background: var(--sand); }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  /* Active Room Card */
  .room-card {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }
  .room-img {
    width: 100%; height: 220px;
    background: linear-gradient(135deg, var(--ganga) 0%, var(--ganga-dk) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .room-img-placeholder {
    text-align: center; color: rgba(255,255,255,0.6); font-size: 0.75rem;
    font-style: italic;
  }
  .room-img-placeholder .ri { font-size: 2.5rem; display: block; margin-bottom: 8px; opacity: 0.5; }
  .room-body { padding: 24px; }
  .room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ganga-dk);
    margin-bottom: 4px;
  }
  .room-price {
    font-size: 0.82rem;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .room-price strong { font-size: 1.15rem; }
  .room-features {
    list-style: none;
    margin-bottom: 20px;
  }
  .room-features li {
    font-size: 0.85rem;
    color: var(--mid);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
  }
  .room-features li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--saffron);
    font-size: 0.7rem;
  }
  .btn-room {
    display: block; width: 100%;
    background: var(--ganga-dk);
    color: #fff;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 20px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.2s;
  }
  .btn-room:hover { background: var(--ganga); }

  /* Coming Soon Card */
  .room-card.coming-soon {
    background: var(--coming-bg);
    border-color: #3a3a3a;
    position: relative;
    overflow: hidden;
  }
  .room-card.coming-soon:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }
  .cs-img {
    width: 100%; height: 220px;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .cs-img::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.02) 8px,
        rgba(255,255,255,0.02) 9px
      );
  }
  .cs-badge {
    position: relative; z-index: 2;
    text-align: center;
  }
  .cs-badge-text {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 10px;
  }
  .cs-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.15);
    display: block;
    letter-spacing: 0.04em;
  }
  .cs-body { padding: 24px; }
  .cs-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4px;
  }
  .cs-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
    margin-bottom: 16px;
  }
  .cs-features {
    list-style: none;
    margin-bottom: 20px;
  }
  .cs-features li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.2);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
  }
  .cs-features li::before {
    content: '—';
    position: absolute; left: 0;
    color: rgba(255,255,255,0.15);
    font-size: 0.7rem;
  }
  .btn-cs {
    display: block; width: 100%;
    background: transparent;
    color: rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: default;
  }

  /* ── Why Direct ───────────────────────────────────────── */
  .why-direct {
    background: var(--cream);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .why-points { display: flex; flex-direction: column; gap: 0; }
  .why-point {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .why-point:first-child { border-top: 1px solid var(--border); }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--border);
    line-height: 1;
  }
  .why-text h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
  }
  .why-text p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.6;
  }
  .why-right {
    background: var(--ganga-dk);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }
  .why-right::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(200,101,26,0.08);
  }
  .direct-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .direct-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .direct-btns { display: flex; flex-direction: column; gap: 12px; }
  .btn-direct-wa {
    display: flex; align-items: center; gap: 10px;
    background: #25d366;
    color: #fff;
    font-size: 0.88rem; font-weight: 500;
    padding: 14px 24px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .btn-direct-wa:hover { opacity: 0.9; }
  .btn-direct-call {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem; font-weight: 400;
    padding: 14px 24px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
  }
  .btn-direct-call:hover { background: rgba(255,255,255,0.14); }

  /* ── Location & Nearby ────────────────────────────────── */
  .location-section { background: var(--sand); }
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .nearby-list { display: flex; flex-direction: column; gap: 0; }
  .nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nearby-item:first-child { border-top: 1px solid var(--border); }
  .nearby-name {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal);
  }
  .nearby-icon { font-size: 1rem; }
  .nearby-dist {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--saffron);
    white-space: nowrap;
  }
  .nearby-dist.highlight {
    background: var(--saffron);
    color: #fff;
    padding: 3px 10px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  .map-embed {
    background: var(--ganga-lt);
    border: 1px solid var(--border);
    height: 320px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .map-embed iframe {
    width: 100%; height: 100%;
    border: 0;
  }

  /* ── Gallery ──────────────────────────────────────────── */
  .gallery-section { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
  }
  .gallery-cell {
    background: linear-gradient(135deg, var(--ganga-dk), #0a2a3d);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-cell:first-child { grid-row: 1 / 3; }
  .gallery-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    font-style: italic;
  }
  .gallery-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--mid);
    font-style: italic;
    text-align: center;
  }

  /* ── Enquiry Form ─────────────────────────────────────── */
  .form-section {
    background: var(--ganga-dk);
    padding: 80px 40px;
  }
  .form-inner {
    max-width: 700px;
    margin: 0 auto;
  }
  .form-tag {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(200,101,26,0.9);
    margin-bottom: 8px;
  }
  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .form-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: border 0.2s;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(200,101,26,0.6);
  }
  .form-group select option { background: #1a1a1a; color: #fff; }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .btn-submit {
    margin-top: 8px;
    width: 100%;
    background: var(--saffron);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-submit:hover { background: var(--saffron-lt); }
  .form-assure {
    margin-top: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    font-style: italic;
  }
  .success-msg {
    display: none;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25d366;
    padding: 16px 20px;
    font-size: 0.9rem;
    margin-top: 16px;
    text-align: center;
  }

  /* ── CTA Strip ────────────────────────────────────────── */
  .cta-strip {
    background: var(--saffron);
    padding: 48px 40px;
    text-align: center;
  }
  .cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
  }
  .cta-strip p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
  }
  .cta-btns {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
  }
  .cta-btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff;
    color: var(--saffron);
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .cta-btn-white:hover { opacity: 0.9; }
  .cta-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.6);
    transition: background 0.2s;
  }
  .cta-btn-outline:hover { background: rgba(255,255,255,0.1); }
  .cta-contact {
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
  }

  /* ── Footer ───────────────────────────────────────────── */
  footer {
    background: #0e1a24;
    padding: 40px 40px 24px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
  }
  .footer-brand span { color: var(--saffron); }
  .footer-brand p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
    letter-spacing: 0.06em;
  }
  .footer-contact { text-align: right; }
  .footer-contact p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
  }
  .footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
  }
  .footer-contact a:hover { color: var(--saffron-lt); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
  }
  .footer-built {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.18);
  }
  .footer-built a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
  }
  .footer-built a:hover { color: var(--saffron-lt); }

  .footer-built-invite {
    display: block;
    margin-top: 5px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.22);
  }
  .footer-built-invite a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transition: color 0.2s;
  }
  .footer-built-invite a:hover { color: var(--saffron-lt); }

  /* ── Floating WA Button ───────────────────────────────── */
  .float-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 998;
    width: 52px; height: 52px;
    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.45);
    font-size: 1.5rem;
    animation: float-pulse 3s ease-in-out infinite;
    transition: transform 0.2s;
  }
  .float-wa:hover { transform: scale(1.1); }
  @keyframes float-pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
  }

  /* ── Fade-in Animation ────────────────────────────────── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Responsive ───────────────────────────────────────── */
  @media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left::after { display: none; }
    .hero-right { min-height: 340px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 160px 160px 160px;
      gap: 8px;
    }
    .gallery-cell:first-child { grid-column: 1 / -1; grid-row: auto; }
    .form-grid { grid-template-columns: 1fr; }
    nav { padding: 0 20px; }
    .nav-brand { font-size: 1.1rem; font-weight: 900; white-space: nowrap; }
    .nav-cta { padding: 8px 16px; font-size: 0.75rem; white-space: nowrap; }
    .section { padding: 60px 20px; }
    .hero-left { padding: 48px 24px; }
    .trust-strip { gap: 20px; padding: 16px 20px; }
    .trust-divider { display: none; }
    .footer-top { flex-direction: column; }
    .footer-contact { text-align: left; }
  }

  /* ── Room Enquiry Modal ───────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(14, 26, 36, 0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--cream);
  width: 100%;
  max-width: 420px;
  padding: 40px 36px 32px;
  position: relative;
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.5rem; color: var(--mid);
  cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--charcoal); }
.modal-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 6px;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ganga-dk);
  margin-bottom: 4px;
}
.modal-room-name {
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.modal-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.modal-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}
.modal-group input {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border 0.2s;
  width: 100%;
}
.modal-group input:focus {
  border-color: var(--ganga);
}
.modal-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25d366;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.modal-submit:hover { opacity: 0.9; }
.modal-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--mid);
  text-align: center;
  font-style: italic;
}