* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f3f4f6;
    color: #0f172a;
}
a { color: inherit; text-decoration: none; }

/* HEADER (fallback) */
.hero {
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(148,163,184,0.4);
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 30;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.brand-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0f172a;
}
.brand-subtitle {
    font-size: 12px;
    color: #6b7280;
}
.tagline {
    font-size: 13px;
    color: #4b5563;
    max-width: 430px;
}
.tagline-strong {
    font-weight: 600;
    color: #111827;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.pill {
    font-size: 11px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.8);
    color: #111827;
    background: #f9fafb;
}
.pill span { color: #2563eb; font-weight: 600; }
.btn-admin {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(37,99,235,0.9);
    background: #2563eb;
    color: #eff6ff;
}
.btn-admin:hover {
    background: #1d4ed8;
}

/* PAGE WRAPPER (width bada) */
.page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 18px 40px;
    position: relative; /* <– yeh naya add kiya */
}
/* ===== SIDE GUTTER REAL-ESTATE ANIMATION (for sections after hero) ===== */

/* base pillars */
.page::before,
.page::after {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    width: 170px;
    background:
        radial-gradient(circle at 10% 0%, rgba(250,204,21,0.20), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(59,130,246,0.16), transparent 55%),
        linear-gradient(180deg, rgba(248,250,252,0.95), rgba(241,245,249,0.98));
    opacity: 0.8;
    filter: blur(0.2px);
    animation: sideCityFloat 22s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

/* Left side pillar */
.page::before {
    left: -150px;              /* container se bahar gutter me */
    transform-origin: right center;
}

/* Right side pillar */
.page::after {
    right: -150px;
    transform-origin: left center;
    animation-delay: -11s;     /* dono sides ka motion thoda off-sync */
}

@keyframes sideCityFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.03);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 10px, 0) scale(1.02);
        opacity: 0.9;
    }
}

/* Desktop-only – mobile/tablet pe side animation hide */
@media (max-width: 1200px) {
    .page::before,
    .page::after {
        display: none;
    }
}


/* SECTION HEADER + GRID */
.section-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}
.section-sub {
    font-size: 13px;
    color: #6b7280;
}

/* right side view-all link */
.section-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.btn-view-all-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(248,250,252,0.3);
    background: linear-gradient(135deg,#fbbf24,#f97316);
    color: #111827;
    box-shadow:
        0 8px 20px rgba(248,181,0,0.45),
        0 0 0 1px rgba(253,224,71,0.5);
}
.btn-view-all-inline:hover {
    filter: brightness(1.04);
}

/* PROPERTIES GRID – 4 columns on PC */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

/* CARD – 3D-ish + clickable */
.card {
    position: relative;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #ffffff, #f9fafb);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow:
        0 14px 30px rgba(15,23,42,0.16),
        0 0 0 1px rgba(15,23,42,0.02);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
    display: flex;
    flex-direction: column;
    transform-origin: center;
    cursor: pointer;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(148,163,184,0.08), transparent 55%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 20px 40px rgba(15,23,42,0.22),
        0 0 0 1px rgba(59,130,246,0.14);
    border-color: rgba(129,140,248,0.6);
}
.card:hover::before {
    opacity: 1;
}

/* ORANGE CORNER RIBBON – "Most popular" */
.card-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px; /* pehle 120 tha – thoda width badha diya */
    height: 34px; /* thoda height bhi badha di, taaki text ko breathing space mile */
    background: linear-gradient(135deg,#f97316,#facc15);
    clip-path: polygon(0 0,100% 0,100% 100%,20% 100%);
    display: flex;
    align-items: center;
    justify-content: center; /* pehle flex-end tha, ab center kiya */
    padding-right: 0;        /* right padding hata diya */
    z-index: 4;
    box-shadow: 0 10px 20px rgba(249,115,22,0.5);
}

.card-ribbon span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111827;
    white-space: nowrap; /* text line break na ho */
}


