    /* assets/css/style.css */
    :root {
        --navy-dark: #0A0F1A;
        --navy: #111A2C;
        --gold: #D4AF37;
        --gold-light: #F3E5AB;
        --gold-dark: #9A7B20;
        --white: #FFFFFF;
        --light-grey: #F5F5F5;
        --grey: #8A8A8A;
        --black: #000000;
        --text-dark: #333333;

        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Inter', sans-serif;
    }

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

    body.dark-theme {
        background-color: var(--navy-dark);
        color: var(--white);
        font-family: var(--font-sans);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-serif);
        font-weight: 500;
    }

    .section-heading {
        font-size: 2.5rem;
        color: var(--white);
        margin-bottom: 2rem;
    }

    .text-center {
        text-align: center;
    }

    .text-white {
        color: var(--white);
    }

    .text-light {
        color: var(--light-grey);
    }

    .gold-text {
        color: var(--gold);
    }

    .mt-1 {
        margin-top: 0.5rem;
    }

    .mt-2 {
        margin-top: 1rem;
    }

    .mt-3 {
        margin-top: 1.5rem;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .mb-2 {
        margin-bottom: 1rem;
    }

    .mb-3 {
        margin-bottom: 1.5rem;
    }

    .mb-4 {
        margin-bottom: 2rem;
    }

    .mr-1 {
        margin-right: 0.5rem;
    }

    .ml-2 {
        margin-left: 0.5rem;
    }

    .d-inline-block {
        display: inline-block;
    }

    .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .full-width {
        width: 100%;
    }

    .bg-darker {
        background-color: #070a12;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    section {
        padding: 6rem 0;
    }

    section.container {
        margin-bottom: 5rem;
    }

    /* Badges */
    .badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
        font-weight: 600;
    }

    .gold-badge {
        background-color: rgba(212, 175, 55, 0.1);
        color: var(--gold);
        border: 1px solid var(--gold);
    }

    .badge-status {
        background-color: var(--gold);
        color: var(--navy);
        padding: 4px 8px;
        font-size: 0.75rem;
        font-weight: bold;
        border-radius: 2px;
    }

    .badge-type {
        background-color: rgba(0, 0, 0, 0.7);
        color: var(--white);
        padding: 4px 8px;
        font-size: 0.75rem;
        border-radius: 2px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 0;
        font-family: var(--font-sans);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        border: 1px solid transparent;
        transition: all 0.3s;
        font-size: 0.9rem;
    }

    .btn-primary {
        background: var(--white);
        color: var(--navy);
    }

    .btn-primary:hover {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-outline:hover {
        background: var(--white);
        color: var(--navy);
    }

    .btn-gold {
        background: var(--gold);
        color: var(--navy);
        font-weight: 600;
    }

    .btn-gold:hover {
        background: var(--gold-dark);
        color: var(--white);
    }

    /* Header */
    .fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #0f1522;
        z-index: 1000;
        border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    }

    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 2rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        max-width: 1600px;
        margin: 0 auto;
    }

    .top-bar-left {
        display: flex;
        gap: 1.5rem;
    }

    .top-contact {
        font-size: 0.8rem;
        font-weight: 600;
        font-family: var(--font-sans);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        letter-spacing: 0.5px;
    }

    .top-contact.whatsapp i {
        color: #25D366;
        font-size: 0.95rem;
    }

    .top-contact.phone i {
        color: var(--gold);
        font-size: 0.95rem;
    }

    .top-bar-right {
        display: flex;
        gap: 0.8rem;
    }

    .social-circle {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.85rem;
    }

    .social-circle:hover {
        filter: brightness(1.2);
        color: white;
    }

    .social-circle.fb {
        background-color: #1877F2;
    }

    .social-circle.ig {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .social-circle.in {
        background-color: #0A66C2;
    }

    .social-circle.yt {
        background-color: #FF0000;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 2rem;
        max-width: 1600px;
        margin: 0 auto;
    }

    .glow-logo {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
    }

    .logo img {
        height: 40px;
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--light-grey);
    }

    .main-nav a:hover {
        color: var(--gold);
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--navy);
        min-width: 150px;
        display: none;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 1rem 0;
        gap: 0 !important;
    }

    .dropdown.is-open .dropdown-menu {
        display: flex !important;
    }

    .dropdown-menu li a {
        padding: 0.5rem 1.5rem;
        display: block;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .theme-toggles {
        display: flex;
        border: 1px solid rgba(212, 175, 55, 0.5);
        border-radius: 20px;
        overflow: hidden;
    }

    .theme-pill {
        background: transparent;
        border: none;
        color: var(--white);
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        font-family: var(--font-sans);
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s;
    }

    .theme-pill.active {
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
    }

    .btn-theme-selector {
        background: var(--white);
        color: var(--navy);
        border: none;
        padding: 0.4rem 1.2rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        font-family: var(--font-sans);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-theme-selector i {
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: none;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Hero Slider */
    .hero-slider {
        position: relative;
        height: 100vh;
        padding: 0;
        overflow: hidden;
        margin-top: 0;
        /* Header overlaps */
    }

    .slider-container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        background-size: cover;
        background-position: center;
    }

    .slide.active {
        opacity: 1;
        z-index: 10;
    }

    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10, 15, 26, 1) 0%, rgba(10, 15, 26, 0.5) 50%, rgba(10, 15, 26, 0.3) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 4.5rem;
        margin: 1rem 0;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1.2rem;
        font-family: var(--font-sans);
        margin-bottom: 3rem;
        color: var(--light-grey);
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    /* Property Slide Spec */
    .property-slide .slide-content {
        text-align: left;
        align-items: flex-start;
        max-width: 800px;
        margin-left: 10%;
        margin-top: 10%;
    }

    .prop-badge {
        background: var(--gold);
        color: var(--navy);
        padding: 5px 15px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.8rem;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .prop-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .prop-desc {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 1rem;
        color: var(--light-grey);
    }

    .prop-location {
        font-size: 1.1rem;
        color: var(--gold);
        margin-bottom: 2rem;
    }

    .prop-details-grid {
        display: flex;
        gap: 3rem;
        margin-bottom: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 2rem;
    }

    .detail-label {
        display: block;
        font-size: 0.8rem;
        color: var(--grey);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .detail-value {
        font-size: 1.2rem;
        font-weight: 600;
        font-family: var(--font-sans);
    }

    .slider-controls {
        position: absolute;
        bottom: 5%;
        right: 5%;
        z-index: 20;
        display: flex;
        gap: 1rem;
    }

    .slider-btn {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }

    .slider-btn:hover {
        background: var(--gold);
        color: var(--navy);
        border-color: var(--gold);
    }

    /* Property Search */
    .property-search-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        z-index: 30;
        position: relative;
        margin-top: -5rem;
    }

    .search-layout {
        display: flex;
        background: var(--navy);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 4px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .search-title-block {
        flex: 1;
        padding: 4rem;
        background: linear-gradient(135deg, var(--navy) 0%, #1a253c 100%);
    }

    .search-title-block h4 {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        font-family: var(--font-sans);
    }

    .search-title-block h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .search-title-block p {
        color: var(--light-grey);
        margin-bottom: 3rem;
    }

    .search-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.9rem;
        color: var(--light-grey);
    }

    .stat-item i {
        color: var(--gold);
        font-size: 1.2rem;
        min-width: 20px;
    }

    .search-form-block {
        flex: 1;
        padding: 4rem;
        background: var(--white);
        color: var(--text-dark);
        display: flex;
        align-items: center;
    }

    .search-box {
        width: 100%;
    }

    .form-grid {
        display: grid;
        gap: 1.5rem;
    }

    .input-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--grey);
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .input-group input,
    .input-group select {
        width: 100%;
        padding: 1rem;
        border: 1px solid #ddd;
        border-radius: 2px;
        font-family: var(--font-sans);
        font-size: 1rem;
        background: #f9f9f9;
    }

    .input-group input:focus,
    .input-group select:focus {
        outline: none;
        border-color: var(--gold);
        background: var(--white);
    }

    /* Marquees */
    .marquee-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: var(--gold);
        color: var(--navy);
        padding: 1.2rem 0;
        margin-bottom: 5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        clear: both;
        display: block;
    }

    .marquee-track {
        display: flex;
        white-space: nowrap;
        animation: marquee 30s linear infinite;
    }

    .marquee-track span {
        padding: 0 1rem;
    }

    .marquee-track .dot {
        color: rgba(17, 26, 44, 0.3);
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .bank-marquee {
        background: #1a253c;
        color: var(--white);
        border: none;
    }

    .bank-marquee .dot {
        color: var(--gold);
    }

    .trust-marquee {
        background: var(--navy);
        color: var(--white);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    /* Property Types */
    .types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .type-card {
        position: relative;
        height: 350px;
        border-radius: 4px;
        overflow: hidden;
        display: block;
    }

    .type-card-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.7s ease;
        background-color: #1a253c;
        /* fallback */
    }

    .type-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .type-card:hover .type-card-bg {
        transform: scale(1.1);
    }

    .type-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2rem;
        z-index: 2;
    }

    .type-card-content h3 {
        font-size: 1.5rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .type-card-content p {
        color: var(--gold);
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Who We Are */
    .who-we-are-layout {
        display: flex;
        gap: 4rem;
        align-items: center;
        padding: 2rem 0;
        /* ensure it doesn't collapse */
    }

    .content-side {
        flex: 1;
    }

    .body-paragraphs p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #ccc;
    }

    .services-list {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .service-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.05rem;
        font-family: var(--font-serif);
        margin-bottom: 0;
        color: var(--white);
    }

    .service-row span {
        color: var(--gold);
        font-size: 0.85rem;
        font-family: var(--font-sans);
    }

    .stats-side {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        background: #111A2C;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
    }

    .stat-card:hover {
        border-color: var(--gold);
        transform: translateY(-5px);
        background: #162238;
    }

    .stat-card h4 {
        font-size: 1.8rem;
        color: var(--gold);
        margin-bottom: 0;
        line-height: 1.2;
    }

    .stat-card h4+p,
    .stat-card p {
        margin-top: 1rem;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--white);
        font-weight: 500;
    }

    /* Project Cards */
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 3rem;
    }

    .nav-controls {
        display: flex;
        gap: 1rem;
    }

    .ctrl-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }

    .ctrl-btn:hover {
        background: var(--white);
        color: var(--navy);
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
    }

    .slider-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 2rem;
        padding-bottom: 1rem;
    }

    .slider-row::-webkit-scrollbar {
        display: none;
    }

    .slider-row .project-card {
        min-width: 380px;
        scroll-snap-align: start;
    }

    .project-card {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        color: var(--text-dark);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s;
    }

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .card-image {
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
        background-color: #e0e0e0;
    }

    .card-badges {
        position: absolute;
        top: 1rem;
        left: 1rem;
        display: flex;
        gap: 0.5rem;
    }

    .card-price {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        background: var(--white);
        color: var(--navy);
        padding: 0.5rem 1rem;
        font-weight: bold;
        font-size: 1.1rem;
        border-radius: 2px;
    }

    .card-body {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--navy);
        font-family: var(--font-serif);
    }

    .card-location {
        color: var(--grey);
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .card-specs {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }

    .spec {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.9rem;
    }

    .spec i {
        color: var(--gold);
    }

    .card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .developer-info {
        font-size: 0.8rem;
        color: var(--grey);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-link {
        color: var(--navy);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .btn-link:hover {
        color: var(--gold);
    }

    /* Developer Spotlight */
    .developer-spotlight {
        position: relative;
        padding-bottom: 2rem;
    }

    .developer-marquee-wrapper {
        position: relative;
        overflow: hidden;
        padding: 2rem 0;
    }

    .developer-track {
        display: flex;
        gap: 2rem;
        white-space: nowrap;
        animation: devMarquee 20s linear infinite;
    }

    .developer-track:hover {
        animation-play-state: paused;
    }

    @keyframes devMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .developer-card {
        min-width: 250px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 4px;
        transition: all 0.3s;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
    }

    .developer-card:hover {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.05);
    }

    .dev-logo-container {
        height: 80px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .dev-logo {
        max-height: 100%;
        max-width: 150px;
        width: auto;
        object-fit: contain;
        filter: grayscale(100%) brightness(200%);
        transition: filter 0.3s;
    }

    .developer-card:hover .dev-logo {
        filter: grayscale(0%) brightness(100%);
    }

    .dev-name {
        font-size: 1.2rem;
        color: var(--white);
    }

    .dev-props {
        color: var(--gold);
        font-size: 0.85rem;
    }

    /* Mortgage Banner */
    .mortgage-card {
        display: flex;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .banner-gradient {
        background: linear-gradient(135deg, #111A2C 0%, #1a253c 100%);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .mortgage-content {
        flex: 3;
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .mortgage-content::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 300px;
        background: url('../images/placeholder/dubai-skyline.png') center right no-repeat;
        opacity: 0.1;
        background-size: contain;
        pointer-events: none;
    }

    .feature-points {
        list-style: none;
        margin-top: 1.5rem;
    }

    .feature-points li {
        margin-bottom: 0.8rem;
        font-size: 1.05rem;
    }

    .mortgage-form-box {
        flex: 2;
        padding: 3rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-control {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        color: white;
        font-family: var(--font-sans);
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.15);
    }

    .success-message {
        background: rgba(0, 128, 0, 0.2);
        border: 1px solid #00ff00;
        padding: 2rem;
        text-align: center;
        border-radius: 4px;
        margin-top: 1rem;
    }

    /* YouTube Section */

    .yt-card {
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 16/9;
        cursor: pointer;
        min-width: 420px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .yt-thumbnail {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s;
    }

    .yt-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        transition: background 0.3s;
    }

    .yt-card:hover .yt-thumbnail {
        transform: scale(1.05);
    }

    .yt-card:hover::after {
        background: rgba(0, 0, 0, 0.1);
    }

    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(212, 175, 55, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        color: var(--navy);
        font-size: 1.5rem;
        padding-left: 5px;
        transition: all 0.3s;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    .yt-card:hover .play-btn {
        background: var(--white);
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }

    /* Video Modal */
    .video-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
    }

    .video-modal-content {
        position: relative;
        margin: 5% auto;
        width: 80%;
        max-width: 1000px;
        aspect-ratio: 16/9;
    }

    .close-modal {
        position: absolute;
        top: -40px;
        right: -40px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-modal:hover {
        color: var(--gold);
    }

    #ytPlayerContainer {
        width: 100%;
        height: 100%;
    }

    /* Footer */
    .site-footer {
        background: var(--navy-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 5rem;
    }

    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.3fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .footer-logo {
        max-width: 160px;
        height: auto;
        margin-bottom: 1.5rem;
    }

    .brand-desc {
        color: var(--grey);
        margin-bottom: 2rem;
        line-height: 1.6;
        font-size: 0.85rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        transition: all 0.3s;
    }

    .social-icon:hover {
        background: var(--gold);
        color: var(--navy);
    }

    .footer-heading {
        font-family: var(--font-sans);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
        color: var(--white);
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 1.2rem;
    }

    .footer-links a {
        color: var(--grey);
        font-size: 0.85rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 5px;
    }

    .contact-info {
        list-style: none;
    }

    .contact-info li {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.2rem;
        color: var(--grey);
        line-height: 1.5;
        font-size: 0.85rem;
    }

    .contact-info i {
        color: var(--gold);
        margin-top: 5px;
    }

    .contact-info a {
        color: var(--grey);
    }

    .contact-info a:hover {
        color: var(--gold);
    }

    .footer-badges {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-badges .badge {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        text-align: center;
        padding: 1rem;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2rem 0;
    }

    .footer-bottom-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--grey);
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        display: flex;
        gap: 2rem;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .blog-btn {
        border: 1px solid rgba(212, 175, 55, 0.5);
        padding: 0.3rem 1.2rem;
        border-radius: 2px;
        color: var(--gold) !important;
        font-weight: 600;
    }

    .blog-btn:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    .rating-row {
        display: flex;
        gap: 10px;
    }

    .rating-pill {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--grey);
        padding: 0.4rem 0.8rem;
        border-radius: 4px;
        font-size: 0.75rem;
        font-family: var(--font-sans);
        letter-spacing: 0.5px;
    }

    .footer-bottom-links a:hover {
        color: var(--gold);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .search-layout {
            flex-direction: column;
        }

        .search-title-block,
        .search-form-block {
            padding: 3rem;
        }

        .mortgage-card {
            flex-direction: column;
        }

        .who-we-are-layout {
            flex-direction: column;
        }

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {

        .main-nav,
        .header-actions .phone,
        .header-actions .whatsapp {
            display: none;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .hero-title {
            font-size: 3rem;
        }

        .prop-title {
            font-size: 2.5rem;
        }

        .prop-details-grid {
            flex-direction: column;
            gap: 1rem;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom-inner {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }