        * {
            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);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

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

        /* Improve touch scrolling on iOS */
        .mobile-menu-nav {
            -webkit-overflow-scrolling: touch;
        }

        /* Tap highlight color */
        a, button {
            -webkit-tap-highlight-color: rgba(46, 204, 113, 0.2);
        }

        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: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            color: var(--primary-color);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 500;
        }

        .section-header h2 {
            font-size: 42px;
            margin-top: 10px;
            color: var(--secondary-color);
        }

        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 15px auto 0;
        }

        /* 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 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: 10px 0 20px 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;
            position: relative;
            top: 5px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text h1 {
            font-size: 22px;
            color: var(--secondary-color);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .logo-text span {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

        .nav-menu {
            display: flex;
            gap: 35px;
            position: relative;
            top: 4px;
        }

        .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;
            position: relative;
            top: 8px;
        }

        .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);
        }

        /* 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: 13px;
            color: #333;
            font-weight: 600;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

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

        /* 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: 15px !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;
        }

        /* Property Card */
        .property-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .property-image {
            position: relative;
            height: 260px;
            overflow: hidden;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .property-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: var(--white);
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .property-badge.rent {
            background: #28a745;
        }

        .property-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .property-favorite:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .property-favorite.active {
            background: #e74c3c;
            color: var(--white);
        }

        .property-content {
            padding: 25px;
        }

        .property-price {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .property-price span {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .property-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .property-title:hover {
            color: var(--primary-color);
        }

        .property-location {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-location i {
            color: var(--primary-color);
        }

        .property-features {
            display: flex;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .property-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-light);
        }

        .property-feature i {
            color: var(--primary-color);
        }

        /* Location Marquee */
        .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%); }
        }

        /* 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;
        }

        .footer-newsletter p {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 18px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 14px 25px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

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

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
        }

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

        .back-to-top:hover {
            background: var(--primary-dark);
            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;
            }
        }

        /* 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;
        }

        /* 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%; }
        }

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

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Responsive - 768px */
        @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;
            }

            /* Section Headers */
            .section-header h2 {
                font-size: 28px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
            }

            .footer-brand {
                align-items: center;
            }

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

            .footer-links ul {
                align-items: center;
            }

            .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;
            }

            /* Forms */
            .form-row {
                flex-direction: column;
            }

            .form-group {
                width: 100%;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px;
            }

            /* Property Features */
            .property-features {
                gap: 10px;
            }

            .property-feature {
                font-size: 12px;
            }
        }

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

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

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

            .property-features {
                gap: 10px;
            }

            .property-feature {
                font-size: 12px;
            }

            /* Footer improvements */
            .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;
            }

            /* Mobile menu improvements */
            .mobile-menu {
                width: 280px;
                padding: 25px 20px;
            }

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

            /* Better touch targets */
            .slider-nav-btn {
                width: 38px;
                height: 38px;
            }
        }

        /* Responsive - 360px */
        @media (max-width: 360px) {
            .header-cta .btn {
                padding: 8px 12px;
                font-size: 11px;
            }

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

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

            /* Section headers */
            .section-header h2 {
                font-size: 20px;
            }
        }

    /* Clean Inquiry Popup */
    .inquiry-popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 20px;
    }
    .inquiry-popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .inquiry-popup {
        background: #fff;
        border-radius: 8px;
        width: 100%;
        max-width: 550px;
        position: relative;
        transform: scale(0.9) translateY(20px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }
    .inquiry-popup-overlay.active .inquiry-popup {
        transform: scale(1) translateY(0);
    }
    .inquiry-popup-close {
        position: absolute;
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        background: var(--primary-color, #2ecc71);
        border: none;
        border-radius: 50%;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .inquiry-popup-close:hover {
        background: var(--primary-dark, #27ae60);
        transform: scale(1.1);
    }
    .inquiry-popup-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 20px 8px;
        gap: 12px;
    }
    .inquiry-popup-logo {
        max-width: 150px;
        height: auto;
    }
    .inquiry-popup-header h3 {
        color: var(--secondary-color, #1a1a2e);
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        letter-spacing: 0.5px;
    }
    .inquiry-popup-header p {
        color: #666;
        font-size: 14px;
        margin: -10px 0 0 0;
        padding-bottom: 15px;
    }
    .inquiry-popup-form {
        padding: 5px 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .inquiry-popup-form input,
    .inquiry-popup-form select {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        color: #333;
        background: #f9f9f9;
        transition: all 0.2s;
        outline: none;
    }
    .inquiry-popup-form input::placeholder {
        color: #888;
    }
    .inquiry-popup-form input:focus,
    .inquiry-popup-form select:focus {
        border-color: var(--primary-color, #2ecc71);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    }
    .inquiry-popup-form select {
        cursor: pointer;
        appearance: none;
        background: #f9f9f9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
    }
    .inquiry-popup-form select:focus {
        background-color: #fff;
    }
    .inquiry-field-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .inquiry-field-group label {
        font-size: 14px;
        color: #333;
        font-weight: 400;
    }
    .inquiry-field-group label span {
        color: #e74c3c;
    }
    .inquiry-consent-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .inquiry-consent-label input[type="checkbox"] {
        width: 18px !important;
        height: 18px;
        padding: 0 !important;
        accent-color: var(--primary-color, #2ecc71);
        cursor: pointer;
    }
    .inquiry-submit-btn {
        padding: 14px 20px;
        background: var(--primary-color, #2ecc71);
        border: none;
        border-radius: 4px;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 5px;
    }
    .inquiry-submit-btn:hover {
        background: var(--primary-dark, #27ae60);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    }
    .inquiry-success {
        display: none;
        text-align: center;
        padding: 50px 35px;
    }
    .inquiry-success.show {
        display: block;
    }
    .inquiry-success > i {
        font-size: 60px;
        color: var(--primary-color, #2ecc71);
        margin-bottom: 15px;
    }
    .inquiry-success p {
        color: #666;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .inquiry-success-btn {
        padding: 12px 30px;
        background: var(--secondary-color, #1a1a2e);
        border: none;
        border-radius: 4px;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
    }
    .inquiry-success-btn:hover {
        background: var(--primary-color, #2ecc71);
    }
    .inquiry-popup-form.hidden,
    .inquiry-popup-header.hidden {
        display: none;
    }
    @media (max-width: 480px) {
        .inquiry-popup { max-width: 100%; margin: 10px; }
        .inquiry-popup-header { padding: 15px 20px 8px; gap: 3px; }
        .inquiry-popup-logo { max-width: 85px; }
        .inquiry-popup-header h3 { font-size: 14px; }
        .inquiry-popup-header p { font-size: 10px; }
        .inquiry-popup-form { padding: 12px 20px 20px; gap: 10px; }
        .inquiry-popup-close { top: -10px; right: -10px; width: 28px; height: 28px; font-size: 18px; }
    }
