/* ===== SKELETON LOADING ===== */

@keyframes skeletonShimmer {
    0% {
        background-position: -400px 0
    }

    100% {
        background-position: 400px 0
    }
}

.skeleton {
    background: linear-gradient(90deg, #e8f0fc 0%, #f4f7fc 40%, #e8f0fc 80%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.4s ease-in-out infinite;
    border-radius: var(--r)
}

body.dark .skeleton {
    background: linear-gradient(90deg, #162035 0%, #1e3a5f 40%, #162035 80%);
    background-size: 800px 100%
}

.pc-skeleton {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border)
}

.pc-skeleton .sk-img {
    height: 222px
}

.pc-skeleton .sk-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pc-skeleton .sk-line {
    height: 14px;
    border-radius: 4px
}

.pc-skeleton .sk-line.short {
    width: 55%
}

.pc-skeleton .sk-line.xs {
    width: 35%;
    height: 10px
}


/* ===== CARD FLIP ===== */

.card-flip-wrap {
    perspective: 1200px;
    height: 350px
}

.card-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .65s cubic-bezier(.23, 1, .32, 1);
    cursor: pointer
}

/* .card-flip-wrap:hover .card-flip,.card-flip-wrap.flipped .card-flip{transform:rotateY(180deg)} */
.card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow)
}

.card-front {
    background: var(--white)
}

body.dark .card-front {
    background: #162035
}

.card-back {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg2));
    transform: rotateY(180deg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.cb-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px
}

.cb-loc {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 4px
}

.cb-specs {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1
}

.cb-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 12.5px
}

.cb-spec-lbl {
    color: rgba(255, 255, 255, .5);
    font-weight: 400
}

.cb-spec-val {
    color: white;
    font-weight: 600
}

.cb-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px
}

.cb-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s
}

.cb-btn-primary {
    background: white;
    color: var(--blue-d)
}

.cb-btn-wa {
    background: #25d366;
    color: white
}


/* ===== VASTU SCORE METER ===== */

.vastu-score-wrap {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg2));
    border-radius: var(--r-lg);
    padding: 28px;
    margin-top: 22px;
    position: relative;
    overflow: hidden
}

.vastu-score-wrap::before {
    content: '✦';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: .05;
    color: white
}

.vs-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px
}

.vs-score-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px
}

.vs-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1
}

.vs-denom {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .4)
}

.vs-label {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px
}

.vs-label.excellent {
    background: rgba(74, 222, 128, .2);
    color: #4ade80
}

.vs-label.great {
    background: rgba(147, 197, 253, .2);
    color: #93c5fd
}

.vs-bars {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.vs-bar-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.vs-bar-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    width: 90px;
    flex-shrink: 0
}

.vs-bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden
}

.vs-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(.23, 1, .32, 1)
}

.vs-bar-fill.anim {
    transform: scaleX(1)
}

.vs-bar-val {
    font-size: 11px;
    font-weight: 700;
    color: white;
    width: 28px;
    text-align: right;
    flex-shrink: 0
}


/* ===== SITE VISIT SCHEDULER ===== */

.scheduler-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    max-width: 760px;
    margin: 0 auto
}

body.dark .scheduler-wrap {
    background: #162035;
    border-color: #1e3a5f
}

.scheduler-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.sched-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sched-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px
}

.sched-dow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    padding: 4px 0
}

.sched-day {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1.5px solid transparent;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center
}

.sched-day:hover:not(.disabled):not(.empty) {
    background: var(--blue-l);
    border-color: var(--blue-mid);
    color: var(--blue)
}

.sched-day.selected {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    font-weight: 700
}

.sched-day.today {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    font-weight: 700
}

.sched-day.disabled {
    color: var(--border);
    cursor: not-allowed;
    pointer-events: none
}

.sched-day.empty {
    cursor: default
}

.sched-times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px
}

.sched-time {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all .2s
}

.sched-time:hover {
    border-color: var(--blue-mid);
    color: var(--blue)
}

.sched-time.selected {
    background: var(--blue);
    color: white;
    border-color: var(--blue)
}

.sched-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.sched-month-nav button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    color: var(--text)
}

.sched-month-nav button:hover {
    background: var(--blue-l);
    border-color: var(--blue-mid)
}