/* CARD MEDIA + SLIDER */
.card-media {
    position: relative;
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #e5e7eb, #cbd5f5);
    overflow: hidden;
}

/* simple image (no slider) */
.card-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.25s ease;
}
.card:hover .card-media > img {
    transform: scale(1.06);
}

/* slider container */
.card-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.card-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.28s ease-out;
}
.card-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}
.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* slider nav arrows */
.card-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,0.65);
    color: #f9fafb;
    box-shadow: 0 6px 18px rgba(15,23,42,0.40);
}
.card-slider-prev { left: 8px; }
.card-slider-next { right: 8px; }

/* slider dots */
.card-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 4px;
}
.card-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(15,23,42,0.35);
}
.card-slider-dot.is-active {
    width: 14px;
    background: #facc15;
}

.card-media-top {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}
.location-pill {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255,255,255,0.94);
    color: #111827;
    box-shadow: 0 3px 7px rgba(15,23,42,0.24);
}
.location-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

.card-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}
.card-title a:hover {
    text-decoration: underline;
}
.card-location {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 4px 0 4px;
    font-size: 11px;
}
.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #111827;
}
.meta-label {
    color: #6b7280;
}

.card-price {
    margin-bottom: 6px;
    font-size: 14px;
    color: #0f172a;
}
.card-price strong {
    font-size: 15px;
    color: #d4af37;
}
.card-price span {
    font-size: 12px;
    color: #6b7280;
    margin-left: 4px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    font-size: 11px;
    margin-top: 4px;
}

.portal-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* portal buttons (lighter & smaller) */
.portal-buttons-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.portal-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    color: #0b1120;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(15,23,42,0.15);
    text-decoration: none;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.portal-chip-icon {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    background: rgba(15,23,42,0.12);
    color: #f9fafb;
}
.portal-chip-label {
    white-space: nowrap;
}
.portal-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(15,23,42,0.20);
    filter: brightness(1.03);
}
.portal-bayut {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    border-color: rgba(22,101,52,0.12);
}
.portal-dubizzle {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #b91c1c;
    border-color: rgba(185,28,28,0.12);
}
.portal-other {
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    color: #1d4ed8;
    border-color: rgba(37,99,235,0.12);
}

/* Published date – force single line */
.card-date {
    color: #6b7280;
    text-align: right;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.status-badge {
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 10px;
    border: 1px solid rgba(37,99,235,0.35);
    color: #1d4ed8;
    background: #e0ecff;
}

.contact-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}
.btn-wa,
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-wa {
    border-color: #16a34a;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ecfdf5;
    box-shadow: 0 6px 14px rgba(22,163,74,0.30);
}
.btn-wa:hover {
    filter: brightness(1.04);
}
/* LIGHTER: video button now softer orange */
.btn-video {
    border-color: #fdba74;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #7c2d12;
    box-shadow: 0 4px 10px rgba(249,115,22,0.18);
}
.btn-video:hover {
    filter: brightness(1.03);
}

/* icon circles – no WA text */
.btn-icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}
.btn-icon-wa {
    background: rgba(22,163,74,0.95);
    border-color: rgba(240,253,244,0.9);
    box-shadow: 0 0 0 1px rgba(21,128,61,0.35) inset;
}
.btn-icon-wa::before {
    content: "";
}
.btn-icon-video {
    background: rgba(248,113,22,0.95);
    border-color: rgba(255,247,237,0.9);
    box-shadow: 0 0 0 1px rgba(194,65,12,0.35) inset;
}
.btn-icon-video::before {
    content: "▶";
    color: #fff7ed;
    font-size: 8px;
    margin-left: 1px;
}

.empty {
    margin-top: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}
.view-all-wrap {
    margin-top: 22px;
    text-align: center;
}
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.9);
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    text-decoration: none;
}
.btn-view-all:hover {
    border-color: #4f46e5;
}

