.btn-primary {
    background: linear-gradient(135deg, #431529, #350101fb, #431529);
    font-size: 20px;
}
/* ═══════════════════════════════════════
   BRAND ROOT VARIABLES
═══════════════════════════════════════ */
:root {
    --brand-primary: #8d7bb0;
    --brand-dark: #2a2232;
    --brand-text: #3f3846;
    --brand-bg: #ffffff;
    --brand-soft: #f6f3f9;
    --brand-border: #e9e2ef;
    --brand-grad: linear-gradient(120deg, #4e1a3d, #8d7bb0 55%, #4e1a3d);
    --brand-grad-vert: linear-gradient(
        180deg,
        rgba(78, 26, 61, 0.9),
        rgba(141, 123, 176, 0.7),
        rgba(78, 26, 61, 0.9)
    );
    --display: "Cormorant Garamond", serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    color: var(--brand-text);
    background: var(--brand-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
a {
    color: var(--brand-primary);
    text-decoration: none;
}
a:hover {
    color: #431529;
    font-weight: bold;
    text-decoration: none;
}
h1,
h2,
h3,
h4 {
    margin: 0 0 0.5rem;
    color: var(--brand-dark);
    line-height: 1.2;
}
p {
    margin: 0 0 1rem;
}

/* ═══════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════ */
.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--brand-soft);
}
.center {
    text-align: center;
}
.inline-cta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.8rem;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════ */
.sec-eye {
    display: block;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 8px;
}
.sec-title {
    font-family: var(--display);
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 16px;
}
.sec-title em {
    font-style: italic;
    color: #4e1a3d;
}
.sec-rule {
    width: 44px;
    height: 2px;
    background: var(--brand-grad);
    margin-bottom: 28px;
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        filter 0.2s ease;
}
/* .btn:active { transform: translateY(1px); } */
/* .btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 6px 16px rgba(78,26,61,.28); } */
.btn-primary:hover {
    filter: brightness(0.98);
    color: #fff;
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    color: #4e1a3d;
    border-color: #8d7bb0;
}
.btn-outline:hover {
    background: var(--brand-soft);
    text-decoration: none;
}
.btn-soft {
    background: #f0e9f6;
    color: #402748;
    border-color: #e0d3ea;
}
.btn-soft:hover {
    background: #e8def2;
}
.btn-ghost {
    background: transparent;
    border-color: var(--brand-border);
    color: var(--brand-dark);
}
.btn-ghost:hover {
    background: var(--brand-soft);
}
.btn-white {
    background: #fff;
    color: #4e1a3d;
    border-color: #fff;
    font-weight: 700;
}
.btn-white:hover {
    background: #f0e9f6;
    color: #4e1a3d;
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: bold;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    color: #fff;
    background: #201122 center/cover no-repeat;
    isolation: isolate;
}
.hero-gallery {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}
.hero-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-gallery .hero-main {
    grid-row: 1 / 3;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: var(--brand-grad-vert); */
    background: linear-gradient(135deg, #431529, #350101fb, #431529);
    opacity: 0.82;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 15px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    opacity: 1;
}
.hero h1 {
    font-family: var(--display);
    /* font-size: clamp(36px, 6vw, 72px); */
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 12px;
}

.hero h1 em {
    font-style: italic;
    color: #e8d5a3;
}
.hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══════════════════════════════════════
   FACTS BAR
═══════════════════════════════════════ */
.facts-bar {
    background: var(--brand-soft);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.fact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-right: 1px solid var(--brand-border);
}
.fact:last-child {
    border-right: none;
}
.fact-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.fact-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 2px;
}
.fact-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-text p {
    color: var(--brand-text);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.8;
}
.highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 8px;
}
.hl {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-left: 3px solid var(--brand-primary);
    padding: 14px 16px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(78, 26, 61, 0.07);
}
.hl-icon {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.hl-body strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 2px;
}
.hl-body span {
    font-size: 12px;
    color: var(--brand-primary);
}

.img-stack {
    position: relative;
    padding-bottom: 28px;
    padding-right: 28px;
}
.img-stack .main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
}
.img-stack .accent-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid var(--brand-bg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(78, 26, 61, 0.18);
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 6px;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
}
.gallery-mosaic .gw {
    grid-column: span 2;
}
.gallery-mosaic .gt {
    grid-row: span 2;
}
.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition:
        transform 0.4s ease,
        filter 0.3s ease;
    filter: brightness(0.92);
}
.gallery-mosaic img:hover {
    transform: scale(1.04);
    filter: brightness(1);
}

