/* ============================================================
   CLICK YOUR STAY — Shared Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Great+Vibes&display=swap');

:root {
    --navy: #0b2344;
    --navy-deep: #081a34;
    --navy-soft: #13315c;
    --pink: #ec1e63;
    --pink-2: #f50a5f;
    --pink-grad: linear-gradient(135deg,#f5176b 0%,#e01660 100%);
    --green: #1ea84c;
    --green-deep: #16a34a;
    --green-soft: #e7f6ec;
    --gold: #f5a623;
    --ink: #0c2244;
    --muted: #6b7280;
    --muted-2: #94a3b8;
    --bg: #f4f6fa;
    --card: #ffffff;
    --border: #e8edf3;
    --border-2: #eef2f7;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 26px;
    --shadow-sm: 0 2px 10px rgba(12,34,68,.06);
    --shadow: 0 14px 40px rgba(12,34,68,.10);
    --shadow-lg: 0 30px 70px rgba(12,34,68,.16);
    --maxw: 1240px;
    --header-h: 74px;
    --ease: cubic-bezier(.22,.61,.36,1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Poppins',system-ui,sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

input, select, textarea {
    font-family: inherit;
    font-size: 15px
}

.script {
    font-family: 'Great Vibes',cursive;
    font-weight: 400
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px
}

.pink {
    color: var(--pink)
}

.hide {
    display: none !important
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 12px;
    padding: 12px 22px;
    transition: transform .2s var(--ease),box-shadow .2s var(--ease),background .2s;
    white-space: nowrap;
}

    .btn:active {
        transform: translateY(1px) scale(.99)
    }

.btn-pink {
    background: var(--pink-grad);
    color: #fff;
    box-shadow: 0 10px 24px rgba(236,30,99,.32)
}

    .btn-pink:hover {
        box-shadow: 0 14px 30px rgba(236,30,99,.42);
        transform: translateY(-2px)
    }

.btn-ghost {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--border)
}

    .btn-ghost:hover {
        border-color: var(--pink);
        color: var(--pink)
    }

.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,.55);
    color: #fff
}

    .btn-outline-light:hover {
        background: #fff;
        color: var(--navy)
    }

.btn-block {
    width: 100%
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0
}

    .brand .logo {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        flex-shrink: 0;
        background: radial-gradient(circle at 30% 30%,#ffd27d,#f5a623 45%,#ec1e63 110%);
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 14px rgba(236,30,99,.25);
    }

        .brand .logo::before {
            content: "";
            position: absolute;
            left: 6px;
            top: 7px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: #ffe9b0;
            box-shadow: 0 0 12px #ffd27d
        }

        .brand .logo::after {
            content: "";
            position: absolute;
            left: -4px;
            bottom: -3px;
            width: 120%;
            height: 55%;
            background: linear-gradient(180deg,#1ea84c,#0e7a37);
            border-radius: 50% 50% 0 0/70% 70% 0 0
        }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

    .brand-text b {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: .5px;
        color: var(--navy)
    }

    .brand-text span {
        font-size: 10px;
        color: var(--muted);
        letter-spacing: 1.5px;
        margin-top: 3px;
        font-weight: 500
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px
}

    .main-nav a {
        font-size: 14.5px;
        font-weight: 500;
        color: #334155;
        position: relative;
        padding: 4px 0;
        transition: color .2s
    }

        .main-nav a:hover {
            color: var(--pink)
        }

        .main-nav a.active {
            color: var(--pink);
            font-weight: 600
        }

            .main-nav a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -2px;
                height: 2.5px;
                background: var(--pink);
                border-radius: 2px
            }

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy)
}

    .header-phone .ic {
        color: var(--pink)
    }

.enquire-btn {
    background: var(--navy);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s,transform .2s
}

    .enquire-btn:hover {
        background: var(--pink);
        transform: translateY(-1px)
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 10px
}

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 2px;
        transition: .25s
    }

/* mobile drawer */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8,26,52,.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 200
}

    .drawer-backdrop.open {
        opacity: 1;
        visibility: visible
    }

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(82vw,330px);
    background: #fff;
    z-index: 210;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    box-shadow: -20px 0 60px rgba(8,26,52,.25);
}

    .drawer.open {
        transform: translateX(0)
    }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.drawer-close {
    font-size: 26px;
    color: var(--muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg)
}

.drawer nav {
    display: flex;
    flex-direction: column
}

    .drawer nav a {
        padding: 14px 6px;
        border-bottom: 1px solid var(--border-2);
        font-weight: 500;
        color: #334155;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .drawer nav a.active {
            color: var(--pink)
        }

.drawer .drawer-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy-deep);
    color: #cbd5e1;
    padding: 54px 0 0;
    margin-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 36px;
    padding-bottom: 40px
}

