/*=================================================================
  CasaPrimes home.css v4 — Refined Real Estate Platform
  Color: Deep Teal + Warm Amber + Cream White
  Font: DM Sans (loaded in layout)
=================================================================*/
:root {
    --teal: #0A4B6E;
    --teal2: #0D5C87;
    --teal3: #1A7FAD;
    --teal-d: #062F46;
    --amber: #E8921A;
    --amber-d: #C9780E;
    --amber-pale: #FEF9EE;
    --amber-glow: rgba(232,146,26,.18);
    --cream: #F7F5F0;
    --cream2: #EDE9E0;
    --tx: #0F1923;
    --tx2: #2D3E4F;
    --tx3: #5A7184;
    --mu: #8FA4B5;
    --wh: #FFFFFF;
    --br: #DDE5EC;
    --br2: #C8D6E0;
    --green: #0F9E6E;
    --green-bg: #E6F7F1;
    --red: #D63B3B;
    --red-bg: #FDEAEA;
    --r1: 4px;
    --r2: 8px;
    --r3: 14px;
    --r4: 20px;
    --r5: 999px;
    --sd1: 0 2px 8px rgba(10,75,110,.06);
    --sd2: 0 6px 20px rgba(10,75,110,.10);
    --sd3: 0 12px 40px rgba(10,75,110,.14);
    --sd4: 0 24px 64px rgba(10,75,110,.18);
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans',-apple-system,sans-serif;
    color: var(--tx);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

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

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

/* Scroll reveal */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease,transform .55s ease
}

    .rv.in {
        opacity: 1;
        transform: none
    }

    .rv.d1 {
        transition-delay: .06s
    }

    .rv.d2 {
        transition-delay: .12s
    }

    .rv.d3 {
        transition-delay: .18s
    }

    .rv.d4 {
        transition-delay: .24s
    }

    .rv.d5 {
        transition-delay: .30s
    }

/* Layout */
.wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 22px
}

.sec {
    padding: 52px 0
}

.sec-alt {
    background: var(--wh)
}

.sec-dark {
    background: var(--teal-d)
}

/* Section header */
.sh {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 14px;
    flex-wrap: wrap
}

.sh-left {
    flex: 1
}

.eyebrow {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px
}

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--amber);
        border-radius: 2px
    }

.sh-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--tx);
    line-height: 1.2;
    letter-spacing: -.02em
}

.sh-sub {
    font-size: .8rem;
    color: var(--tx3);
    margin-top: 5px;
    line-height: 1.6
}

.sh-link {
    font-size: .76rem;
    font-weight: 700;
    color: var(--teal2);
    white-space: nowrap;
    padding: 8px 18px;
    border: 2px solid var(--teal2);
    border-radius: var(--r5);
    transition: all .2s;
    flex-shrink: 0
}

    .sh-link:hover {
        background: var(--teal2);
        color: #fff
    }

/* Pills/tabs */
.pill-row {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px
}

    .pill-row::-webkit-scrollbar {
        display: none
    }

.pill {
    padding: 6px 16px;
    font-size: .76rem;
    font-weight: 600;
    border-radius: var(--r5);
    border: 1.5px solid var(--br);
    background: #fff;
    color: var(--tx3);
    cursor: pointer;
    white-space: nowrap;
    transition: all .18s
}

    .pill.active, .pill:hover {
        border-color: var(--teal2);
        color: var(--teal2);
        background: rgba(13,92,135,.06)
    }

/*=================================================================
  HERO — Dramatic full-screen with mesh gradient
=================================================================*/
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── BACKGROUND IMAGE SLIDER ─────────────────────────── */
.hs-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 6s ease;
}

    .hs-slide.hs-active {
        opacity: 1;
        transform: scale(1); /* Ken Burns zoom-out on active */
    }

.hs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(6,47,70,.82) 0%, rgba(6,47,70,.55) 50%, rgba(6,47,70,.18) 100% );
}

/* Gradient mask — left heavy for text contrast */
.hero-gradient-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    /*background:linear-gradient(
    160deg,
    rgba(6,47,70,.65) 0%,
    rgba(10,75,110,.35) 55%,
    transparent 100%
  );*/
}

/* Subtle grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /*background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);*/
    background-size: 60px 60px;
}

/* ── SLIDER CONTROLS ─────────────────────────────────── */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

    .hs-arrow:hover {
        background: rgba(255,255,255,.25);
        border-color: rgba(255,255,255,.6)
    }

.hs-prev {
    left: 16px
}

.hs-next {
    right: 16px
}