/* ═══════════════════════════════════════
   AMENITIES
═══════════════════════════════════════ */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 40px;
}
.amenity {
    background: #fff;
    border: 1px solid var(--brand-border);
    padding: 18px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.amenity:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(141, 123, 176, 0.18);
    transform: translateY(-2px);
}
.amenity-icon {
    font-size: 20px;
    flex-shrink: 0;
}
.amenity-name {
    font-size: 13px;
    color: var(--brand-text);
    font-weight: 500;
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.review {
    background: #fff;
    border: 1px solid var(--brand-border);
    padding: 28px 24px;
    border-radius: 16px;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.review:hover {
    box-shadow: 0 8px 28px rgba(141, 123, 176, 0.18);
    transform: translateY(-3px);
}
.review-stars {
    color: #c9a96e;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review-text {
    font-style: italic;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: #000;
    margin-bottom: 18px;
}
.review-author {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════
   LOCATION
═══════════════════════════════════════ */
.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.loc-map {
    min-height: 400px;
    overflow: hidden;
}
.loc-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}
.loc-info {
    background: var(--brand-soft);
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loc-nearby {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}
.nearby-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-border);
    font-size: 13px;
}
.nearby-row:last-child {
    border-bottom: none;
}
.np {
    color: var(--brand-text);
}
.nd {
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 600;
}

/* ═══════════════════════════════════════
   BOOK CTA
═══════════════════════════════════════ */

/* .book-cta {
background: linear-gradient(
    135deg,
    rgba(67,21,41,0.85),
    rgba(53,1,1,0.85),
    rgba(67,21,41,0.85)
);

  color: #fff;
  text-align: center;
  padding: 96px 24px;
  min-height: 400px;
} */
.book-cta {
    background:
        linear-gradient(
            135deg,
            rgba(67, 21, 41, 0.65),
            rgba(53, 1, 1, 0.65),
            rgba(67, 21, 41, 0.65)
        ),
        url("../images12/supernova-spira-stay-bedroom-warm-tones.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 96px 24px;
    min-height: 400px;
}
/* .book-cta {
 
  background: linear-gradient(135deg, #431529, #350101fb, #431529);
  opacity: 0.82;
} */
.book-cta .sec-eye {
    color: rgba(255, 255, 255, 0.6);
}
.book-cta .sec-title {
    color: #fff;
    font-size: clamp(30px, 5vw, 60px);
}
.book-cta .sec-title em {
    color: #e8d5a3;
}
.book-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 36px;
}
.book-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   QUICK ACTIONS — Mobile Fixed Bar
═══════════════════════════════════════ */
.quick-actions {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-auto-flow: column;
    gap: 0.5rem;
    z-index: 70;
}
.quick-actions a {
    background: #1e1624;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition:
        color 0.2s,
        border-color 0.2s;
}
.quick-actions a:hover {
    color: #e8d5a3;
    border-color: rgba(232, 213, 163, 0.5);
}
@media (min-width: 920px) {
    .quick-actions {
        display: none;
    }
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    will-change: transform, opacity;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.in {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .section {
        padding: 64px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .img-stack {
        padding-bottom: 0;
        padding-right: 0;
    }
    .img-stack .main-img {
        aspect-ratio: 4/3;
    }
    .img-stack .accent-img {
        display: none;
    }
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-mosaic .gw {
        grid-column: span 1;
    }
    .gallery-mosaic .gt {
        grid-row: span 1;
    }
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    .location-split {
        grid-template-columns: 1fr;
    }
    .loc-info {
        padding: 40px 32px;
    }
    .fact {
        padding: 14px 20px;
    }
    .book-cta {
        padding: 72px 24px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
═══════════════════════════════════════ */
@media (max-width: 600px) {
    .section {
        padding: 48px 0;
    }
    .hero {
        min-height: 88vh;
    }
    .hero-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .hero-gallery img:not(.hero-main) {
        display: none;
    }
    .hero-gallery .hero-main {
        grid-row: auto;
    }
    .hero-badge {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 6px 14px;
    }
    .facts-bar {
        gap: 0;
    }
    .fact {
        width: 50%;
        border-right: 1px solid var(--brand-border);
        border-bottom: 1px solid var(--brand-border);
        padding: 14px 16px;
    }
    .fact:nth-child(even) {
        border-right: none;
    }
    .fact:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }
    .amenity-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .loc-map {
        min-height: 280px;
    }
    .loc-map iframe {
        min-height: 280px;
    }
    .loc-info {
        padding: 32px 20px;
    }
    .book-cta {
        padding: 56px 20px;
    }
    .book-actions {
        flex-direction: column;
        align-items: center;
    }
    .book-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    .inline-cta {
        flex-direction: column;
    }
    .inline-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 380px)
═══════════════════════════════════════ */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 30px;
    }
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    .gallery-mosaic .gw {
        grid-column: span 1;
    }
}

#location {
    display: flex;
    align-items: stretch; /* 🔥 important for equal height */
    justify-content: space-between;
    padding: 60px 80px;
    gap: 40px;
}

/* Dono equal width */
#location .loc-map,
#location .loc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Map full height le */
#location .loc-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
}