/* HERO VIDEO SECTION */
.hero-video {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.9);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(3, 7, 18, 0.75),
        rgba(3, 7, 18, 0.45)
    );
    backdrop-filter: blur(2px);
}
.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.hero-left {
    max-width: 600px;
    color: white;
    animation: fadeSlide 1s ease;
}
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 12px;
}
.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-left h1 span {
    color: #d4af37;
}
.hero-left p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 24px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-btn {
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}
.hero-primary {
    background: linear-gradient(135deg, #d4af37, #facc15);
    color: #020617;
}
.hero-secondary {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}
.hero-stats {
    margin-top: 25px;
    display: flex;
    gap: 22px;
    font-size: 13px;
}
.hero-stats strong {
    font-size: 18px;
    display: block;
}
.hero-stats span {
    opacity: 0.85;
}
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LIGHT ANIMATED BACKGROUND FOR PROPERTIES SECTION ===== */
#properties {
    position: relative;
    margin-top: 26px;
}
#properties::before {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(circle at 0% 0%, rgba(129,140,248,0.16), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(52,211,153,0.16), transparent 55%);
    opacity: 0.75;
    pointer-events: none;
    z-index: -1;
    animation: propBgFloat 18s ease-in-out infinite alternate;
}
@keyframes propBgFloat {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-20px, 16px, 0); }
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-section {
    position: relative;
    max-width: 1280px;
    margin: 50px auto 40px;
    padding: 32px 20px 40px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(59,130,246,0.20), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(52,211,153,0.20), transparent 60%),
        #f9fafb;
    box-shadow:
        0 32px 70px rgba(15,23,42,0.20),
        inset 0 0 0 1px rgba(226,232,240,0.9);
}
.why-section::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: conic-gradient(
        from 0deg,
        rgba(59,130,246,0.18),
        rgba(236,72,153,0.14),
        rgba(250,204,21,0.18),
        rgba(59,130,246,0.18)
    );
    opacity: 0.7;
    filter: blur(40px);
    animation: whySpin 18s linear infinite;
}
@keyframes whySpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.02); }
}
.why-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 26px;
    align-items: center;
}
.why-left {
    color: #020617;
}
.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: #ffffff;
    color: #d4af37;
    box-shadow: 0 6px 16px rgba(15,23,42,0.14);
}
.why-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle,#facc15,#f97316);
}
.why-left h2 {
    margin: 12px 0 8px;
    font-size: 26px;
    line-height: 1.3;
}
.why-left p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}
.why-points {
    padding-left: 18px;
    margin: 0;
    list-style: none;
}
.why-points li {
    position: relative;
    font-size: 13px;
    color: #111827;
    margin-bottom: 6px;
}
.why-points li::before {
    content: "•";
    position: absolute;
    left: -12px;
    color: #facc15;
}

.why-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.why-card {
    position: relative;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow:
        0 18px 40px rgba(15,23,42,0.20),
        0 0 0 1px rgba(226,232,240,0.9);
    font-size: 13px;
    color: #111827;
    overflow: hidden;
    transform-origin: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,rgba(255,255,255,0.8),transparent 40%,rgba(255,255,255,0.9),transparent 70%);
    opacity: 0;
    transform: translateX(-40%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.why-card:hover::after {
    opacity: 1;
    transform: translateX(40%);
}
.why-card:hover {
    transform: translateY(-4px) rotate3d(1,-1,0,4deg);
    box-shadow: 0 24px 60px rgba(15,23,42,0.28);
}
.why-card h3 {
    margin: 6px 0 4px;
    font-size: 14px;
}
.why-card p {
    margin: 0;
    font-size: 12px;
    color: #4b5563;
}
.why-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, #facc15, #f97316);
    color: #111827;
    font-size: 16px;
    box-shadow: 0 10px 22px rgba(249,115,22,0.55);
}

