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

        :root {
            --primary-color: #2ecc71;
            --primary-dark: #27ae60;
            --secondary-color: #1a1a2e;
            --text-dark: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --border-color: #e5e5e5;
            --shadow: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-light: 0 5px 20px rgba(0,0,0,0.08);
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

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

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
        }

        /* Top Bar */
        .top-bar {
            background: var(--secondary-color);
            padding: 2px 0;
            font-size: 10px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

        .top-bar-left {
            display: flex;
            flex: 1;
            gap: 25px;
            color: rgba(255,255,255,0.8);
        }

        .top-bar-left a {
            color: rgba(255,255,255,0.8);
            white-space: nowrap;
        }

        .top-bar-left a:hover {
            color: var(--primary-color);
        }

        .top-bar-left span {
            color: rgba(255,255,255,0.8);
        }

        .top-bar-left i {
            margin-right: 8px;
            color: var(--primary-color);
        }

        .top-bar-left > a,
        .top-bar-left > span {
            display: inline-flex;
            align-items: baseline;
        }

        .top-bar-left > span i {
            flex-shrink: 0;
        }

        .top-bar-right {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .top-bar-right a {
            color: rgba(255,255,255,0.8);
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .top-bar-right a:hover {
            color: var(--primary-color);
            background: rgba(255,255,255,0.1);
        }

        .top-bar-flags {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-right: 8px;
            padding-right: 12px;
            border-right: 1px solid rgba(255,255,255,0.2);
        }

        .top-bar-flags span {
            font-size: 16px;
            line-height: 1;
        }

        .top-bar-flags .fi {
            width: 20px;
            height: 15px;
            border-radius: 2px;
        }

        .top-bar-flags .fi-np {
            margin-left: 4px;
        }

        /* Header */
        .header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-light);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 55px;
            width: auto;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-menu {
            display: flex;
            gap: 35px;
        }

        .nav-menu a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-color);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .header-cta .btn {
            font-weight: 700;
            font-size: 17px;
            padding: 8px 16px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary-color);
        }


        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary-color);
        }
        /* UAE Properties Dropdown */
        .has-dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            padding: 10px 15px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            min-width: auto;
            z-index: 1001;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }

        .dropdown-item {
            text-align: center;
            padding: 10px;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .dropdown-item:hover {
            background: #f8f9fa;
        }

        .dropdown-item .dropdown-img {
            width: 100%;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .dropdown-item .dropdown-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover .dropdown-img img {
            transform: scale(1.1);
        }

        .dropdown-item span {
            font-size: 11px;
            color: #333;
            font-weight: 500;
            display: block;
        }

        .dropdown-item:hover span {
            color: #c8a55b;
        }

        @media (max-width: 992px) {
            .dropdown-menu:not(.dropdown-simple) {
                display: none;
            }
        }



                /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #252545 100%);
            padding: 20px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #27ae60, var(--primary-color));
        }

        .page-hero-content {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }

        .page-hero-content h1 {
            color: #fff;
            font-size: 36px;
            margin-bottom: 12px;
        }

        .page-hero-content h1 em,
        .page-hero-content h1 span {
            color: var(--primary-color);
            font-style: normal;
        }

        .page-hero-content p {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            line-height: 1.6;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--light-bg);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .breadcrumb-list li a {
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .breadcrumb-list li a:hover {
            color: var(--primary-color);
        }

        .breadcrumb-list li.active {
            color: var(--primary-color);
            font-weight: 500;
        }

        .breadcrumb-list li i {
            color: var(--text-muted);
            font-size: 10px;
        }

        /* Property Grid Section */
        .property-grid-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
            position: relative;
            border-top: 1px solid #eee;
        }

        .property-grid-section .section-header {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .property-grid-section .section-header h2.rich-title {
            display: flex;
            align-items: center;
            gap: 0;
            font-size: 34px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin: 0;
            text-transform: uppercase;
        }

        .property-grid-section .rich-title .title-accent {
            color: var(--primary-color);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 34px;
            text-transform: uppercase;
        }

        .property-grid-section .rich-title .title-main {
            color: var(--secondary-color);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 34px;
            text-transform: uppercase;
        }

        /* Properties Grid */
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .rich-title .title-accent {
            color: var(--primary-color);
        }

        .rich-title .title-main {
            color: #333;
        }

        /* Property Card */
        .property-card {
            background: linear-gradient(165deg, #ffffff 0%, #faf9f7 100%);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            border: 1px solid rgba(201, 164, 86, 0.1);
        }

        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(201, 164, 86, 0.18);
            border-color: rgba(201, 164, 86, 0.25);
        }

        .property-card .card-image {
            display: block;
            position: relative;
            height: 175px;
            overflow: hidden;
            margin: 10px 10px 0 10px;
            border-radius: 12px;
        }

        .property-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            border-radius: 12px;
        }

        .property-card:hover .card-image img {
            transform: scale(1.05);
        }

        .property-card .card-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 6px 14px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(201, 164, 86, 0.35);
        }

        .property-card .card-content {
            padding: 10px 12px 12px;
        }

        .property-card .card-title-line {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: 6px;
            margin-bottom: 4px;
            line-height: 1.4;
            text-decoration: none;
            overflow: hidden;
            width: 100%;
        }

        .property-card .card-title-line:hover .card-project-name {
            color: var(--primary-color);
        }

        .property-card .card-developer {
            background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 10px;
            flex-shrink: 0;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
        }

        .property-card .card-project-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--secondary-color);
            font-family: 'Poppins', sans-serif;
            transition: color 0.3s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            min-width: 0;
        }

        .property-card .card-location {
            font-size: 11px;
            color: #777;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 3px;
            background: rgba(0,0,0,0.04);
            padding: 3px 8px;
            border-radius: 12px;
            white-space: nowrap;
            flex-shrink: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 40%;
        }

        .property-card .card-location i {
            font-size: 9px;
            color: var(--primary-color);
        }

        .property-card .card-details {
            margin: 4px 0;
        }

        .property-card .card-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 2px;
            margin-bottom: 2px;
            border-bottom: 1px dashed rgba(201, 164, 86, 0.25);
        }

        .property-card .card-price-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .property-card .card-price-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Poppins', sans-serif;
        }

        .property-card .card-payment-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px dashed rgba(201, 164, 86, 0.25);
        }

        .property-card .card-payment-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .property-card .card-payment-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--secondary-color);
            background: linear-gradient(135deg, rgba(201, 164, 86, 0.15) 0%, rgba(201, 164, 86, 0.08) 100%);
            padding: 2px 8px;
            border-radius: 20px;
        }

        .property-card .card-handover-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .property-card .card-handover-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .property-card .card-handover-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary-color);
        }


        .property-card .card-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 3px;
        }

        .property-card .card-bottom-row .card-location {
            font-size: 14px;
            color: #666;
            background: none;
            padding: 0;
            white-space: nowrap;
            overflow: hidden;
            max-width: 170px;
            display: flex;
            align-items: center;
        }

        .property-card .card-bottom-row .card-location i {
            flex-shrink: 0;
        }

        .location-marquee-wrap {
            overflow: hidden;
            display: inline-block;
            flex: 1;
            min-width: 0;
        }

        .location-marquee-text {
            display: inline-block;
            white-space: nowrap;
            animation: locationMarquee var(--marquee-duration, 8s) linear infinite;
        }

        @keyframes locationMarquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        .property-card .card-bottom-row .card-location i {
            color: var(--primary-color);
            font-size: 14px;
            margin-right: 5px;
        }

        .property-card .card-bottom-row .card-whatsapp-icon {
            margin-top: 0;
        }

        .property-card .card-whatsapp-icon {
            display: flex;
            justify-content: flex-end;
            margin-top: 6px;
        }

        .property-card .card-whatsapp-icon a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--primary-color), #27ae60);
            color: #fff;
            border-radius: 50%;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .property-card .card-whatsapp-icon a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        /* Footer */
        .footer {
            background: #ffffff;
            color: #333;
            padding: 0;
            position: relative;
            border-top: 1px solid #eee;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #27ae60, var(--primary-color));
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            gap: 20px;
        }

        .footer-brand .logo img {
            height: 50px;
            
        }

        .footer-contact-info {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 12px;
            white-space: nowrap;
        }

        .footer-contact-item i {
            color: var(--primary-color);
            font-size: 14px;
        }

        .footer-contact-item a {
            color: #666;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--primary-color);
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 32px;
            height: 32px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 10px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #999;
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(201, 164, 86, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 90px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-color), #27ae60);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 28px;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        .floating-whatsapp::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), #27ae60);
            animation: whatsapp-pulse 2s ease-out infinite;
            z-index: -1;
        }

        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .properties-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

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

            .header-cta .btn {
                padding: 10px 15px;
                font-size: 12px;
            }
        }
        
        /* Simple Dropdown without images */
        .dropdown-menu.dropdown-simple {
            min-width: auto !important;
            padding: 10px 15px !important;
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 5px !important;
            align-items: center !important;
        }

        .dropdown-menu.dropdown-simple a {
            display: inline-block !important;
            padding: 8px 14px !important;
            color: #333 !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            transition: all 0.2s ease;
            white-space: nowrap !important;
            border-radius: 5px;
            border: none !important;
            position: static !important;
        }
        .dropdown-menu.dropdown-simple a + a::before {
            content: '';
            display: inline-block;
            width: 1.5px;
            height: 16px;
            background: var(--primary-color);
            margin-right: 12px;
            vertical-align: middle;
        }


        .dropdown-menu.dropdown-simple a:hover {
            background: #f8f9fa;
            color: var(--primary-color) !important;
        }

        .dropdown-menu.dropdown-simple a::after {
            display: none !important;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 2000;
            padding: 25px;
            transition: left 0.3s ease;
            box-shadow: var(--shadow);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-logo {
            margin-bottom: 25px;
            padding-top: 10px;
        }

        .mobile-menu-logo img {
            height: 45px;
        }

        .mobile-menu-nav {
            flex: 1;
        }

        .mobile-menu-nav > a,
        .mobile-dropdown > a.mobile-dropdown-toggle {
            display: block;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 500;
            font-size: 15px;
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .mobile-menu-nav > a:hover,
        .mobile-dropdown > a.mobile-dropdown-toggle:hover {
            color: var(--primary-color);
        }

        .mobile-dropdown {
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-dropdown > a.mobile-dropdown-toggle {
            border-bottom: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown > a.mobile-dropdown-toggle i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.active > a.mobile-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            display: none;
            padding-left: 15px;
            padding-bottom: 10px;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            display: block;
        }

        .mobile-dropdown-menu a {
            display: block;
            padding: 10px 0;
            font-size: 14px;
            color: #666;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-dropdown-menu a:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-menu a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-cta {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .mobile-menu-cta .btn {
            display: block;
            text-align: center;
            width: 100%;
            padding: 14px 20px;
        }

        .mobile-menu-contact {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-contact a {
            color: #666;
            font-size: 13px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-contact a i {
            color: var(--primary-color);
            width: 16px;
        }

        .mobile-menu-contact a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-social {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }

        .mobile-menu-social a {
            width: 40px;
            height: 40px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-menu-social a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Header & Navigation */
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .header-cta {
                gap: 10px;
            }

            .header-cta .btn {
                padding: 10px 15px;
                font-size: 12px;
            }

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

            /* Logo */
            .logo img {
                height: 45px;
            }

            /* Container */
            .container {
                padding: 0 15px;
            }

            /* Page Hero */
            .page-hero {
                padding: 15px 0;
            }

            .page-hero h1 {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .page-hero p {
                font-size: 14px;
            }

            .breadcrumb {
                padding: 10px 0;
            }

            /* Section Header */
            .property-grid-section {
                padding: 30px 0;
            }

            .property-grid-section .section-header h2.rich-title {
                font-size: 24px;
            }

            .property-grid-section .rich-title .title-accent,
            .property-grid-section .rich-title .title-main {
                font-size: 24px;
            }

            /* Footer Mobile */
            .footer-main {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 25px 0;
            }

            .footer-brand .logo img {
                height: 40px;
            }

            .footer-contact-info {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .footer-contact-item {
                justify-content: center;
                text-align: center;
                flex-wrap: wrap;
                white-space: normal;
            }

            .footer-contact-item span {
                max-width: 280px;
                line-height: 1.5;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-social a {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                padding: 15px 0;
            }

            /* Mobile menu button */
            .mobile-menu {
                width: 280px;
            }

            .mobile-menu-nav a {
                padding: 14px 0;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            /* Header */
            .logo img {
                height: 40px;
            }

            .header-cta .btn {
                padding: 8px 12px;
                font-size: 11px;
            }

            /* Page Hero */
            .page-hero h1 {
                font-size: 24px;
            }

            .page-hero p {
                font-size: 13px;
            }

            /* Footer */
            .footer-main {
                padding: 20px 0;
                gap: 18px;
            }

            .footer-brand .logo img {
                height: 35px;
            }

            .footer-contact-info {
                gap: 12px;
            }

            .footer-contact-item {
                font-size: 12px;
            }

            .footer-contact-item span {
                max-width: 250px;
                font-size: 12px;
            }

            .footer-social a {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .footer-bottom p {
                font-size: 11px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 10px;
            }

            .logo img {
                height: 35px;
            }

            .page-hero h1 {
                font-size: 20px;
            }
        }


        /* ========== CONTENT MOBILE OPTIMIZATION ========== */

        /* 768px - Tablet Breakpoint */
        @media (max-width: 768px) {
            /* About Page */
            .about-intro-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-intro-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .about-intro-stats .stat-item h3 {
                font-size: 28px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .mission-vision-card {
                padding: 25px;
            }

            .mission-vision-card h3 {
                font-size: 20px;
            }

            .style-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .style-item {
                padding: 20px;
            }

            /* Contact Page */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-form-wrapper {
                padding: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .contact-card {
                padding: 20px;
            }

            .contact-card-icon {
                width: 50px;
                height: 50px;
            }

            .map-section {
                height: 350px;
            }

            .map-section iframe {
                height: 350px;
            }

            .contact-social-links a {
                width: 40px;
                height: 40px;
            }

            /* Properties Listing */
            .emirates-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .properties-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .property-card .card-content {
                padding: 15px;
            }

            .category-header h3 {
                font-size: 20px;
            }

            /* Property Detail */
            .property-hero-grid {
                flex-direction: column;
            }

            .gallery-section {
                width: 100%;
            }

            .property-info-card {
                position: static;
                width: 100%;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .gallery-thumbs {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }

            .thumb {
                height: 70px;
            }

            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .highlight-item {
                padding: 12px;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .amenity-item {
                padding: 15px;
            }

            .similar-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .floor-plans-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .payment-plan-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Careers Page */
            .careers-intro-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .careers-intro-content h2 {
                font-size: 28px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .benefit-card {
                padding: 25px 20px;
            }

            .benefit-card-icon {
                width: 60px;
                height: 60px;
            }

            .benefit-card-icon i {
                font-size: 24px;
            }

            .position-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 25px;
            }

            .position-card .btn {
                width: 100%;
                text-align: center;
            }

            .application-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .application-form-wrapper {
                padding: 25px;
            }

            .careers-cta-content h2 {
                font-size: 28px;
            }

            /* FAQs Page */
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .faq-item {
                padding: 20px;
            }

            /* Blogs Page */
            .blogs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .blog-card .card-content {
                padding: 20px;
            }

            /* List Property Page */
            .list-property-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .list-property-form {
                padding: 30px;
            }

            /* Emirate Pages */
            .emirate-hero-content h1 {
                font-size: 32px;
            }

            .emirate-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .emirate-stat {
                flex: 0 0 45%;
            }
        }

        /* 480px - Mobile Breakpoint */
        @media (max-width: 480px) {
            /* Section Header */
            .property-grid-section .section-header h2.rich-title {
                font-size: 20px;
            }

            .property-grid-section .rich-title .title-accent,
            .property-grid-section .rich-title .title-main {
                font-size: 20px;
            }

            /* About Page */
            .about-intro-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-intro-stats .stat-item h3 {
                font-size: 32px;
            }

            .about-intro-content h2 {
                font-size: 24px;
            }

            .mission-vision-card {
                padding: 20px;
            }

            .mission-vision-card h3 {
                font-size: 18px;
            }

            .style-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .style-item {
                padding: 15px;
            }

            .style-item h4 {
                font-size: 16px;
            }

            /* Contact Page */
            .contact-form-wrapper {
                padding: 20px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 15px;
                font-size: 14px;
            }

            .form-submit button,
            .contact-form button[type="submit"] {
                padding: 14px 20px;
                font-size: 14px;
            }

            .contact-card {
                padding: 15px;
            }

            .contact-card h4 {
                font-size: 14px;
            }

            .contact-card p {
                font-size: 13px;
            }

            .map-section {
                height: 280px;
            }

            .map-section iframe {
                height: 280px;
            }

            .contact-social-links a {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            /* Properties Listing */
            .emirates-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .emirate-card .card-img {
                height: 80px;
            }

            .emirate-card h3 {
                font-size: 12px;
            }

            .property-card .card-image {
                height: 180px;
            }

            .property-card .card-content {
                padding: 12px;
            }

            .property-card .card-title {
                font-size: 14px;
            }

            .property-card .card-price {
                font-size: 16px;
            }

            .badge {
                padding: 4px 8px;
                font-size: 10px;
            }

            .category-header h3 {
                font-size: 18px;
            }

            /* Property Detail */
            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .thumb {
                height: 60px;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .highlight-item {
                padding: 10px;
            }

            .highlight-item h4 {
                font-size: 13px;
            }

            .highlight-item p {
                font-size: 12px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .amenity-item {
                padding: 12px;
                flex-direction: row;
                justify-content: flex-start;
                gap: 12px;
            }

            .amenity-item i {
                font-size: 18px;
            }

            .amenity-item span {
                font-size: 13px;
            }

            .similar-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

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

            .property-info-card {
                padding: 20px;
            }

            .property-info-card h3 {
                font-size: 20px;
            }

            .content-section h2 {
                font-size: 22px;
            }

            .content-section p {
                font-size: 14px;
            }

            /* Careers Page */
            .careers-intro-content h2 {
                font-size: 22px;
            }

            .careers-intro-content p {
                font-size: 14px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .benefit-card {
                padding: 20px 15px;
            }

            .benefit-card-icon {
                width: 50px;
                height: 50px;
            }

            .benefit-card-icon i {
                font-size: 20px;
            }

            .benefit-card h4 {
                font-size: 16px;
            }

            .benefit-card p {
                font-size: 13px;
            }

            .position-card {
                padding: 20px;
            }

            .position-card h3 {
                font-size: 18px;
            }

            .position-card p {
                font-size: 13px;
            }

            .application-form-wrapper {
                padding: 20px;
            }

            .file-upload {
                padding: 20px;
            }

            .file-upload i {
                font-size: 24px;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .step-content h4 {
                font-size: 16px;
            }

            .careers-cta-content h2 {
                font-size: 22px;
            }

            .careers-cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .careers-cta-buttons .btn {
                width: 100%;
            }

            /* FAQs Page */
            .faq-item {
                padding: 15px;
            }

            .faq-question {
                font-size: 15px;
                padding-right: 30px;
            }

            .faq-answer {
                font-size: 13px;
            }

            /* Blogs Page */
            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-card .card-image {
                height: 180px;
            }

            .blog-card .card-content {
                padding: 15px;
            }

            .blog-card h3 {
                font-size: 16px;
            }

            /* List Property Page */
            .list-property-form {
                padding: 20px;
            }

            .list-property-info h3 {
                font-size: 20px;
            }

            /* Emirate Pages */
            .emirate-hero-content h1 {
                font-size: 26px;
            }

            .emirate-stat {
                flex: 0 0 100%;
            }

            .emirate-stat h3 {
                font-size: 28px;
            }
        }

        /* 360px - Small Mobile Breakpoint */
        @media (max-width: 360px) {
            /* General */
            .section-header h2 {
                font-size: 20px;
            }

            /* Section Header */
            .property-grid-section .section-header h2.rich-title {
                font-size: 16px;
            }

            .property-grid-section .rich-title .title-accent,
            .property-grid-section .rich-title .title-main {
                font-size: 16px;
            }

            /* About Page */
            .about-intro-content h2 {
                font-size: 20px;
            }

            .about-intro-stats .stat-item h3 {
                font-size: 28px;
            }

            .mission-vision-card {
                padding: 15px;
            }

            .mission-vision-card h3 {
                font-size: 16px;
            }

            /* Contact Page */
            .contact-form-wrapper {
                padding: 15px;
            }

            .contact-card {
                padding: 12px;
            }

            .map-section {
                height: 220px;
            }

            .map-section iframe {
                height: 220px;
            }

            /* Properties */
            .emirates-grid {
                gap: 8px;
            }

            .emirate-card .card-img {
                height: 60px;
            }

            .emirate-card h3 {
                font-size: 11px;
            }

            .property-card .card-image {
                height: 150px;
            }

            /* Property Detail */
            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
                gap: 5px;
            }

            .thumb {
                height: 50px;
            }

            .property-info-card {
                padding: 15px;
            }

            .content-section h2 {
                font-size: 20px;
            }

            /* Careers */
            .careers-intro-content h2 {
                font-size: 20px;
            }

            .position-card {
                padding: 15px;
            }

            .position-card h3 {
                font-size: 16px;
            }

            .application-form-wrapper {
                padding: 15px;
            }

            .step-number {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .careers-cta-content h2 {
                font-size: 20px;
            }

            /* FAQs */
            .faq-question {
                font-size: 14px;
            }

            /* Blogs */
            .blog-card .card-image {
                height: 150px;
            }

            .blog-card h3 {
                font-size: 15px;
            }

            /* Emirate Pages */
            .emirate-hero-content h1 {
                font-size: 22px;
            }
        }


        /* Emirate Filter Banner */
        .emirate-filter-banner {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
            border-radius: 8px;
            padding: 14px 20px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .emirate-filter-banner .filter-text {
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            font-weight: 400;
        }

        .emirate-filter-banner .filter-text strong {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: capitalize;
        }

        .emirate-filter-banner .filter-clear {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: rgba(255,255,255,0.8);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
        }

        .emirate-filter-banner .filter-clear:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .no-results-message {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }

        .no-results-message i {
            font-size: 48px;
            color: var(--border-color);
            margin-bottom: 16px;
        }

        .no-results-message h4 {
            font-size: 20px;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .no-results-message p {
            color: var(--text-light);
            font-size: 14px;
        }

        .property-card.hidden-by-filter {
            display: none !important;
        }

        @media (max-width: 480px) {
            .emirate-filter-banner {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                padding: 12px 16px;
            }
        }


        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0d1117;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .preloader-sketch {
            width: 320px;
            height: 180px;
        }

        .preloader-sketch svg {
            width: 100%;
            height: 100%;
        }

        .sky-line {
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .sky-main {
            stroke: #2ecc71;
            stroke-dasharray: 1200;
            stroke-dashoffset: 1200;
            animation: drawSky 0.7s ease forwards 0.05s;
        }

        .sky-windows {
            stroke: rgba(46,204,113,0.4);
            stroke-width: 1;
            stroke-dasharray: 800;
            stroke-dashoffset: 800;
            animation: drawSky 0.5s ease forwards 0.3s;
        }

        .sky-accent {
            stroke: #58d68d;
            stroke-width: 1.5;
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawSky 0.4s ease forwards 0.2s;
        }

        .sky-ground {
            stroke: rgba(46,204,113,0.3);
            stroke-width: 1;
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawSky 0.4s ease forwards 0s;
        }

        .sky-glow {
            fill: none;
            stroke: rgba(46,204,113,0.15);
            stroke-width: 3;
            stroke-dasharray: 1200;
            stroke-dashoffset: 1200;
            animation: drawSky 0.7s ease forwards 0.05s;
            filter: blur(3px);
        }

        @keyframes drawSky {
            to { stroke-dashoffset: 0; }
        }

        .preloader-text {
            margin-top: 28px;
            color: rgba(255,255,255,0.6);
            font-size: 11px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .preloader-progress {
            width: 160px;
            height: 2px;
            background: rgba(255,255,255,0.08);
            border-radius: 2px;
            margin-top: 12px;
            overflow: hidden;
        }

        .preloader-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #2ecc71, #58d68d);
            border-radius: 2px;
            animation: progressFill 0.8s ease forwards 0.1s;
            width: 0;
        }

        @keyframes progressFill {
            to { width: 100%; }
        }
    