.sched-month-lbl {
    font-size: 13px;
    font-weight: 700;
    color: var(--text)
}

.sched-confirm {
    width: 100%;
    padding: 13px;
    background: var(--blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    margin-top: 20px;
    transition: all .3s
}

.sched-confirm:hover {
    background: var(--blue-d)
}

.sched-confirm:disabled {
    background: var(--border);
    cursor: not-allowed;
    color: var(--muted)
}

.sched-success {
    text-align: center;
    padding: 28px;
    display: none
}

.sched-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px
}


/* ===== PLOT SIZE VISUALIZER ===== */

.visualizer-wrap {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px
}

body.dark .visualizer-wrap {
    background: #0a1628;
    border-color: #1e3a5f
}

.visualizer-slider {
    width: 100%;
    margin: 16px 0;
    accent-color: var(--blue)
}

.visualizer-size-lbl {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1
}

.visualizer-unit {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400
}

.visualizer-canvas {
    width: 100%;
    aspect-ratio: 2/1;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    margin: 16px 0;
    position: relative;
    overflow: hidden
}

body.dark .visualizer-canvas {
    background: #162035;
    border-color: #1e3a5f
}

.viz-plot {
    position: absolute;
    background: rgba(37, 99, 168, .15);
    border: 2px solid var(--blue-mid);
    border-radius: 4px;
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
    display: flex;
    align-items: center;
    justify-content: center
}

.viz-plot-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--blue-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    pointer-events: none
}

.viz-ref {
    position: absolute;
    background: rgba(22, 163, 74, .12);
    border: 1.5px dashed #16a34a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

.viz-ref-lbl {
    font-size: 9px;
    font-weight: 600;
    color: #16a34a;
    text-align: center;
    padding: 2px;
    pointer-events: none
}

.visualizer-bars {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 80px;
    margin-top: 8px
}

.viz-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    transition: height .6s cubic-bezier(.23, 1, .32, 1), background .3s;
    position: relative;
    cursor: pointer;
    min-width: 0
}

.viz-bar-lbl {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    text-align: center
}

.viz-bar-val {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    color: var(--blue-mid);
    white-space: nowrap
}


/* ===== PARALLAX SECTIONS ===== */

.parallax-img {
    will-change: transform;
    transition: transform .05s linear
}


/* ===== ODOMETER (slot roll) ===== */

.odometer-digit {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.1em;
    line-height: 1.1em
}

.odometer-ribbon {
    display: flex;
    flex-direction: column;
    transition: transform .8s cubic-bezier(.23, 1, .32, 1)
}


/* ===== PATTERN BG ===== */

.pattern-bg {
    position: relative
}

.pattern-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='%231a3c6e' stroke-width='.8'/%3E%3Cpolygon points='40,5 75,65 5,65' fill='none' stroke='%231a3c6e' stroke-width='.6'/%3E%3Cpolygon points='40,75 75,15 5,15' fill='none' stroke='%231a3c6e' stroke-width='.6'/%3E%3C/svg%3E")
}


/* ===== IMAGE BLUR-IN LOAD ===== */

img {
    filter: blur(0);
    transition: filter .4s ease
}

img[data-src] {
    filter: blur(12px)
}

img.loaded {
    filter: blur(0)
}


body.dark {
    --white: #0f1a2e;
    --offwhite: #162035;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --border: #1e3a5f;
    --shadow: 0 4px 24px rgba(0, 0, 0, .3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .4);
    --blue-l: #1e3a5f
}

body.dark nav {
    background: #0f1a2e;
    border-color: #1e3a5f
}

body.dark .logo-name {
    color: #e2e8f0
}

body.dark .pc,
body.dark .tc-inner,
body.dark .bc,
body.dark .form-box,
body.dark .srv-card,
body.dark .jc,
body.dark .pd-info {
    background: #162035;
    border-color: #1e3a5f
}

body.dark .sec-alt {
    background: #0a1628
}