/* subtle float animation on cards */
.why-card-1 { animation: whyFloat 6s ease-in-out infinite alternate; }
.why-card-2 { animation: whyFloat 7s ease-in-out infinite alternate 0.4s; }
.why-card-3 { animation: whyFloat 7.5s ease-in-out infinite alternate 0.8s; }
.why-card-4 { animation: whyFloat 6.5s ease-in-out infinite alternate 1.2s; }

@keyframes whyFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-6px) scale(1.02); }
}

/* ================= HOW IT WORKS – FINAL CTA (LIGHT THEME) ================= */
.how-section {
    position: relative;
    max-width: 1280px;
    margin: 40px auto 30px;
    padding: 34px 20px 40px;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 0%, rgba(250,204,21,0.22), transparent 55%),
        radial-gradient(circle at 85% 100%, rgba(59,130,246,0.18), transparent 55%),
        #fefce8;
    color: #111827;
    box-shadow:
        0 30px 60px rgba(15,23,42,0.25),
        0 0 0 1px rgba(251,191,36,0.35);
}
.how-orbit {
    position: absolute;
    inset: -20%;
    border-radius: 999px;
    border: 1px dashed rgba(234,179,8,0.55);
    opacity: 0.5;
    animation: howOrbitSpin 30s linear infinite;
}
.how-orbit-2 {
    inset: -10%;
    animation-duration: 40s;
    animation-direction: reverse;
}
@keyframes howOrbitSpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.08); }
}

.how-inner {
    position: relative;
    z-index: 1;
}
.how-head {
    max-width: 650px;
    margin: 0 auto 22px;
    text-align: center;
}
.how-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(250,204,21,0.65);
    color: #92400e;
    box-shadow: 0 10px 22px rgba(250,204,21,0.45);
}
.how-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle,#facc15,#f97316);
}
.how-head h2 {
    margin: 10px 0 8px;
    font-size: 24px;
    color: #111827;
}
.how-head h2 span {
    color: #d97706;
}
.how-head p {
    font-size: 13px;
    color: #4b5563;
}

/* steps */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.how-card {
    position: relative;
    border-radius: 18px;
    padding: 16px 14px 18px;
    background: radial-gradient(circle at 0 0, rgba(250,204,21,0.25), transparent 65%),
                #ffffff;
    border: 1px solid rgba(250,204,21,0.40);
    box-shadow:
        0 18px 45px rgba(15,23,42,0.20),
        0 0 0 1px rgba(249,250,251,0.9);
    font-size: 13px;
    color: #1f2937;
    overflow: hidden;
    transform-origin: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.how-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,rgba(255,255,255,0.8),transparent 45%,rgba(255,255,255,0.95),transparent 75%);
    opacity: 0;
    transform: translateX(-40%);
    transition: transform 0.55s ease, opacity 0.55s ease;
}
.how-card:hover::after {
    opacity: 1;
    transform: translateX(40%);
}
.how-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 26px 60px rgba(15,23,42,0.30);
}
.how-card h3 {
    margin: 8px 0 6px;
    font-size: 14px;
    color: #111827;
}
.how-card p {
    margin: 0;
    font-size: 12px;
    color: #4b5563;
}
.how-mini {
    margin-top: 8px;
    font-size: 11px;
    color: #92400e;
}

/* step badge with orbiting ring (yellow icon kept same) */
.how-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.how-step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle,#facc15,#f97316);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    color:#111827;
    font-weight:700;
    box-shadow:0 10px 22px rgba(250,204,21,0.55);
}
.how-step-ring {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px dashed rgba(251,191,36,0.8);
    animation: howRing 4s linear infinite;
}
@keyframes howRing {
    0% { transform: rotate(0deg) scale(0.98); opacity: 0.8; }
    50% { transform: rotate(180deg) scale(1.05); opacity: 1; }
    100% { transform: rotate(360deg) scale(0.98); opacity: 0.8; }
}

