/* =========================================================
   Omaxe Kaushambi Ghaziabad — lightweight stylesheet
   Colors: navy #0A2740 · gold #e3991d · light text #f5f5f5
   ========================================================= */

:root {
    --navy: #0A2740;
    --navy-2: #103752;
    --gold: #e3991d;
    --light: #f5f5f5;
    --text: #333;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.light-text { color: #ddd; }

/* ---------- Buttons ---------- */
.same-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy);
    color: #fff;
    border: 1px solid var(--gold);
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background .3s, color .3s;
}
.same-btn:hover { background: var(--gold); color: #0A2740; }
.same-btn.gold { background: var(--gold); color: #0A2740; }
.same-btn.gold:hover { background: #fff; }
.same-btn.wide { width: 100%; }

.book-btn {
    display: inline-block;
    background: var(--gold);
    color: #0A2740;
    border: none;
    padding: 10px 34px;
    margin-top: 18px;
    font-weight: 600;
    font-size: 15px;
    transition: background .3s;
}
.book-btn:hover { background: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.brochure-tab-btn { margin-left: auto; }

/* ---------- Navbar ---------- */
.navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 12px 0;
    transition: background .3s;
}
.navbar.fixedtop {
    position: fixed;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { width: 150px; height: auto; }

.menu-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    padding: 9px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.menu-btn span { width: 26px; height: 2px; background: #fff; display: block; }

/* ---------- Offcanvas ---------- */
.offcanvas-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0; visibility: hidden;
    transition: opacity .3s;
    z-index: 98;
}
.offcanvas-backdrop.show { opacity: 1; visibility: visible; }

.offcanvas {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; max-width: 85vw;
    height: 100%;
    background: var(--navy);
    z-index: 99;
    transition: right .3s ease;
    overflow-y: auto;
    padding: 20px;
}
.offcanvas.show { right: 0; }
.offcanvas-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.offcanvas-head img { width: 130px; }
.close-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    width: 36px; height: 36px;
    border-radius: 50%;
}
.offcanvas-nav { list-style: none; text-align: center; }
.offcanvas-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 11px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .2s;
}
.offcanvas-nav a:hover { color: var(--gold); }

/* ---------- Hero / slider ---------- */
.hero { position: relative; background: var(--navy); }

.slider { position: relative; overflow: hidden; }
.slide { display: none; position: relative; }
.slide.active { display: block; }
.slide img {
    width: 100%;
    height: 100vh;
    min-height: 560px;
    object-fit: cover;
}
/* dark overlay so hero text stays readable over any banner */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,39,64,.72) 0%, rgba(10,39,64,.45) 45%, rgba(10,39,64,.55) 100%);
}
.slider-dots {
    position: absolute;
    bottom: 18px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}
.slider-dots button {
    width: 26px; height: 4px;
    border: none;
    background: rgba(255,255,255,.5);
}
.slider-dots button.active { background: var(--gold); }

.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%);
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.hero-panel { max-width: 600px; }