/* Content ko bhi full height feel dena */
#location .loc-info {
    justify-content: center; /* vertically center content */
}
@media (max-width: 768px) {
    #location {
        flex-direction: column;
        padding: 40px 20px;
    }

    #location .loc-map iframe {
        height: 250px;
    }
}

@media (max-width: 992px) {
    #location {
        display: flex;
        align-items: stretch; /* equal height maintain */
        padding: 50px 40px;
        gap: 30px;
    }

    /* dono equal width */
    #location .loc-map,
    #location .loc-info {
        flex: 1;
    }

    /* map responsive */
    #location .loc-map iframe {
        width: 100%;
        height: 100%;
        min-height: 350px;
    }

    /* content alignment */
    #location .loc-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* heading size adjust */
    .sec-title {
        font-size: 32px;
        line-height: 1.2;
    }
}

/* WhatsApp button: icon + text green */

.whatsapp-btn {
    color: #25d366 !important;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
    color: #25d366;
    text-decoration: none;
    background: #f0e9f6;
}

.call-btn i {
    color: #4e1a3d;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}
.call-btn {
    background: #f0e9f6;
    color: #4e1a3d;
}
.call-btn:hover i {
    color: #ffffff;
}

#us:hover {
    color: #ffffff !important;
}
.btn-outline-white {
    background: #f0e9f6;
    color: #4e1a3d;
    font-weight: 600;
}
#whatsapp:hover {
    background: #f0e9f6;
}

/* ===== Overlap / image-bleed fix ===== */
.hero {
    overflow: hidden;
} /* hero ki gallery image bahar na nikle */
#main {
    position: relative;
    z-index: 1;
    background: var(--brand-bg);
}
.section {
    position: relative;
    z-index: 1;
    background: var(--brand-bg);
}
.section-alt {
    background: var(--brand-soft);
} /* alt section ka bg wapas */
.about-grid {
    align-items: start;
} /* text upar se align ho */