/* Dots */
.hs-dots {
    position: absolute;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.hs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

    .hs-dot.hs-dot-active {
        background: #fff;
        width: 22px;
        border-radius: 4px;
    }

/* Slide captions — bottom right corner */
.hs-captions {
    position: absolute;
    bottom: 92px;
    right: 20px;
    z-index: 10;
    text-align: right;
}

.hs-caption {
    display: none;
    font-size: .7rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
}

    .hs-caption.hs-cap-active {
        display: inline-block
    }

/* ── HERO CONTENT ────────────────────────────────────── */
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 56px 0 44px;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 16px;
    border-radius: var(--r5);
    background: rgba(232,146,26,.15);
    border: 1px solid rgba(232,146,26,.4);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber)
}

    .hero-badge .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--amber);
        animation: blink 1.5s infinite
    }

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(1.9rem,4.2vw,3.1rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 10px;
    max-width: 640px
}

    .hero h1 .accent {
        color: var(--amber)
    }

    .hero h1 .line2 {
        display: block
    }

.hero-sub {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    max-width: 500px;
    margin-bottom: 26px;
    line-height: 1.7
}

    .hero-sub strong {
        color: rgba(255,255,255,.9);
        font-weight: 600
    }

/* Hero search */
.hero-search {
    background: #fff;
    border-radius: var(--r3);
    overflow: hidden;
    max-width: 720px;
    box-shadow: 0 20px 60px rgba(6,47,70,.4);
    border: 1px solid rgba(255,255,255,.1)
}

.hero-tabs {
    display: flex;
    border-bottom: 1.5px solid var(--br);
    padding: 0 8px;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none
}

    .hero-tabs::-webkit-scrollbar {
        display: none
    }

.htab {
    padding: 11px 15px;
    font-size: .76rem;
    font-weight: 700;
    color: var(--tx3);
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .18s
}

    .htab.active {
        color: var(--teal2);
        border-bottom-color: var(--teal2)
    }

    .htab:hover:not(.active) {
        color: var(--tx)
    }

.hero-search-row {
    display: flex;
    align-items: center;
    background: #fff
}

.hs-city {
    padding: 0 16px;
    height: 54px;
    border: none;
    border-right: 1.5px solid var(--br);
    font-size: .84rem;
    color: var(--tx2);
    font-weight: 600;
    outline: none;
    min-width: 155px;
    background: none;
    cursor: pointer
}

.hs-input {
    flex: 1;
    padding: 0 16px;
    height: 54px;
    border: none;
    font-size: .9rem;
    color: var(--tx);
    outline: none;
    background: #fff
}

    .hs-input::placeholder {
        color: var(--mu)
    }

.hs-btn {
    height: 54px;
    padding: 0 26px;
    background: var(--amber);
    color: #fff;
    font-weight: 800;
    font-size: .84rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    white-space: nowrap;
    transition: background .18s;
    letter-spacing: .01em;
    flex-shrink: 0
}

    .hs-btn:hover {
        background: var(--amber-d)
    }

    .hs-btn svg {
        flex-shrink: 0
    }

/* Hero stats strip */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 22px;
    background: rgba(255,255,255,.06);
    border-radius: var(--r3);
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    max-width: 560px;
    backdrop-filter: blur(8px)
}

.hs-stat {
    flex: 1;
    padding: 12px 16px;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: center
}

    .hs-stat:last-child {
        border-right: none
    }

.hs-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1
}

.hs-lbl {
    font-size: .58rem;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em
}

/* Trending */
.trending {
    background: rgba(255,255,255,.04);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 10px 0;
    position: relative;
    z-index: 2
}

.tr-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none
}

    .tr-inner::-webkit-scrollbar {
        display: none
    }

.tr-label {
    font-size: .64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    flex-shrink: 0
}

.tr-tag {
    font-size: .72rem;
    color: rgba(255,255,255,.65);
    padding: 4px 12px;
    border-radius: var(--r5);
    border: 1px solid rgba(255,255,255,.15);
    white-space: nowrap;
    cursor: pointer;
    transition: all .18s;
    flex-shrink: 0
}

    .tr-tag:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
        border-color: rgba(255,255,255,.3)
    }

/*=================================================================
  QUICK LINKS STRIP
=================================================================*/
.quick-strip {
    background: #fff;
    border-bottom: 1px solid var(--br)
}

.quick-scroller {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none
}

    .quick-scroller::-webkit-scrollbar {
        display: none
    }

.quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-right: 1px solid var(--br);
    white-space: nowrap;
    cursor: pointer;
    transition: background .18s;
    text-decoration: none;
    flex-shrink: 0
}

    .quick-item:hover {
        background: var(--cream)
    }

.quick-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.quick-lbl {
    font-size: .78rem;
    font-weight: 700;
    color: var(--tx);
    line-height: 1.25
}

.quick-sub {
    font-size: .65rem;
    color: var(--tx3);
    margin-top: 1px
}

/*=================================================================
  PROJECT CARDS
=================================================================*/
.proj-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scrollbar-width: none
}

    .proj-scroller::-webkit-scrollbar {
        display: none
    }

.proj-card {
    flex-shrink: 0;
    width: 240px;
    border-radius: var(--r3);
    overflow: hidden;
    background: #fff;
    border: 1.5px solid var(--br);
    box-shadow: var(--sd1);
    transition: all .25s;
    cursor: pointer
}

    .proj-card:hover {
        box-shadow: var(--sd3);
        transform: translateY(-4px);
        border-color: var(--teal3)
    }