/* give each card slight floating */
.how-card-1 { animation: howFloat 7s ease-in-out infinite alternate; }
.how-card-2 { animation: howFloat 8s ease-in-out infinite alternate 0.5s; }
.how-card-3 { animation: howFloat 8.5s ease-in-out infinite alternate 1s; }

@keyframes howFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-6px) scale(1.02); }
}

/* bottom CTA bar */
.how-cta-bar {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(90deg,#ffffff,#fef9c3);
    border: 1px solid rgba(250,204,21,0.60);
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    justify-content: space-between;
    box-shadow: 0 18px 40px rgba(202,138,4,0.35);
}
.how-cta-text {
    max-width: 620px;
}
.how-cta-label {
    display:block;
    font-size:11px;
    font-weight:600;
    color:#92400e;
    margin-bottom:2px;
}
.how-cta-text p {
    margin:0;
    font-size:12px;
    color:#4b5563;
}
.how-cta-btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#ecfdf5;
    text-decoration:none;
    box-shadow:0 14px 30px rgba(22,163,74,0.60);
}
.how-cta-btn:hover {
    filter:brightness(1.06);
}
.how-cta-dot {
    width:10px;
    height:10px;
    border-radius:999px;
    background:#fef9c3;
}
.how-cta-arrow {
    font-size:13px;
}

/* ===== GOOGLE REVIEWS CONTAINER (width bada + 3 cards) ===== */
.gr-section,
.google-reviews-section {
    max-width: 1280px;
    margin: 40px auto 30px;
    padding: 0 20px;
}

/* common inner wrapper guesses:
   agar google_reviews.php me .reviews-wrapper / .reviews-row / .reviews-grid hai
   to teenon pe flex laga diya */
.google-reviews-section .reviews-wrapper,
.google-reviews-section .reviews-row,
.google-reviews-section .reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* review card: PC pe 3 per row approx */
.google-reviews-section .review-card,
.gr-section .review-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
}

/* agar tumne slider structure diya ho (.reviews-slider, .reviews-track) to bhi 3 at a time */
.reviews-slider {
    position: relative;
    overflow: hidden;
}
.reviews-track {
    display: flex;
    gap: 16px;
}

/* =============== RESPONSIVE =============== */

@media (max-width: 900px) {
    .hero-video {
        height: 72vh;
    }
    .hero-left h1 {
        font-size: 32px;
    }
    .hero-left p {
        font-size: 14px;
    }

    .why-inner {
        grid-template-columns: 1fr;
    }
    .why-right {
        grid-template-columns: 1fr 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    /* MOBILE: sirf first 4 cards show, baaki hide */
    .grid .card:nth-child(n+5) {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }
    .card {
        width: 100% !important;
    }
    .card-media {
        height: 200px;
    }
    .card-title {
        font-size: 14px;
    }
    .card-location {
        font-size: 11px;
    }
    .card-meta {
        font-size: 10px;
    }
    .card-price {
        font-size: 13px;
    }
    .card-price strong {
        font-size: 14px;
    }
    .btn-wa,
    .btn-video {
        font-size: 9px;
        padding: 5px 10px;
        gap: 4px;
    }
    .location-pill {
        font-size: 10px;
        padding: 3px 8px;
    }
    .section-title {
        font-size: 18px;
    }
    .section-sub {
        font-size: 12px;
    }
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .card-date {
        font-size: 10px;
    }

    .section-header {
        align-items: flex-start;
    }
    .section-actions {
        margin-top: 4px;
        width: 100%;
        justify-content: flex-start;
    }

    .why-section {
        padding-inline: 16px;
    }
    .why-right {
        grid-template-columns: 1fr;
    }

    .how-section {
        padding-inline: 16px;
    }
    .how-cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .how-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* reviews mobile – 1 per row */
    .google-reviews-section .review-card,
    .gr-section .review-card {
        flex: 1 1 100%;
        min-width: 0;
    }
}
