 :root {
        --orange: #FC501D;
        --orange-dark: #d93e00;
        --navy: #0d1b2e;
        --dark: #111111;
        --text: #797E88;
        --white: #ffffff;
        --bg: #F8F8F8;
        --border: #eeeeee;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font);
        background: #fff;
        color: var(--dark);
    }

    /* ── BANNER ── */
    .pd-banner {
        position: relative;
        width: 100%;
        height: 460px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pd-banner__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .pd-banner__overlay {
        position: absolute;
        inset: 0;
        background: rgba(13, 27, 46, 0.75);
        z-index: 1;
    }

    .pd-banner__content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
    }

    .pd-banner__title {
        font-size: clamp(38px, 5.5vw, 72px);
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .pd-banner__breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
    }

    .pd-banner__breadcrumb a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 600;
    }

    .pd-banner__breadcrumb a:hover {
        opacity: 0.8;
    }

    .pd-banner__breadcrumb .sep {
        opacity: 0.7;
        font-size: 14px;
    }

    /* ── MAIN ── */
    .pd-section {
        padding: 80px 0 100px;
        background: #fff;
    }

    .pd-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* ── HERO IMAGE ── */
    .pd-hero-img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
        margin-bottom: 36px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    /* ── STATUS BADGE ── */
    .pd-status-badge {
        display: inline-block;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
        text-transform: capitalize;
    }

    .pd-status-badge.ongoing {
        background: #ECB719;
        color: #111;
    }

    .pd-status-badge.completed {
        background: #22c55e;
        color: #fff;
    }

    .pd-status-badge.upcoming {
        background: #3b82f6;
        color: #fff;
    }

    /* ── META STRIP ── */
    .pd-meta-strip {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 24px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin-bottom: 36px;
        flex-wrap: wrap;
    }

    .pd-meta-item {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 160px;
        padding: 0 24px;
        border-right: 1px solid var(--border);
    }

    .pd-meta-item:first-child {
        padding-left: 0;
    }

    .pd-meta-item:last-child {
        border-right: none;
    }

    .pd-meta-icon {
        width: 40px;
        height: 40px;
        background: rgba(252, 80, 29, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pd-meta-icon i {
        color: var(--orange);
        font-size: 16px;
    }

    .pd-meta-label {
        font-size: 12px;
        color: var(--text);
        font-weight: 500;
        margin-bottom: 2px;
    }

    .pd-meta-val {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
    }

    .pd-location-row {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--orange);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    /* ── RERA BADGE ── */
    .pd-rera-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
        color: #16a34a;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12.5px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    /* ── TWO COL ── */
    .pd-two-col {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 50px;
        align-items: start;
        margin-top: 40px;
    }

    /* ── LEFT ── */
    .pd-section-title {
        font-size: 28px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 16px;
        position: relative;
        padding-bottom: 14px;
    }

    .pd-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--orange);
        border-radius: 2px;
    }

    .pd-para {
        font-size: 15.5px;
        color: var(--text);
        line-height: 1.9;
        margin-bottom: 18px;
    }

    .pd-description-html {
        font-size: 15px;
        color: var(--text);
        line-height: 1.9;
    }

    .pd-description-html p {
        margin-bottom: 16px;
    }

    .pd-description-html h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
        margin: 24px 0 12px;
    }

    /* ── AMENITIES ── */
    .pd-amenities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 48px;
    }

    .pd-amenity-card {
        background: var(--bg);
        border: 1.5px solid var(--border);
        border-radius: 14px;
        padding: 18px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }

    .pd-amenity-card:hover {
        border-color: var(--orange);
        box-shadow: 0 8px 24px rgba(252, 80, 29, 0.1);
        transform: translateY(-3px);
    }

    .pd-amenity-icon {
        width: 42px;
        height: 42px;
        background: rgba(252, 80, 29, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pd-amenity-icon i {
        color: var(--orange);
        font-size: 17px;
    }

    .pd-amenity-info p {
        font-size: 11px;
        color: var(--text);
        margin-bottom: 2px;
    }

    .pd-amenity-info span {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--dark);
    }

    /* ── MEDIA TABS ── */
    .pd-media-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .pd-media-tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .pd-media-tab {
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        border: 1.5px solid var(--border);
        background: #fff;
        color: var(--dark);
        cursor: pointer;
        transition: all 0.2s;
        font-family: var(--font);
    }

    .pd-media-tab.active,
    .pd-media-tab:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }

    /* Tab panes */
    .pd-tab-pane {
        display: none;
        margin-bottom: 48px;
    }

    .pd-tab-pane.active {
        display: block;
    }

    /* Photos Grid */
    .pd-media-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .pd-media-main {
        grid-row: span 2;
        border-radius: 16px;
        overflow: hidden;
        height: 380px;
    }

    .pd-media-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .pd-media-main:hover img {
        transform: scale(1.04);
    }

    .pd-media-thumb {
        border-radius: 16px;
        overflow: hidden;
        height: 183px;
        cursor: pointer;
    }

    .pd-media-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .pd-media-thumb:hover img {
        transform: scale(1.04);
    }

    /* All gallery thumbs row */
    .pd-gallery-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-top: 14px;
    }

    .pd-gallery-row .pd-media-thumb {
        height: 120px;
    }

    /* Video Tab */
    .pd-video-wrap {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }

    .pd-video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .pd-video-placeholder {
        border-radius: 16px;
        overflow: hidden;
        height: 380px;
        position: relative;
        background: #111;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pd-video-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }

    .pd-video-placeholder span {
        position: absolute;
        font-size: 16px;
        color: #fff;
        font-weight: 600;
    }

    /* Floor Plan Tab */
    .pd-plan-img {
        width: 100%;
        border-radius: 16px;
        display: block;
        max-height: 500px;
        object-fit: contain;
        background: var(--bg);
    }

    .pd-plan-placeholder {
        border-radius: 16px;
        height: 300px;
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        color: var(--text);
    }

    .pd-plan-placeholder i {
        font-size: 40px;
        color: var(--border);
    }

    /* Map Tab */
    .pd-map-wrap {
        border-radius: 16px;
        overflow: hidden;
        height: 400px;
    }

    .pd-map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .pd-map-placeholder {
        border-radius: 16px;
        height: 400px;
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        color: var(--text);
    }

    .pd-map-placeholder i {
        font-size: 40px;
        color: var(--border);
    }

    /* Contact Form */
    .pd-contact-title {
        font-size: 26px;
        font-weight: 800;
        color: var(--dark);
        text-align: center;
        margin-bottom: 30px;
    }

    .pd-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .pd-input {
        width: 100%;
        padding: 14px 18px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-size: 14.5px;
        font-family: var(--font);
        color: var(--dark);
        background: var(--bg);
        outline: none;
        transition: border-color 0.2s;
    }

    .pd-input:focus {
        border-color: var(--orange);
        background: #fff;
    }

    .pd-input::placeholder {
        color: var(--text);
    }

    .pd-textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-size: 14.5px;
        font-family: var(--font);
        color: var(--dark);
        background: var(--bg);
        outline: none;
        min-height: 130px;
        resize: vertical;
        transition: border-color 0.2s;
        margin-bottom: 20px;
    }

    .pd-textarea:focus {
        border-color: var(--orange);
        background: #fff;
    }

    .pd-textarea::placeholder {
        color: var(--text);
    }

    .pd-submit-wrap {
        text-align: center;
    }

    .pd-submit-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        padding: 16px 38px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
        letter-spacing: 0.2px;
    }

    .pd-submit-btn:hover {
        background: var(--orange-dark);
        transform: translateY(-2px);
    }

    .pd-form-msg {
        text-align: center;
        margin-top: 12px;
        font-size: 14px;
        font-weight: 600;
        display: none;
    }

    .pd-form-msg.success {
        color: #22c55e;
    }

    .pd-form-msg.error {
        color: #ef4444;
    }

    /* ── SIDEBAR ── */
    .pd-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: sticky;
        top: 100px;
    }

    .pd-info-card {
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 18px;
        overflow: hidden;
    }

    .pd-info-card-header {
        background: var(--navy);
        padding: 18px 24px;
    }

    .pd-info-card-header h4 {
        font-size: 17px;
        font-weight: 800;
        color: #fff;
        margin: 0;
    }

    .pd-info-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 14px 24px;
        border-bottom: 1px solid var(--border);
        gap: 12px;
    }

    .pd-info-row:last-child {
        border-bottom: none;
    }

    .pd-info-key {
        font-size: 13.5px;
        color: var(--text);
        font-weight: 500;
        flex-shrink: 0;
    }

    .pd-info-val {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--dark);
        text-align: right;
    }

    .pd-info-val.orange {
        color: var(--orange);
    }

    /* Quick Enquiry CTA */
    .pd-enquiry-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        padding: 16px 24px;
        border-radius: 12px;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
        margin: 0 24px 24px;
    }

    .pd-enquiry-btn:hover {
        background: var(--orange-dark);
        transform: translateY(-2px);
        color: #fff;
    }

    /* Related */
    .pd-related-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 20px;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        transition: background 0.2s;
    }

    .pd-related-item:last-child {
        border-bottom: none;
    }

    .pd-related-item:hover {
        background: #fff9f7;
    }

    .pd-related-item img {
        width: 64px;
        height: 56px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .pd-related-item .ri-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        display: block;
        margin-bottom: 3px;
        transition: color 0.2s;
    }

    .pd-related-item:hover .ri-name {
        color: var(--orange);
    }

    .pd-related-item .ri-loc {
        font-size: 12.5px;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .pd-related-item .ri-loc i {
        color: var(--orange);
        font-size: 11px;
    }

    /* ── CTA STRIP ── */
    .pd-cta-strip {
        background: var(--navy);
        padding: 70px 0;
    }

    .pd-cta-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .pd-cta-text h2 {
        font-size: clamp(24px, 2.8vw, 40px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 8px;
    }

    .pd-cta-text p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.6);
    }

    .pd-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        padding: 16px 34px;
        border-radius: 50px;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s, transform 0.2s;
    }

    .pd-cta-btn:hover {
        background: var(--orange-dark);
        transform: translateY(-2px);
        color: #fff;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
        .pd-two-col {
            grid-template-columns: 1fr;
        }

        .pd-sidebar {
            position: static;
        }
    }

    @media (max-width: 768px) {
        .pd-banner {
            height: 300px;
        }

        .pd-container {
            padding: 0 20px;
        }

        .pd-hero-img {
            height: 280px;
        }

        .pd-meta-strip {
            gap: 16px;
        }

        .pd-meta-item {
            border-right: none;
            padding: 8px 0;
            min-width: 45%;
            flex: unset;
        }

        .pd-amenities-grid {
            grid-template-columns: 1fr 1fr;
        }

        .pd-form-grid {
            grid-template-columns: 1fr;
        }

        .pd-cta-wrap {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 480px) {
        .pd-media-grid {
            grid-template-columns: 1fr;
        }

        .pd-media-main {
            grid-row: span 1;
            height: 240px;
        }

        .pd-media-thumb {
            height: 200px;
        }

        .pd-amenities-grid {
            grid-template-columns: 1fr;
        }

        .pd-gallery-row {
            grid-template-columns: 1fr 1fr;
        }
    }
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --orange: #FC501D;
        --orange-dark: #d93e00;
        --yellow: #ECB719;
        --dark: #111111;
        --muted: #797E88;
        --white: #ffffff;
        --bg: #F8F8F8;
        --card-bg: #ffffff;
        --border: #e8e8e8;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    body { font-family: var(--font); background: var(--bg); }

    /* ─── BANNER ─── */
    .proj-banner {
        position: relative;
        width: 100%;
        height: 590px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .proj-banner__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        z-index: 0;
    }
    .proj-banner__overlay {
        position: absolute;
        inset: 0;
        background: rgba(20, 28, 45, 0.68);
        z-index: 1;
    }
    .proj-banner__content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
    }
    .proj-banner__title {
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.5px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .proj-banner__breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 500;
        color: #fff;
    }
    .proj-banner__breadcrumb a { color: var(--orange); text-decoration: none; font-weight: 600; transition: opacity .2s; }
    .proj-banner__breadcrumb a:hover { opacity: 0.8; }
    .proj-banner__breadcrumb .sep { color: #fff; font-size: 13px; opacity: 0.85; }
    @media (max-width: 768px) { .proj-banner { height: 300px; } .proj-banner__title { font-size: 38px; } }
    @media (max-width: 480px) { .proj-banner { height: 260px; } .proj-banner__title { font-size: 30px; } }

    /* ─── FILTER BAR ─── */
    .filter-bar-wrap {
        background: #fff;
        box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        padding: 28px 0;
        position: sticky;
        top: 0;
        z-index: 99;
    }
    .filter-bar {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .filter-select {
        flex: 1;
        min-width: 180px;
        height: 52px;
        border: 1.5px solid var(--border);
        border-radius: 50px;
        padding: 0 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
        font-family: var(--font);
        background: var(--bg);
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23797E88' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        transition: border-color .2s;
        outline: none;
    }
    .filter-select:focus { border-color: var(--orange); }
    .filter-btn {
        height: 52px;
        padding: 0 36px;
        background: var(--orange);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        font-family: var(--font);
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: background .2s, transform .2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }
    .filter-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }
    .filter-reset {
        height: 52px;
        padding: 0 24px;
        background: transparent;
        color: var(--muted);
        border: 1.5px solid var(--border);
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        font-family: var(--font);
        cursor: pointer;
        transition: all .2s;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }
    .filter-reset:hover { border-color: var(--orange); color: var(--orange); }
    @media (max-width: 640px) {
        .filter-bar { flex-direction: column; gap: 12px; padding: 0 20px; }
        .filter-select { width: 100%; min-width: unset; }
        .filter-btn { width: 100%; justify-content: center; }
    }

    /* ─── PROJECTS SECTION ─── */
    .projects-section {
        padding: 90px 0 60px;
        background: var(--bg);
    }
    .projects-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .section-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }
    .section-badge h5 {
        color: var(--orange);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font);
        margin: 0;
    }
    .section-heading {
        font-size: clamp(28px, 3vw, 46px);
        font-weight: 700;
        color: var(--dark);
        line-height: 1.15;
        margin-bottom: 54px;
        font-family: var(--font);
    }

    /* ─── PROJECTS GRID ─── */
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* ─── PROJECT CARD ─── */
    .proj-card {
        background: var(--card-bg);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    .proj-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(252, 80, 29, 0.16);
    }

    .proj-card__img-wrap {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        flex-shrink: 0;
    }
    .proj-card__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }
    .proj-card:hover .proj-card__img-wrap img { transform: scale(1.06); }

    .proj-card__location {
        position: absolute;
        top: 18px;
        left: 18px;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(6px);
        border-radius: 50px;
        padding: 7px 16px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
        font-family: var(--font);
        z-index: 2;
    }
    .proj-card__location svg {
        width: 14px;
        height: 14px;
        stroke: var(--orange);
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .proj-card__status {
        position: absolute;
        top: 18px;
        right: 18px;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        font-family: var(--font);
        letter-spacing: 0.5px;
        z-index: 2;
        text-transform: capitalize;
    }
    .proj-card__status.ongoing  { background: #ECB719; color: #111; }
    .proj-card__status.completed{ background: #22c55e; color: #fff; }
    .proj-card__status.upcoming { background: #3b82f6; color: #fff; }

    .proj-card__arrow {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: var(--orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        opacity: 0;
        transform: scale(0.7) translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        text-decoration: none;
    }
    .proj-card__arrow svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .proj-card:hover .proj-card__arrow {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .proj-card__body {
        padding: 24px 26px 28px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .proj-card__type {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--orange);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 8px;
        font-family: var(--font);
    }
    .proj-card__name {
        font-size: 22px;
        font-weight: 700;
        color: var(--dark);
        font-family: var(--font);
        line-height: 1.25;
        margin-bottom: 12px;
        transition: color 0.2s;
    }
    .proj-card:hover .proj-card__name { color: var(--orange); }
    .proj-card__desc {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 20px;
        flex: 1;
    }
    .proj-card__meta-row {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-top: 18px;
        border-top: 1px solid var(--border);
        flex-wrap: wrap;
    }
    .proj-card__meta-item {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        color: var(--muted);
        font-family: var(--font);
    }
    .proj-card__meta-item svg {
        width: 15px;
        height: 15px;
        stroke: var(--orange);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }
    .proj-card__read {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 13.5px;
        font-weight: 700;
        color: var(--dark);
        text-decoration: none;
        font-family: var(--font);
        transition: color 0.2s, gap 0.2s;
        margin-left: auto;
    }
    .proj-card__read:hover { color: var(--orange); gap: 11px; }
    .proj-card__read svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }
    .proj-card__read:hover svg { transform: translateX(3px); }

    /* No projects message */
    .no-projects {
        grid-column: 1 / -1;
        text-align: center;
        padding: 80px 20px;
        color: var(--muted);
        font-size: 16px;
    }
    .no-projects i { font-size: 48px; color: var(--border); margin-bottom: 16px; display: block; }

    /* ═══════════════════════════════
       COMPLETED PROJECTS SECTION
    ═══════════════════════════════ */
    .completed-section {
        background: #fff;
        padding: 100px 0 110px;
        overflow: hidden;
    }
    .completed-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .completed-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 56px;
        gap: 24px;
        flex-wrap: wrap;
    }
    .completed-header-right {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        font-family: var(--font);
        transition: color 0.2s, gap 0.2s;
        flex-shrink: 0;
    }
    .completed-header-right:hover { color: var(--orange); gap: 14px; }
    .completed-header-right svg {
        width: 38px;
        height: 38px;
        background: var(--orange);
        border-radius: 50%;
        padding: 10px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
        transition: background 0.2s, transform 0.2s;
    }
    .completed-header-right:hover svg { background: var(--orange-dark); transform: translateX(4px); }

    .completed-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    }
    .completed-row {
        display: grid;
        grid-template-columns: 280px 1fr;
        background: var(--card-bg);
        border-bottom: 1px solid var(--border);
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.6s ease, transform 0.6s ease, background 0.25s;
    }
    .completed-row:last-child { border-bottom: none; }
    .completed-row.visible { opacity: 1; transform: translateX(0); }
    .completed-row:hover { background: #fff9f7; }

    .completed-row__img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    .completed-row__body {
        padding: 28px 32px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    .completed-row__info { flex: 1; min-width: 200px; }
    .completed-row__num {
        font-size: 13px;
        font-weight: 700;
        color: var(--orange);
        letter-spacing: 1px;
        font-family: var(--font);
        margin-bottom: 6px;
    }
    .completed-row__name {
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
        font-family: var(--font);
        line-height: 1.25;
        margin-bottom: 8px;
        transition: color 0.2s;
    }
    .completed-row:hover .completed-row__name { color: var(--orange); }
    .completed-row__sub {
        font-size: 13.5px;
        color: var(--muted);
        font-family: var(--font);
    }
    .completed-row__tags {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-shrink: 0;
    }
    .completed-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 14px;
        border-radius: 50px;
        background: var(--bg);
        border: 1px solid var(--border);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--dark);
        font-family: var(--font);
        transition: background 0.2s, border-color 0.2s;
        white-space: nowrap;
    }
    .completed-row:hover .completed-tag { background: rgba(252,80,29,0.06); border-color: rgba(252,80,29,0.3); }
    .completed-tag svg { width: 13px; height: 13px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .completed-row__cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: var(--bg);
        border: 1.5px solid var(--border);
        border-radius: 50%;
        flex-shrink: 0;
        text-decoration: none;
        transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .completed-row__cta svg {
        width: 18px;
        height: 18px;
        stroke: var(--dark);
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.2s, transform 0.2s;
    }
    .completed-row:hover .completed-row__cta {
        background: var(--orange);
        border-color: var(--orange);
        transform: rotate(-45deg);
    }
    .completed-row:hover .completed-row__cta svg { stroke: #fff; }

    /* ─── STATS STRIP ─── */
    .stats-strip {
        position: relative;
        width: 100%;
        padding: 70px 0;
        overflow: hidden;
    }
    .stats-strip__bg {
        position: absolute;
        inset: 0;
       
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
    }
    .stats-strip__overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 12, 20, 0.82);
        z-index: 1;
    }
    .stats-strip__inner {
        position: relative;
        z-index: 2;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    .stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px; }
    .stat-number { display: flex; align-items: flex-end; justify-content: center; gap: 2px; margin-bottom: 12px; }
    .stat-number .counter { font-size: 56px; font-weight: 800; color: #fff; font-family: var(--font); line-height: 1; letter-spacing: -2px; }
    .stat-plus { font-size: 42px; font-weight: 800; color: var(--orange); font-family: var(--font); line-height: 1.1; }
    .stat-label { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.75); font-family: var(--font); letter-spacing: 0.8px; text-transform: uppercase; }
    .stat-sep { width: 1px; height: 70px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

    @media (max-width: 900px) {
        .projects-grid { grid-template-columns: 1fr; }
        .completed-row { grid-template-columns: 1fr; }
        .completed-row__img { height: 220px; }
        .stats-strip__inner { flex-wrap: wrap; gap: 40px; justify-content: center; }
        .stat-sep { display: none; }
        .stat-item { flex: 0 0 45%; }
    }
    @media (max-width: 640px) {
        .projects-wrap, .completed-wrap { padding: 0 20px; }
        .projects-section, .completed-section { padding: 60px 0; }
        .stat-item { flex: 0 0 100%; }
        .stats-strip__inner { padding: 0 20px; }
        .completed-row__body { padding: 20px; }
        .completed-header { flex-direction: column; align-items: flex-start; }
    }