.proj-img {
    height: 158px;
    position: relative;
    background: linear-gradient(135deg,var(--teal-d),var(--teal2));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.proj-img-ph {
    font-size: 3rem;
    opacity: .25
}

.proj-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    border-radius: var(--r5);
    font-size: .59rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em
}

    .proj-badge.new {
        background: var(--amber);
        color: #fff
    }

    .proj-badge.res {
        background: rgba(255,255,255,.2);
        color: #fff;
        border: 1px solid rgba(255,255,255,.3)
    }

.proj-rera {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 9px;
    border-radius: var(--r5);
    font-size: .59rem;
    font-weight: 800;
    background: var(--green-bg);
    color: var(--green)
}

.proj-body {
    padding: 14px
}

.proj-name {
    font-size: .86rem;
    font-weight: 800;
    color: var(--tx);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.proj-loc {
    font-size: .71rem;
    color: var(--tx3);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px
}

.proj-price {
    font-size: .9rem;
    font-weight: 800;
    color: var(--teal)
}

.proj-bhk {
    font-size: .68rem;
    color: var(--tx3);
    margin-top: 2px
}

/*=================================================================
  PROPERTY CARDS
=================================================================*/
.prop-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.prop-card {
    background: #fff;
    border-radius: var(--r3);
    border: 1.5px solid var(--br);
    overflow: hidden;
    box-shadow: var(--sd1);
    transition: all .25s;
    cursor: pointer
}

    .prop-card:hover {
        box-shadow: var(--sd3);
        transform: translateY(-4px);
        border-color: var(--teal3)
    }

.prop-thumb {
    height: 185px;
    position: relative;
    background: linear-gradient(135deg,var(--teal-d),var(--teal2));
    display: flex;
    align-items: center;
    justify-content: center
}

.prop-thumb-ph {
    font-size: 3rem;
    opacity: .22
}

.prop-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    border-radius: var(--r5);
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #fff
}

    .prop-badge.sell {
        background: var(--teal2)
    }

    .prop-badge.rent {
        background: var(--amber)
    }

.prop-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    transition: all .18s;
    border: none;
    color: var(--tx3)
}

    .prop-fav:hover {
        color: var(--red);
        transform: scale(1.12)
    }

.prop-body {
    padding: 14px
}

.prop-price {
    font-size: 1rem;
    font-weight: 900;
    color: var(--teal-d);
    letter-spacing: -.01em
}

.prop-title {
    font-size: .79rem;
    font-weight: 600;
    color: var(--tx2);
    margin: 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.prop-loc {
    font-size: .7rem;
    color: var(--tx3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 3px
}

.prop-feats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1.5px solid var(--cream2)
}

.prop-feat {
    font-size: .68rem;
    color: var(--tx2);
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600
}

.prop-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.prop-btn {
    flex: 1;
    padding: 8px;
    border-radius: var(--r2);
    font-size: .71rem;
    font-weight: 700;
    text-align: center;
    border: 1.5px solid var(--br);
    color: var(--tx2);
    background: #fff;
    cursor: pointer;
    transition: all .18s
}

    .prop-btn:hover {
        border-color: var(--teal2);
        color: var(--teal2)
    }

    .prop-btn.cta {
        background: var(--teal2);
        color: #fff;
        border-color: var(--teal2)
    }

        .prop-btn.cta:hover {
            background: var(--teal)
        }

/*=================================================================
  INSIGHTS / STATS CARDS
=================================================================*/
.insight-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow: var(--sd1)
}

.insight-card {
    padding: 20px 18px;
    border-right: 1.5px solid var(--br);
    cursor: pointer;
    transition: background .18s
}

    .insight-card:last-child {
        border-right: none
    }

    .insight-card:hover {
        background: var(--cream)
    }

.ic-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 10px
}

.ic-lbl {
    font-size: .68rem;
    color: var(--tx3);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.ic-val {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--tx);
    letter-spacing: -.01em
}

.ic-chg {
    font-size: .68rem;
    margin-top: 4px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px
}

    .ic-chg.up {
        color: var(--green)
    }

    .ic-chg.dn {
        color: var(--red)
    }

/*=================================================================
  SERVICE STRIP
=================================================================*/
.svc-strip {
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow: var(--sd1)
}

.svc-row {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none
}

    .svc-row::-webkit-scrollbar {
        display: none
    }

.svc-item {
    flex: 1;
    min-width: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border-right: 1.5px solid var(--br);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none
}

    .svc-item:last-child {
        border-right: none
    }

    .svc-item:hover {
        background: var(--amber-pale)
    }

.svc-ico-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform .2s
}

.svc-item:hover .svc-ico-wrap {
    transform: scale(1.1) rotate(-4deg)
}

.svc-nm {
    font-size: .7rem;
    font-weight: 700;
    color: var(--tx2);
    text-align: center;
    line-height: 1.3
}