.footer-brand .brand-text b {
    color: #fff
}

.footer-brand p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255,255,255,.07);
        display: grid;
        place-items: center;
        color: #cbd5e1;
        transition: .2s
    }

        .footer-social a:hover {
            background: var(--pink);
            color: #fff;
            transform: translateY(-2px)
        }

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.footer-col li a {
    font-size: 13.5px;
    color: #94a3b8;
    transition: .2s
}

    .footer-col li a:hover {
        color: var(--pink);
        padding-left: 3px
    }

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 24px;
    list-style: none
}

.newsletter p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px
}

.news-form {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px
}

    .news-form input {
        flex: 1;
        border: none;
        padding: 12px 14px;
        outline: none;
        color: var(--ink)
    }

    .news-form button {
        background: var(--pink-grad);
        color: #fff;
        padding: 0 20px;
        font-weight: 600
    }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px
}

    .footer-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13.5px;
        color: #cbd5e1
    }

    .footer-contact .ic {
        color: var(--pink)
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #7e8ba3
}

    .footer-bottom .links {
        display: flex;
        gap: 22px
    }

    .footer-bottom a:hover {
        color: #fff
    }

/* ---------- Mobile bottom tab bar (app feel) ---------- */
.tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    display: none;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(5,1fr);
}

    .tabbar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        font-size: 10.5px;
        font-weight: 500;
        color: var(--muted-2);
        padding: 5px 0
    }

        .tabbar a.active {
            color: var(--pink)
        }

        .tabbar a svg {
            width: 22px;
            height: 22px
        }

    .tabbar .tab-fab {
        margin-top: -26px
    }

        .tabbar .tab-fab .fab {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--pink-grad);
            display: grid;
            place-items: center;
            color: #fff;
            box-shadow: 0 8px 20px rgba(236,30,99,.45)
        }

/* ---------- chips / badges ---------- */
.badge-bhk {
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 8px
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #475569;
    font-size: 13px;
    font-weight: 500
}

    .rating .stars {
        color: var(--gold)
    }

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: rise .7s var(--ease) forwards
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none
    }
}

/* ============================================================
   RESPONSIVE (shared)
   ============================================================ */
@media(max-width:1080px) {
    .main-nav {
        gap: 18px
    }

    .header-phone {
        display: none
    }
}

@media(max-width:900px) {
    :root {
        --header-h: 64px
    }

    .main-nav, .header-right .enquire-btn {
        display: none
    }

    .hamburger {
        display: flex
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

@media(max-width:760px) {
    body {
        padding-bottom: 74px
    }

    .tabbar {
        display: grid
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }
}

@media(max-width:560px) {
    .container {
        padding: 0 16px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-locations {
        grid-template-columns: 1fr 1fr
    }
}
.home-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(120deg,rgba(8,26,52,.86) 8%,rgba(8,26,52,.45) 55%,rgba(8,26,52,.30) 100%), url('https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=1700&q=80') center/cover;
}

    .home-hero .container {
        position: relative;
        z-index: 2;
        padding-top: 64px;
        padding-bottom: 120px
    }

    .home-hero h1 {
        font-size: clamp(34px,5.4vw,58px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -1px
    }

    .home-hero .script {
        display: block;
        font-size: clamp(40px,6vw,66px);
        color: var(--pink);
        margin-top: 2px;
        line-height: 1.1;
        text-shadow: 0 4px 24px rgba(236,30,99,.4)
    }

    .home-hero .sub {
        margin-top: 16px;
        font-size: clamp(15px,2vw,18px);
        color: rgba(255,255,255,.88);
        max-width: 430px
    }

.search-wrap {
    position: relative;
    z-index: 5;
    /*margin-top: -58px*/
}

.search-bar {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 14px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 6px;
    align-items: stretch
}

.search-field {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    border-radius: 12px
}

    .search-field + .search-field {
        border-left: 1px solid var(--border)
    }

    .search-field label {
        font-size: 11px;
        color: var(--muted-2);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .4px;
        margin-bottom: 2px
    }

    .search-field .val {
        display: flex;
        align-items: center;
        gap: 8px
    }

    .search-field select {
        border: none;
        outline: none;
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        background: transparent;
        width: 100%;
        cursor: pointer;
        appearance: none
    }

    .search-field .ic {
        color: var(--pink)
    }

.search-bar .btn-pink {
    border-radius: 12px;
    font-size: 15px;
    padding: 0 30px
}

.categories {
    padding: 46px 0 12px
}

.cat-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    scrollbar-width: none
}

    .cat-scroll::-webkit-scrollbar {
        display: none
    }

.cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    width: 88px;
    cursor: pointer;
    transition: transform .25s var(--ease)
}

    .cat:hover {
        transform: translateY(-4px)
    }

    .cat .ring {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        padding: 3px;
        background: conic-gradient(from 210deg,#f5a623,#ec1e63,#f50a5f,#f5a623)
    }

        .cat .ring .inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid #fff;
            background-size: cover;
            background-position: center
        }

    .cat.first .ring {
        background: #fff;
        border: 1.5px solid var(--border)
    }

    .cat.first .inner {
        display: grid;
        place-items: center;
        background: #fff;
        color: var(--pink)
    }

    .cat span {
        font-size: 12.5px;
        font-weight: 500;
        color: #475569;
        text-align: center
    }

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0 20px;
    gap: 12px
}

    .section-head .title {
        display: flex;
        align-items: center;
        gap: 12px
    }

    .section-head .ig {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: conic-gradient(from 200deg,#f5a623,#ec1e63,#7c3aed);
        display: grid;
        place-items: center;
        color: #fff;
        flex-shrink: 0
    }

    .section-head h2 {
        font-size: 24px;
        font-weight: 800;
        color: var(--navy)
    }

    .section-head .meta {
        font-size: 13px;
        color: var(--muted);
        font-weight: 400;
        display: block;
        margin-top: -2px
    }

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid var(--border);
    background: #fff;
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    transition: .2s;
    flex-shrink: 0
}

    .view-all:hover {
        border-color: var(--pink);
        color: var(--pink)
    }