body.dark .ph {
    background: linear-gradient(135deg, #060e1d, #0d1f3a)
}

body.dark .feat-content {
    background: #0a1628
}

body.dark .dropdown {
    background: #0f1a2e;
    border-color: #1e3a5f
}

body.dark .mob-menu {
    background: #0f1a2e;
    border-color: #1e3a5f
}

body.dark .con-det,
.dark .map-box {
    background: #162035;
    border-color: #1e3a5f
}

body.dark .fg input,
body.dark .fg textarea,
body.dark .fg select {
    background: #162035;
    border-color: #1e3a5f;
    color: #e2e8f0
}

body.dark .feat {
    background: #162035;
    border-color: #1e3a5f
}

body.dark footer {
    background: #060e1d
}

body.dark .search-box {
    background: #162035;
    border-color: #1e3a5f
}

body.dark .stabs {
    background: #0f1a2e
}

body.dark .sf select,
body.dark .sf input {
    color: #e2e8f0
}

.dm-toggle {
    width: 38px;
    height: 22px;
    border-radius: 11px;
    background: var(--border);
    border: none;
    position: relative;
    cursor: pointer;
    transition: background .3s;
    flex-shrink: 0
}

.dm-toggle.on {
    background: var(--blue)
}

.dm-toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: left .3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
}

.dm-toggle.on::after {
    left: 19px
}

.dm-icon {
    font-size: 13px;
    margin-right: 4px
}


/* ===== TOP PROGRESS BAR ===== */

#topProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue-mid), #93c5fd);
    z-index: 99999;
    transition: width .2s ease;
    border-radius: 0 2px 2px 0
}


/* ===== STICKY CTA BAR ===== */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7000;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(26, 60, 110, .1);
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.23, 1, .32, 1)
}

.sticky-cta-bar.show {
    transform: none
}

body.dark .sticky-cta-bar {
    background: #0f1a2e;
    border-color: #1e3a5f
}

.scta-left {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px
}

.scta-left span {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted)
}

.scta-btns {
    display: flex;
    gap: 10px
}

.scta-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.scta-primary {
    background: var(--blue);
    color: white
}

.scta-primary:hover {
    background: var(--blue-d)
}

.scta-wa {
    background: #25d366;
    color: white
}

.scta-wa:hover {
    background: #128c4e
}

.scta-call {
    background: var(--offwhite);
    color: var(--text);
    border: 1px solid var(--border)
}

.scta-call:hover {
    background: var(--blue-l)
}


/* ===== ENQUIRY POPUP ===== */

#enquiryPopup {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
    backdrop-filter: blur(4px)
}

#enquiryPopup.open {
    opacity: 1;
    visibility: visible
}

.epop-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: transform .4s cubic-bezier(.23, 1, .32, 1);
    box-shadow: 0 30px 80px rgba(26, 60, 110, .25)
}

#enquiryPopup.open .epop-box {
    transform: none
}

body.dark .epop-box {
    background: #162035
}

.epop-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1
}

.epop-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--blue-l);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.epop-h {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3
}

.epop-p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 300;
    line-height: 1.7
}

.epop-form .fg {
    margin-bottom: 12px
}

.epop-submit {
    width: 100%;
    padding: 13px;
    background: var(--blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s
}

.epop-submit:hover {
    background: var(--blue-d)
}

.epop-note {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px
}


/* ===== PLOT CALCULATOR ===== */

.calc-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow)
}

body.dark .calc-wrap {
    background: #162035;
    border-color: #1e3a5f
}

.calc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px
}

@media(max-width:600px) {
    .calc-grid {
        grid-template-columns: 1fr
    }
}

.calc-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .25s
}

body.dark .calc-field input,
body.dark .calc-field select {
    background: #0f1a2e;
    border-color: #1e3a5f;
    color: #e2e8f0
}

.calc-field input:focus,
.calc-field select:focus {
    border-color: var(--blue)
}

.calc-result {
    background: var(--blue);
    border-radius: var(--r);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: center
}

@media(max-width:600px) {
    .calc-result {
        grid-template-columns: 1fr 1fr
    }
}

.cr-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    line-height: 1
}

.cr-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px
}

.calc-emi-note {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    text-align: center;
    margin-top: 12px;
    grid-column: 1/-1
}


/* ===== COMPARE TOOL ===== */

.compare-tray {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 7500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end
}

.compare-pill {
    background: var(--blue);
    color: white;
    border: none;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(26, 60, 110, .3);
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 7px
}

.compare-pill:hover {
    background: var(--blue-d);
    transform: translateX(-4px)
}