/*=================================================================
  TESTIMONIALS + PROMISE
=================================================================*/
.tp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start
}

.testi-card, .promise-card {
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    padding: 24px;
    box-shadow: var(--sd1)
}

.rating-big {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--tx)
}

.stars {
    color: #F4A624;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 3px 0
}

.review-card {
    border: 1.5px solid var(--br);
    border-radius: var(--r2);
    padding: 14px;
    margin-top: 14px;
    background: var(--cream)
}

.rev-name {
    font-size: .8rem;
    font-weight: 800;
    color: var(--tx)
}

.rev-sub {
    font-size: .68rem;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 4px
}

.rev-text {
    font-size: .75rem;
    color: var(--tx3);
    line-height: 1.6
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1.5px solid var(--br);
    border-radius: var(--r2);
    font-size: .73rem;
    font-weight: 600;
    color: var(--tx2);
    background: var(--cream);
    transition: all .18s
}

    .promise-item:hover {
        border-color: var(--teal2);
        background: rgba(13,92,135,.04);
        color: var(--teal2)
    }

.promise-ico {
    font-size: 1rem;
    flex-shrink: 0
}

/*=================================================================
  LOCALITY GRID
=================================================================*/
.loc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.loc-card {
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    padding: 18px;
    box-shadow: var(--sd1);
    transition: all .25s;
    cursor: pointer
}

    .loc-card:hover {
        box-shadow: var(--sd2);
        border-color: var(--teal3);
        transform: translateY(-3px)
    }

.loc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.loc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--teal2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.loc-name {
    font-size: .9rem;
    font-weight: 800;
    color: var(--tx)
}

.loc-city {
    font-size: .7rem;
    color: var(--tx3)
}

.loc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px
}

.lstat {
    background: var(--cream);
    border-radius: var(--r2);
    padding: 8px;
    text-align: center
}

.lstat-lbl {
    font-size: .6rem;
    color: var(--tx3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px
}

.lstat-val {
    font-size: .82rem;
    font-weight: 800;
    color: var(--tx)
}

/*=================================================================
  DEVELOPER SCROLL
=================================================================*/
.dev-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scrollbar-width: none
}

    .dev-scroller::-webkit-scrollbar {
        display: none
    }

.dev-card {
    flex-shrink: 0;
    width: 240px;
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    padding: 18px;
    box-shadow: var(--sd1);
    transition: all .25s;
    cursor: pointer
}

    .dev-card:hover {
        box-shadow: var(--sd2);
        border-color: var(--teal3)
    }

.dev-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.dev-logo {
    width: 46px;
    height: 46px;
    border-radius: var(--r2);
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff
}

.dev-name {
    font-size: .86rem;
    font-weight: 800;
    color: var(--tx)
}

.dev-city {
    font-size: .7rem;
    color: var(--tx3)
}

.dev-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    margin-bottom: 12px
}

.dev-stat {
    text-align: center
}

.dev-stat-val {
    font-size: .86rem;
    font-weight: 800;
    color: var(--tx);
    display: block
}

.dev-stat-lbl {
    font-size: .6rem;
    color: var(--tx3)
}

.dev-projects {
    border-top: 1.5px solid var(--br);
    padding-top: 10px
}

.dev-proj-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: .7rem;
    border-bottom: 1px solid var(--cream2)
}

    .dev-proj-row:last-child {
        border-bottom: none
    }

.dev-proj-name {
    color: var(--tx2);
    font-weight: 600
}

.dev-proj-price {
    color: var(--teal2);
    font-weight: 700
}

/*=================================================================
  CITY GRID + CAROUSEL
=================================================================*/
/*.city-icon-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 12px;
    margin-bottom: 28px
}

.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 8px;
    border-radius: var(--r3);
    border: 1.5px solid var(--br);
    background: #fff;
    cursor: pointer;
    transition: all .22s;
    text-align: center;
    box-shadow: var(--sd1)
}

    .city-card:hover {
        border-color: var(--teal2);
        background: rgba(13,92,135,.04);
        transform: translateY(-3px);
        box-shadow: var(--sd2)
    }

.city-ico {
    font-size: 1.7rem
}

.city-name {
    font-size: .73rem;
    font-weight: 700;
    color: var(--tx2)
}

.city-count {
    font-size: .62rem;
    color: var(--tx3)
}*/

/* Photo carousel */
/*.carousel-wrap {
    position: relative
}

.c-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 14px;
    scrollbar-width: none;
    scroll-behavior: smooth
}

    .c-track::-webkit-scrollbar {
        display: none
    }

.city-photo-card {
    flex-shrink: 0;
    width: 165px;
    border-radius: var(--r3);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--sd2);
    transition: transform .22s
}

    .city-photo-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sd3)
    }

.cpc-img {
    height: 210px;
    position: relative;
    overflow: hidden;
    background: var(--teal2)
}

    .cpc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

.city-photo-card:hover .cpc-img img {
    transform: scale(1.07)
}

.cpc-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 3rem
}

.cpc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 12px 12px;*/
/*background: linear-gradient(to top,rgba(6,47,70,.88),transparent)*/
/*}

.cpc-name {
    font-size: .84rem;
    font-weight: 800;
    color: #fff
}

.cpc-count {
    font-size: .65rem;
    color: rgba(255,255,255,.7);
    margin-top: 1px
}

.c-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--br);
    box-shadow: var(--sd2);
    color: var(--tx2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all .18s
}

    .c-arrow:hover {
        background: var(--teal2);
        color: #fff;
        border-color: var(--teal2)
    }

.c-prev {
    left: -18px
}

.c-next {
    right: -18px
}*/