.viral-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}

.vcard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease),box-shadow .35s
}

    .vcard:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow)
    }

    .vcard .bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform .6s var(--ease)
    }

    .vcard:hover .bg {
        transform: scale(1.08)
    }

    .vcard .ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(8,26,52,.30) 0%,rgba(8,26,52,0) 30%,rgba(8,26,52,.05) 52%,rgba(8,26,52,.85) 100%)
    }

    .vcard .play {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 32px;
        height: 32px;
        border-radius: 9px;
        background: rgba(255,255,255,.22);
        backdrop-filter: blur(6px);
        display: grid;
        place-items: center;
        color: #fff;
        z-index: 2
    }

    .vcard .loc {
        position: absolute;
        top: 13px;
        right: 13px;
        background: rgba(8,26,52,.62);
        backdrop-filter: blur(4px);
        color: #fff;
        font-size: 11.5px;
        font-weight: 500;
        padding: 5px 11px;
        border-radius: 8px;
        z-index: 2
    }

    .vcard .vtitle {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 48%;
        transform: translateY(-50%);
        z-index: 2;
        color: #fff;
        font-size: 25px;
        font-weight: 800;
        line-height: 1.12;
        text-shadow: 0 3px 18px rgba(0,0,0,.45)
    }

        .vcard .vtitle .hl {
            color: #ffd93b
        }

        .vcard .vtitle .scrline {
            font-family: 'Great Vibes',cursive;
            font-weight: 400;
            font-size: 40px;
            color: #ffd93b;
            display: block
        }

    .vcard .foot {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 2
    }

    .vcard .stats {
        display: flex;
        gap: 16px;
        color: #fff;
        font-size: 12.5px;
        font-weight: 500;
        margin-bottom: 10px
    }

        .vcard .stats span {
            display: inline-flex;
            align-items: center;
            gap: 5px
        }

    .vcard .view-stay {
        width: 100%;
        background: rgba(255,255,255,.16);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,.3);
        color: #fff;
        border-radius: 10px;
        padding: 9px;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        transition: .2s
    }

    .vcard:hover .view-stay {
        background: var(--pink);
        border-color: var(--pink)
    }

.features {
    padding: 50px 0 10px
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

    .feat .fic {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff0f5;
        display: grid;
        place-items: center;
        color: var(--pink);
        flex-shrink: 0;
        box-shadow: var(--shadow-sm)
    }

    .feat h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy)
    }

    .feat p {
        font-size: 12.5px;
        color: var(--muted);
        margin-top: 2px
    }

@media(max-width:900px) {
    .viral-grid, .feat-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .search-bar {
        grid-template-columns: 1fr 1fr;
        gap: 4px
    }

        .search-bar .btn-pink {
            grid-column: 1/-1;
            padding: 14px
        }

    .search-field + .search-field {
        border-left: none
    }
}

@media(max-width:560px) {
    .home-hero .container {
        padding-bottom: 90px
    }

    .viral-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .vcard .vtitle {
        font-size: 19px
    }

        .vcard .vtitle .scrline {
            font-size: 30px
        }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .section-head h2 {
        font-size: 20px
    }

    .view-all {
        padding: 9px 14px;
        font-size: 13px
    }
}

@media (max-width: 768px) {
    .bannerz {
        display: none;
    }
}