/* Hero right-side lead form */
.hero-form-card {
    flex: 0 0 340px;
    background: rgba(10,39,64,.82);
    border: 1px solid rgba(227,153,29,.55);
    border-radius: 12px;
    padding: 24px 22px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero-form-card h5 {
    color: var(--gold);
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}
.hero-form-sub {
    color: #ddd;
    font-size: 12.5px;
    text-align: center;
    letter-spacing: .5px;
    margin-bottom: 16px;
}
.hero-form-card .enquiry-form input[type="text"],
.hero-form-card .enquiry-form input[type="tel"],
.hero-form-card .enquiry-form input[type="email"] {
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
}
.hero-form-card .same-btn { border-radius: 6px; font-weight: 600; }
.hero-form-card .consent { font-size: 9px; color: #ccc; }

.hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 26px;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-heading span { display: block; }
.hero-heading .gold-text { color: var(--gold); }

.hero-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px 8px 8px;
    margin-bottom: 14px;
    backdrop-filter: blur(3px);
}
.pill-ico {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 0 24px;
}
.stat-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    padding: 14px 20px;
    backdrop-filter: blur(3px);
}
.stat-card h4 { color: var(--gold); font-size: 24px; font-weight: 700; }
.stat-card p { color: #ddd; font-size: 13px; }

.hero-btn { border-radius: 8px; font-weight: 600; padding: 13px 28px; }

/* ---------- Strip ---------- */
.strip { padding: 10px; cursor: pointer; background: #fff; }
.strip img { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section.dark { background: var(--navy); }

.section-head { max-width: 900px; margin-bottom: 20px; }
.section-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    display: inline-block;
    letter-spacing: 1px;
}
.section-head.light h2, .section-head.light p { color: #fff; }
.gold-line {
    width: 80px; height: 3px;
    background: var(--gold);
    margin: 8px 0 16px;
}
.section-head p { font-size: 15px; color: #555; }
.section-head.light p { color: #d8d8d8; }

/* ---------- Overview ---------- */
.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 30px;
    align-items: center;
}
.overview-img img { width: 100%; height: 100%; object-fit: cover; }
.overview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.overview-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 14px rgba(10,39,64,.08);
    text-align: center;
    padding: 22px 10px;
}
.overview-card img { margin: 0 auto 8px; width: 48px; height: 48px; }
.overview-card p { font-size: 13px; color: #666; }
.overview-card b { font-size: 14px; color: var(--navy); }
.overview-cards .same-btn { grid-column: 1 / -1; }

/* ---------- Highlights ---------- */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}
.highlight-card {
    border: 1px solid rgba(227,153,29,.45);
    padding: 28px 18px;
    text-align: center;
    background: rgba(255,255,255,.03);
    transition: transform .3s, background .3s;
}
.highlight-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.highlight-card img { margin: 0 auto 12px; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(-15deg); }
.highlight-card h6 { color: #fff; font-size: 14.5px; font-weight: 500; line-height: 1.5; }

/* ---------- Amenities ---------- */
.amenities-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 25px 15px 15px;
    scrollbar-width: none;
}
/* when all 5 cards fit (wide desktop), center the strip instead of left-aligning */
@media (min-width: 1320px) {
    .amenities-track { justify-content: center; }
}
.amenities-track::-webkit-scrollbar { display: none; }
.amenities-card {
    position: relative;
    flex: 0 0 240px;
    scroll-snap-align: center;
}
.amenities-card img {
    width: 240px; height: 300px;
    object-fit: cover;
}
.amenities-card p {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,39,64,.9));
    color: #fff;
    text-align: center;
    padding: 30px 8px 12px;
    font-weight: 600;
}

/* ---------- Pricing ---------- */
.price-sec { position: relative; overflow: hidden; }
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 380px));
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
}
.price-card {
    border: 1px solid var(--gold);
    padding: 35px 25px;
    text-align: center;
    background: rgba(255,255,255,.04);
}
.price-card h5 { color: var(--gold); font-size: 21px; font-weight: 600; margin-bottom: 14px; }
.price-card p { color: #eee; font-size: 15px; margin: 4px 0; }
.price-card h3 { color: #fff; font-size: 30px; margin-top: 6px; }

/* ---------- Floor plans ---------- */
.tab-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 25px; }
.tab-link {
    background: #fff;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 10px 26px;
    font-size: 15px;
    font-weight: 500;
    transition: background .25s, color .25s;
}
.tab-link.active, .tab-link:hover { background: var(--navy); color: #fff; }

.tab-content { display: none; }
.tab-content.active { display: block; }

.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.plan-info h4 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.plan-info ul { padding-left: 20px; margin-bottom: 25px; }
.plan-img { position: relative; border: 2px dashed var(--navy); }
.plan-img img { width: 100%; filter: blur(4px); }
.view-plan-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* ---------- Nearby Connectivity ---------- */
.connectivity-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}
.connectivity-map {
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(10,39,64,.1);
    min-height: 420px;
}
.connectivity-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}
.conn-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(10,39,64,.07);
    padding: 14px 18px;
    margin-bottom: 14px;
    transition: transform .25s, box-shadow .25s;
}
.conn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10,39,64,.14);
}
.conn-ico {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.conn-card b { color: var(--navy); font-size: 15px; display: block; }
.conn-card p { color: #777; font-size: 13px; margin: 0; }
.maps-btn { border-radius: 8px; margin-top: 6px; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.gallery-grid a { display: block; overflow: hidden; }
.gallery-grid img {
    width: 100%; height: 220px;
    object-fit: cover;
    transition: transform .4s;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .g-big { grid-column: span 2; }

/* ---------- About developer ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 35px;
    align-items: center;
}
.about-text { text-align: center; }
.about-text img { margin: 0 auto 20px; background: #fff; padding: 12px; }
.about-text p { color: #ddd; font-size: 14.5px; text-align: left; }
.about-img img { width: 100%; }

/* ---------- Contact ---------- */
.contact-sec { background: linear-gradient(rgba(10,39,64,.94), rgba(10,39,64,.94)), var(--navy-2); }
.contact-title { color: var(--gold); text-align: center; font-size: 26px; font-weight: 600; margin-bottom: 8px; }
.contact-form-wrap { max-width: 420px; margin: 35px auto 0; }

.enquiry-form input[type="text"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
}
.enquiry-form input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

.consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 12px;
    font-size: 10px;
    color: #fff;
    cursor: pointer;
}
.consent input { margin-top: 2px; }
.consent.dark-text { color: #000; }

.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; padding: 0 !important; margin: 0 !important; border: 0 !important; }

.form-error {
    color: #ffb3b3;
    background: rgba(255,0,0,.12);
    border: 1px solid rgba(255,100,100,.4);
    max-width: 520px;
    margin: 15px auto 0;
    padding: 10px 16px;
    font-size: 14px;
}

/* ---------- Footer ---------- */
footer { background: var(--navy); padding: 45px 0 20px; }
.disclaimer p { color: #bbb; font-size: 12.5px; margin-bottom: 10px; }
.moretext { display: none; }
.moretext.show { display: block; }
.moreless-button {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 13px;
    padding: 0;
    text-decoration: underline;
}
footer hr { border: none; border-top: 1px solid var(--gold); margin: 20px 0; }
.footer-link a { color: #fff; font-size: 13px; text-decoration: none; }
.footer-link a:hover { color: var(--gold); }

/* ---------- Mobile CTA (50/50: Enquire + WhatsApp) ---------- */
.cta-mobile {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
}
.cta-mobile .cta-enquire,
.cta-mobile .cta-whatsapp {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    padding: 14px 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    font-family: inherit;
    text-decoration: none;
}
.cta-mobile .cta-enquire {
    background: var(--gold);
    color: #0A2740;
}
.cta-mobile .cta-whatsapp {
    background: #25D366;
    color: #fff;
}

/* ---------- Modals ---------- */
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0; visibility: hidden;
    transition: opacity .3s;
    z-index: 100;
}
.modal-backdrop.show { opacity: 1; visibility: visible; }

.modal {
    position: fixed; inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 101;
    padding: 15px;
}
.modal.show { display: flex; }
.modal-box {
    position: relative;
    background: #fff;
    padding: 35px 25px 25px;
    width: 100%;
    max-width: 420px;
    max-height: 92vh;
    overflow-y: auto;
    border-top: 3px solid var(--gold);
}
.modal-box h5 { color: var(--navy); font-size: 19px; margin-bottom: 18px; }
.modal-box .modal-title { margin-bottom: 2px; text-transform: capitalize; }
.modal-sub { color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 16px; letter-spacing: .5px; }
.modal-box .close-btn {
    position: absolute;
    top: 10px; right: 10px;
    color: var(--navy);
    border-color: #999;
    z-index: 2;
}
.modal-wide { max-width: 860px; }
.strip-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}
.strip-modal-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 110;
    padding: 30px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; }
.lightbox p { color: #ddd; margin-top: 12px; font-size: 14px; }
.lb-close { position: absolute; top: 18px; right: 18px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 992px) {
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .g-big { grid-column: span 2; }
    .main-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .section { padding: 42px 0; }
    .section-head h2 { font-size: 24px; }

    .slide img { height: 46vh; min-height: 300px; }

    /* hero panel + form flow below the slider on mobile */
    .hero-content {
        position: static;
        transform: none;
        background: var(--navy);
        padding: 28px 18px;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-form-card { flex: 1 1 auto; width: 100%; }
    .hero-panel { max-width: 100%; }
    .hero-heading { font-size: 32px; }
    .hero-pill { font-size: 14px; }
    .pill-ico { width: 36px; height: 36px; font-size: 16px; }
    .stat-card h4 { font-size: 20px; }
    .hero-btn { width: 100%; }
    .btn-row { flex-direction: column; }

    .brochure-tab-btn { margin-left: 0; width: 100%; justify-content: center; }

    .connectivity-grid { grid-template-columns: 1fr; }
    .connectivity-map, .connectivity-map iframe { min-height: 300px; }

    .overview-grid, .plan-grid, .about-grid, .strip-modal-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
    .highlight-grid { grid-template-columns: 1fr; gap: 14px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-grid img { height: 150px; }

    .cta-mobile { display: flex; }
    body { padding-bottom: 50px; }

    .plan-info { order: 2; margin-top: 18px; }
    .plan-img { order: 1; }

    .strip-modal-img { display: none; }
}

@media (max-width: 400px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .g-big { grid-column: span 1; }
}

/* =========================================================
   Theme polish — rounded corners + soft hover lift/shadow
   ========================================================= */

/* Buttons (mobile bottom-bar buttons stay square) */
.same-btn, .book-btn, .tab-link {
    border-radius: 8px;
}
.cta-mobile .cta-enquire, .cta-mobile .cta-whatsapp { border-radius: 0; }
.same-btn, .book-btn {
    transition: background .3s, color .3s, transform .25s, box-shadow .3s;
}
.same-btn:hover, .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(227,153,29,.35);
}

/* Overview cards */
.overview-card {
    border-radius: 12px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227,153,29,.6);
    box-shadow: 0 14px 28px rgba(10,39,64,.18);
}
.overview-img img { border-radius: 14px; }

/* Highlight cards (dark section — soft gold glow) */
.highlight-card {
    border-radius: 12px;
    transition: transform .3s, background .3s, box-shadow .3s;
}
.highlight-card:hover {
    box-shadow: 0 14px 30px rgba(0,0,0,.45), 0 0 0 1px rgba(227,153,29,.55);
}

/* Amenities cards */
.amenities-card {
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.amenities-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(10,39,64,.28);
}
.amenities-card img { border-radius: 14px; }

/* Price cards (dark section) */
.price-card {
    border-radius: 14px;
    transition: transform .3s, box-shadow .3s, background .3s;
}
.price-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.08);
    box-shadow: 0 16px 34px rgba(0,0,0,.45), 0 0 0 1px rgba(227,153,29,.5);
}

/* Floor plan image box */
.plan-img {
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .3s;
}
.plan-img:hover { box-shadow: 0 14px 28px rgba(10,39,64,.2); }

/* Gallery tiles */
.gallery-grid a {
    border-radius: 12px;
    transition: box-shadow .3s, transform .3s;
}
.gallery-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(10,39,64,.25);
}

/* About developer images */
.about-img img, .about-text img { border-radius: 14px; }
.about-img img { transition: box-shadow .3s; }
.about-img img:hover { box-shadow: 0 16px 32px rgba(0,0,0,.45); }

/* Promo strip */
.strip img {
    border-radius: 12px;
    transition: box-shadow .3s;
}
.strip:hover img { box-shadow: 0 12px 26px rgba(10,39,64,.22); }

/* Forms + modal */
.enquiry-form input[type="text"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="email"] { border-radius: 8px; }
.modal-box { border-radius: 14px; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    .same-btn, .book-btn, .overview-card, .highlight-card, .amenities-card,
    .price-card, .plan-img, .gallery-grid a, .conn-card, .strip img {
        transition: none;
    }
}