/* ===== Wrapper ===== */
.carousel-wrap {
    position: relative;
    overflow: hidden;
}
/* ===== Track ===== */
.c-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* 👇 Important for swipe */
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
    pointer-events: auto;
}

    .c-track:active {
        cursor: grabbing;
    }

/* ===== Card ===== */
.city-card-new {
    flex: 0 0 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    /* Hover (subtle, professional) */
    .city-card-new:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

/* ===== Image ===== */
.img-wrap {
    height: 230px;
    position: relative;
}

    .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.city-card-new:hover img {
    transform: scale(1.05);
}

/* ===== Overlay ===== */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* ===== Info ===== */
.info {
    position: absolute;
    bottom: 0;
    padding: 14px;
    color: #fff;
}

.name {
    font-weight: 700;
    font-size: 0.95rem;
}

.count {
    font-size: 0.7rem;
    opacity: 0.8;
}
/* ===== Arrows ===== */
.c-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.c-prev {
    left: 0;
}

.c-next {
    right: 0;
}

/*=================================================================
  BLOG GRID
=================================================================*/
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.blog-card {
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow: var(--sd1);
    transition: all .22s;
    cursor: pointer
}

    .blog-card:hover {
        box-shadow: var(--sd2);
        transform: translateY(-3px);
        border-color: var(--teal3)
    }

.blog-img {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    background: var(--cream2)
}

.blog-body {
    padding: 16px
}

.blog-cat {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--amber);
    margin-bottom: 5px
}

.blog-title {
    font-size: .84rem;
    font-weight: 700;
    color: var(--tx);
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-date {
    font-size: .67rem;
    color: var(--tx3);
    margin-top: 10px
}

/*=================================================================
  TRUST STRIP
=================================================================*/
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow: var(--sd1)
}

.trust-item {
    padding: 24px 18px;
    border-right: 1.5px solid var(--br);
    text-align: center
}

    .trust-item:last-child {
        border-right: none
    }

.trust-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: -.03em
}

.trust-lbl {
    font-size: .7rem;
    color: var(--tx3);
    margin-top: 4px;
    font-weight: 500
}

/*=================================================================
  APP SECTION
=================================================================*/
.app-sec {
    background: linear-gradient(135deg,var(--teal-d) 0%,var(--teal) 60%,var(--teal2) 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden
}

    .app-sec::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(232,146,26,.08) 0%,transparent 70%)
    }

.app-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center
}

.app-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -.02em
}

.app-sub {
    font-size: .86rem;
    color: rgba(255,255,255,.6);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 20px
}

.app-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--r2);
    color: #fff;
    cursor: pointer;
    transition: all .2s
}

    .app-btn:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.4)
    }

.app-btn-icon {
    font-size: 1.6rem
}

.app-btn-sub {
    font-size: .6rem;
    color: rgba(255,255,255,.55);
    display: block
}

.app-btn-lbl {
    font-size: .84rem;
    font-weight: 700
}

.app-mockup {
    width: 180px;
    height: 340px;
    background: rgba(255,255,255,.07);
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,.3)
}

/* Post property banner */
.post-banner {
    background: linear-gradient(120deg,var(--amber) 0%,#F0A020 100%);
    border-radius: var(--r3);
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(232,146,26,.3)
}

.pb-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px
}

.pb-sub {
    font-size: .84rem;
    color: rgba(255,255,255,.8);
    max-width: 480px;
    line-height: 1.6
}

.pb-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #fff;
    color: var(--amber-d);
    border-radius: var(--r5);
    font-size: .86rem;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s;
    border: none;
    cursor: pointer
}

    .pb-btn:hover {
        background: var(--teal-d);
        color: #fff
    }

/* Media cards */
.media-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.media-card {
    background: #fff;
    border: 1.5px solid var(--br);
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow: var(--sd1);
    transition: all .22s;
    cursor: pointer
}

    .media-card:hover {
        box-shadow: var(--sd2);
        transform: translateY(-3px)
    }

.media-img {
    height: 112px;
    background: linear-gradient(135deg,var(--teal-d),var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    font-weight: 700;
    text-align: center;
    padding: 12px;
    line-height: 1.4
}

.media-body {
    padding: 12px
}

.media-src {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--amber);
    margin-bottom: 5px
}