.compare-panel {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 480px;
    max-height: 80vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    box-shadow: 0 -8px 40px rgba(26, 60, 110, .18);
    z-index: 9500;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.23, 1, .32, 1)
}

body.dark .compare-panel {
    background: #0f1a2e
}

.compare-panel.open {
    transform: none
}

.cp-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cp-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text)
}

.cp-header button {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--muted);
    cursor: pointer
}

.compare-grid {
    display: grid;
    gap: 0
}

.compare-row {
    display: grid;
    padding: 11px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    align-items: start
}

.compare-row.header {
    background: var(--blue-l);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-mid)
}

.compare-row.alt {
    background: var(--offwhite)
}

body.dark .compare-row.alt {
    background: #162035
}

.cr-label {
    color: var(--muted);
    font-weight: 500;
    font-size: 12px
}

.add-compare {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    font-weight: 700;
    color: var(--blue)
}

.add-compare.added {
    background: var(--blue);
    color: white;
    border-color: var(--blue)
}

.add-compare:hover {
    transform: scale(1.1)
}


/* ===== VASTU FAQ ===== */

.faq-list {
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    gap: 16px;
    transition: color .2s
}

.faq-q:hover {
    color: var(--blue)
}

.faq-q .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-l);
    border: 1px solid rgba(26, 60, 110, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: all .3s;
    color: var(--blue)
}

.faq-item.open .faq-q .faq-icon {
    background: var(--blue);
    color: white;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.23, 1, .32, 1)
}

.faq-a-inner {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300
}


/* ===== BUTTON RIPPLE ===== */

.btn-ripple {
    position: relative;
    overflow: hidden
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    transform: scale(0);
    animation: rippleAnim .55s linear;
    pointer-events: none
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0
    }
}


/* ===== AVAILABILITY BADGE ===== */

.avail-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 5px
}

.avail-badge.high {
    background: #dcfce7;
    color: #16a34a
}

.avail-badge.med {
    background: #fef9c3;
    color: #ca8a04
}

.avail-badge.low {
    background: #fee2e2;
    color: #dc2626
}

.avail-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: pDot 2s infinite
}


/* ===== FORM VALIDATION ===== */

.fg input.err,
.fg select.err,
.fg textarea.err {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .1) !important
}

.fg-error {
    font-size: 11px;
    color: #ef4444;
    margin-top: 4px;
    display: none;
    font-weight: 500
}

.fg-error.show {
    display: block
}

.fg input.ok,
.fg select.ok,
.fg textarea.ok {
    border-color: #16a34a !important
}


/* ===== 3D BACKGROUND SECTION ===== */

.three-bg-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg2) 100%)
}

#bgCanvas3d {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: .55;
    pointer-events: none
}

.three-bg-content {
    position: relative;
    z-index: 2
}


/* ===== ABOUT SECTION ENHANCED ===== */

.about-section-wrap {
    position: relative;
    overflow: hidden
}

.about-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.about-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 60, 110, .06);
    animation: floatParticle linear infinite
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: .4
    }

    100% {
        transform: translateY(-20px) scale(1.4);
        opacity: 0
    }
}


/* ===== PROFESSIONAL ANIMATIONS ===== */

@keyframes shimmer {
    0% {
        background-position: -1000px 0
    }

    100% {
        background-position: 1000px 0
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: .6
    }

    100% {
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0)
    }

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes border-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 168, .2)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 99, 168, .05)
    }
}

/* Section number labels */
.sec-num {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 800;
    color: rgba(26, 60, 110, .04);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px
}

/* Magnetic card hover effect */
.pc {
    transform-style: preserve-3d
}

.pc-inner-shine {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .08), transparent 60%)
}

.pc:hover .pc-inner-shine {
    opacity: 1
}

/* Animated gradient CTA band */
.cta-animated {
    background: linear-gradient(-45deg, #0f2548, #1a3c6e, #2563a8, #0f2548);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite
}

/* Floating badge on about */
.av-chip {
    animation: float-y 4s ease-in-out infinite
}

/* Service card hover border glow */
.srv-card:hover {
    animation: border-glow .8s ease-out forwards
}

/* Stats bar animated gradient underline */
.stat-it {
    position: relative
}

.stat-it::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    transition: width .6s cubic-bezier(.23, 1, .32, 1)
}

.stat-it.up::after {
    width: 40px
}