.media-title {
    font-size: .74rem;
    font-weight: 600;
    color: var(--tx);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

/*=================================================================
  RESPONSIVE — Full breakpoint coverage
=================================================================*/
@media(max-width:1100px) {
    .prop-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .city-icon-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .media-grid {
        grid-template-columns: repeat(2,1fr)
    }

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

    .insight-card:nth-child(2) {
        border-right: none
    }

    .insight-card:nth-child(3) {
        border-top: 1.5px solid var(--br)
    }

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

@media(max-width:900px) {
    .sec {
        padding: 32px 0
    }

    .wrap {
        padding: 0 16px
    }

    .hero {
        min-height: 500px
    }

    .hero-inner {
        padding: 40px 0 32px
    }

    .hero h1 {
        font-size: clamp(1.5rem,5.5vw,2rem);
        max-width: 100%
    }

    .hs-arrow {
        width: 34px;
        height: 34px
    }

    .hs-dots {
        bottom: 82px
    }

    .hs-captions {
        bottom: 86px;
        right: 14px
    }

    .hero-sub {
        font-size: .84rem;
        margin-bottom: 18px
    }

    .hero-search {
        max-width: 100%
    }

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

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

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

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

    .app-mockup {
        display: none
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr
    }

    .trust-item:nth-child(2) {
        border-right: none
    }

    .trust-item:nth-child(3) {
        border-top: 1.5px solid var(--br)
    }

    .post-banner {
        flex-direction: column;
        padding: 24px;
        text-align: center
    }

    .pb-btn {
        width: 100%;
        justify-content: center
    }

    .c-prev {
        left: 4px
    }

    .c-next {
        right: 4px
    }

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

    .city-icon-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width:640px) {
    .sec {
        padding: 24px 0
    }

    .wrap {
        padding: 0 12px
    }

    .hero {
        min-height: 460px
    }

    .hero-inner {
        padding: 28px 0 22px
    }

    .hero-badge {
        font-size: .58rem;
        padding: 4px 12px
    }

    .hero h1 {
        font-size: 1.55rem;
        letter-spacing: -.025em
    }

    .hs-arrow {
        display: none
    }

    .hs-dots {
        bottom: 76px
    }

    .hs-captions {
        display: none
    }

    .hero-sub {
        font-size: .8rem;
        margin-bottom: 14px
    }

    .hero-tabs {
        flex-wrap: nowrap
    }

    .htab {
        font-size: .7rem;
        padding: 9px 11px
    }

    .hero-search-row {
        flex-direction: column
    }

    .hs-city {
        border-right: none;
        border-bottom: 1.5px solid var(--br);
        height: 46px;
        width: 100%;
        font-size: .82rem
    }

    .hs-input {
        height: 46px;
        font-size: .86rem
    }

    .hs-btn {
        width: 100%;
        height: 46px;
        justify-content: center;
        border-radius: 0 0 var(--r3) var(--r3)
    }

    .hero-stats {
        flex-direction: row;
        max-width: 100%;
        border-radius: var(--r2)
    }

    .hs-stat {
        padding: 10px 8px
    }

    .hs-num {
        font-size: .9rem
    }

    .hs-lbl {
        font-size: .52rem
    }

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

    .prop-actions {
        display: none
    }

    .city-icon-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 8px
    }

    .city-card {
        padding: 12px 5px
    }

    .city-ico {
        font-size: 1.3rem
    }

    .city-name {
        font-size: .66rem
    }

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

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

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

    .sh-title {
        font-size: 1.1rem
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr
    }

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

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

    .app-btns {
        flex-direction: column
    }
}

@media(max-width:400px) {
    .wrap {
        padding: 0 10px
    }

    .hero h1 {
        font-size: 1.35rem
    }

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

    .city-icon-grid {
        grid-template-columns: repeat(3,1fr)
    }

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

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

    .trust-strip {
        grid-template-columns: 1fr 1fr
    }

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


/* ════════════════════════════════════
   WATCH REELS — homepage section
════════════════════════════════════ */
.reels-outer {
    position: relative;
    overflow: hidden
}

.reels-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 12px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

    .reels-track::-webkit-scrollbar {
        display: none
    }

.reel-card {
    flex-shrink: 0;
    width: 180px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
    transition: transform .22s,box-shadow .22s;
    scroll-snap-align: start
}

    .reel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0,0,0,.18)
    }

.reel-thumb-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    background: #111;
    overflow: hidden
}

.reel-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .28s
}

.reel-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    pointer-events: none
}

.reel-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.08) 55%,transparent 80%);
    pointer-events: none
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-58%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #111;
    transition: all .2s;
    pointer-events: none;
    backdrop-filter: blur(4px)
}

.reel-card:hover .reel-play-btn {
    background: var(--or);
    color: #fff;
    transform: translate(-50%,-58%) scale(1.12)
}

.reel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px 12px;
    color: #fff;
    pointer-events: none
}

.reel-caption-name {
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.reel-caption-loc {
    font-size: .66rem;
    opacity: .82;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.reels-arrow {
    position: absolute;
    right: -8px;
    top: 42%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.14);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    color: #374151
}

    .reels-arrow:hover {
        background: var(--or);
        color: #fff;
        border-color: var(--or)
    }
/* Reel fullscreen popup */
.reel-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.94);
    align-items: center;
    justify-content: center;
    flex-direction: column
}

    .reel-popup.open {
        display: flex
    }

.reel-popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    padding: 0
}

.reel-popup-title {
    color: rgba(255,255,255,.85);
    font-size: .84rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    max-width: 88%;
    padding: 0 16px
}

.reel-popup-box {
    width: min(360px,86vw);
    position: relative;
    padding-bottom: min(640px,152vw);
    height: 0;
    overflow: hidden;
    border-radius: 14px
}

    .reel-popup-box iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 14px
    }

/* ════════════════════════════════════
   PWA INSTALL SECTION
════════════════════════════════════ */
.pwa-section {
    background: linear-gradient(135deg, #0D1B35 0%, #162444 50%, #1a2f52 100%);
    /*border-radius: 24px;*/
    padding: 56px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

    .pwa-section::before {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,87,42,.2) 0%, transparent 65%);
        top: -120px;
        right: -80px;
        pointer-events: none;
    }

    .pwa-section::after {
        content: '';
        position: absolute;
        width: 240px;
        height: 240px;
        /*border-radius: 50%;*/
        background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 65%);
        bottom: -60px;
        left: 100px;
        pointer-events: none;
    }

/* Center column */
.pwa-center {
    flex: 2;
    min-width: 0;
    position: relative;
    z-index: 1
}

/* Left column */
.pwa-left {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1
}

.pwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232,87,42,.18);
    border: 1px solid rgba(232,87,42,.35);
    color: #FF7B4F;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pwa-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E8572A;
    box-shadow: 0 0 6px #E8572A;
    animation: pwaPulse 1.8s ease-in-out infinite;
}

@keyframes pwaPulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.pwa-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.16;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

    .pwa-heading em {
        font-style: normal;
        background: linear-gradient(135deg, #E8572A, #FF9A6C);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.pwa-desc {
    font-size: .92rem;
    color: rgba(255,255,255,.58);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 32px;
}

/* Install button — primary CTA */
.pwa-btn-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pwa-install-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #E8572A 0%, #FF6B3D 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(232,87,42,.45);
    transition: all .22s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

    .pwa-install-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
        transition: left .5s;
    }

    .pwa-install-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(232,87,42,.55)
    }

        .pwa-install-btn:hover::before {
            left: 150%
        }

    .pwa-install-btn:active {
        transform: translateY(0)
    }

    .pwa-install-btn svg {
        flex-shrink: 0
    }

/* Installed state */
.pwa-installed {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(22,163,74,.15);
    border: 1.5px solid rgba(34,197,94,.3);
    color: #4ade80;
    border-radius: 14px;
    font-size: .88rem;
    font-weight: 600;
}

/* Fallback hint */
.pwa-hint {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    line-height: 1.5;
    max-width: 380px;
}

    .pwa-hint svg {
        flex-shrink: 0;
        margin-top: 1px;
        opacity: .5
    }

    .pwa-hint strong {
        color: rgba(255,255,255,.55)
    }

/* Feature list */
.pwa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 24px;
}

.pwa-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}

    .pwa-feature svg {
        color: #4ade80;
        flex-shrink: 0
    }

/* Right column — phone mockup */
.pwa-right {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-phone {
    width: 250px;
    background: #090d14;
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.07), inset 0 1px 0 rgba(255,255,255,.06);
    position: relative;
}

.pwa-phone-island {
    width: 52px;
    height: 10px;
    background: #090d14;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 8px;
    border: 1px solid rgba(255,255,255,.06);
    border-top: none;
}

.pwa-screen {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 10px 8px 8px;
}

.pwa-screen-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px 6px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 7px;
}

.pwa-screen-logo {
    font-size: .62rem;
    font-weight: 800;
    color: #E8572A
}

.pwa-screen-time {
    font-size: .52rem;
    color: #9CA3AF
}

.pwa-screen-search {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #F3F4F6;
    border-radius: 7px;
    padding: 5px 8px;
    font-size: .54rem;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.pwa-screen-card {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 3px;
    border-bottom: 1px solid #F9FAFB;
}

.pwa-screen-thumb {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #FFF1EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.pwa-screen-prop-title {
    font-size: .6rem;
    font-weight: 700;
    color: #111
}

.pwa-screen-prop-price {
    font-size: .56rem;
    color: #E8572A;
    font-weight: 700
}

.pwa-screen-prop-loc {
    font-size: .5rem;
    color: #9CA3AF
}

.pwa-screen-nav {
    display: flex;
    justify-content: space-around;
    padding: 7px 0 2px;
    border-top: 1px solid #F3F4F6;
    margin-top: 4px;
    font-size: .88rem;
}

/* Floating badge */
.pwa-float {
    position: absolute;
    top: 20px;
    right: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 32px rgba(0,0,0,.28);
    border: 1px solid rgba(232,87,42,.12);
    animation: floatBob 3.5s ease-in-out infinite;
    white-space: nowrap;
}

.pwa-float-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #FFF1EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.pwa-float-title {
    font-size: .63rem;
    font-weight: 700;
    color: #111
}

.pwa-float-sub {
    font-size: .55rem;
    color: #6B7280
}

@keyframes floatBob {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* Responsive */
@media(max-width:960px) {
    .pwa-section {
        flex-direction: column;
        padding: 40px 32px;
        gap: 36px;
        text-align: center
    }

    .pwa-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .pwa-btn-wrap, .pwa-features {
        justify-content: center
    }

    .pwa-hint {
        justify-content: center;
        text-align: left
    }

    .pwa-float {
        right: -12px;
        top: 10px
    }
}

@media(max-width:600px) {

    .pwa-section {
        padding: 30px 20px;
        /*border-radius: 18px*/
    }

    .pwa-heading {
        font-size: 1.8rem
    }

    .pwa-install-btn {
        padding: 13px 26px;
        font-size: .94rem
    }

    .pwa-phone {
        width: 210px
    }

    .pwa-float {
        display: none
    }

    .footer-details {
        width: 130px !important;
    }
}
/* ── PWA notify email form ── */
.pwa-notify-form {
    margin: 20px 0 16px
}

.pwa-notify-label {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
    line-height: 1.5
}

.pwa-notify-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.pwa-notify-input {
    flex: 1;
    min-width: 180px;
    padding: 11px 14px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.18);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: .86rem;
    outline: none;
    transition: border-color .2s,background .2s;
}

    .pwa-notify-input::placeholder {
        color: rgba(255,255,255,.35)
    }

    .pwa-notify-input:focus {
        border-color: rgba(255,255,255,.5);
        background: rgba(255,255,255,.15)
    }

.pwa-notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    background: linear-gradient(135deg,#E8572A,#ff6b3d);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: .86rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

    .pwa-notify-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(232,87,42,.4)
    }

    .pwa-notify-btn:disabled {
        opacity: .65;
        cursor: not-allowed;
        transform: none
    }

.pwa-notify-msg {
    margin-top: 10px;
    font-size: .78rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
}

    .pwa-notify-msg.ok {
        background: rgba(34,197,94,.15);
        color: #4ade80;
        border: 1px solid rgba(34,197,94,.25)
    }

    .pwa-notify-msg.err {
        background: rgba(220,38,38,.15);
        color: #f87171;
        border: 1px solid rgba(220,38,38,.25)
    }

@media(max-width:600px) {
    .pwa-notify-row {
        flex-direction: column
    }

    .pwa-notify-input {
        min-width: unset;
        width: 100%
    }

    .pwa-notify-btn {
        width: 100%;
        justify-content: center
    }
}

/* ── Visitor counter section ── */
.vc-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.vc-left {
    background: #3730a3;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

    .vc-left::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -80px;
        right: -60px;
        pointer-events: none;
    }

.vc-chart {
    position: relative;
    height: 120px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.vc-grid-lines {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.vc-grid-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.08)
}

.vc-stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vc-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
}

.vc-dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    flex-shrink: 0;
    animation: vcPulse 2s ease-in-out infinite;
}

@keyframes vcPulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.vc-right {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.vc-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #eef2ff;
    color: #4338ca;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    width: fit-content;
}

.vc-right-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin: 0;
}

    .vc-right-title span {
        color: #4338ca;
        background: #eef2ff;
        border-radius: 8px;
        padding: 2px 10px;
    }

.vc-right-desc {
    font-size: .88rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
    max-width: 300px;
}

.vc-stats-row {
    display: flex;
    gap: 20px;
    align-items: center
}

.vc-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.vc-mini-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827
}

.vc-mini-lbl {
    font-size: .72rem;
    color: #9CA3AF
}

.vc-divider {
    width: 1px;
    height: 32px;
    background: #F0F0F0;
    flex-shrink: 0
}

/* ── Mobile: chart on top, text below ── */
@media(max-width:700px) {
    .vc-section {
        grid-template-columns: 1fr; /* single column */
    }

    .vc-left {
        order: 1; /* chart FIRST */
        min-height: 220px;
        padding: 28px 22px;
    }

    .vc-right {
        order: 2; /* text SECOND */
        padding: 28px 22px;
    }

    .vc-chart {
        height: 100px;
        margin-bottom: 18px
    }

    .vc-stat-num {
        font-size: 2rem
    }

    .vc-right-title {
        font-size: 1.4rem
    }

    .vc-right-desc {
        max-width: 100%
    }
}

@media(max-width:380px) {
    .vc-stat-num {
        font-size: 1.75rem
    }

    .vc-right-title {
        font-size: 1.2rem
    }

    .vc-mini-val {
        font-size: 1rem
    }

    .vc-left, .vc-right {
        padding: 22px 18px
    }
}