        :root {
            --primary-color: #1a4d2e;
            --secondary-color: #c8a47e;
            --accent-color: #d4af37;
            --text-dark: #1f1f1f;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
            --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: var(--transition);
            padding: 8px 0;
            display: block;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 250px;
            box-shadow: var(--shadow);
            border-radius: 8px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 12px 25px;
            display: block;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
            font-size: 18px;
        }

        .dropdown-item:hover {
            background: var(--bg-light);
            color: var(--primary-color);
            padding-left: 30px;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* Hero Slider */
        /*.hero-slider {
            margin-top: 80px;
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide-1 {
            background: linear-gradient(rgba(26, 77, 46, 0.7), rgba(26, 77, 46, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a4d2e" width="1200" height="600"/><text x="600" y="300" font-size="120" fill="white" text-anchor="middle" opacity="0.1">LUXURY</text></svg>');
        }

        .hero-slide-2 {
            background: linear-gradient(rgba(200, 164, 126, 0.7), rgba(200, 164, 126, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23c8a47e" width="1200" height="600"/><text x="600" y="300" font-size="120" fill="white" text-anchor="middle" opacity="0.1">COMMERCIAL</text></svg>');
        }

        .hero-slide-3 {
            background: linear-gradient(rgba(26, 77, 46, 0.7), rgba(26, 77, 46, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a4d2e" width="1200" height="600"/><text x="600" y="300" font-size="120" fill="white" text-anchor="middle" opacity="0.1">INVESTMENT</text></svg>');
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 90%;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--white);
            width: 30px;
            border-radius: 6px;
        }*/

                /* Hero Slider */
        .hero-slider {
            margin-top: 80px;
            position: relative;
            height: 600px;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .hero-slide.active {
            opacity: 1;
        }
        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }
        .hero-slide-1 .hero-overlay,
        .hero-slide-3 .hero-overlay {
            background: linear-gradient(rgba(26, 77, 46, 0.7), rgba(26, 77, 46, 0.7));
        }
        .hero-slide-2 .hero-overlay {
            background: linear-gradient(rgba(200, 164, 126, 0.7), rgba(200, 164, 126, 0.7));
        }
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 90%;
            max-width: 900px;
            z-index: 3;
        }
        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        .btn-primary {
            background: var(--accent-color);
            color: var(--white);
        }
        .btn-primary:hover {
            background: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 4;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        .slider-dot.active {
            background: var(--white);
            width: 30px;
            border-radius: 6px;
        }

        /* Section Styles */
        .section {
            padding: 80px 15px;
        }

        .section-light {
            background: var(--bg-light);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 25px auto 0;
        }

        /* Introduction Section */
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-text h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .intro-text p {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
            text-align: justify;
        }

        .intro-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Why Choose Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--white);
        }

        .feature-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            text-align: justify;
        }

        /* Featured Properties Section */
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .property-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .property-image {
            height: 250px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .property-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: var(--white);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .property-content {
            padding: 25px;
        }

        .property-content h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .property-content p {
            font-size: 13px;
            color: var(--text-light);
            text-align: justify;
        }

        .property-location {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-features {
            display: flex;
            gap: 20px;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        .property-feature {
            font-size: 13px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-price {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            margin: 15px 0;
        }

        .property-price span {
            font-size: 14px;
            font-weight: normal;
            color: var(--text-light);
        }

        /* Cities Section */
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .city-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .city-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .city-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 32px;
            font-weight: bold;
        }

        .city-content {
            padding: 25px;
        }

        .city-content h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .city-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 15px;
            text-align: justify;
        }

        .city-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .city-stat {
            text-align: center;
            padding: 12px;
            background: var(--bg-light);
            border-radius: 8px;
        }

        .city-stat-value {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .city-stat-label {
            font-size: 12px;
            color: var(--text-light);
        }

        /* Investment Section */
        .investment-content {
            background: linear-gradient(135deg, var(--primary-color), #0d2818);
            color: var(--white);
            padding: 60px;
            border-radius: 16px;
            text-align: center;
        }

        .investment-content h2 {
            font-size: 38px;
            margin-bottom: 25px;
        }

        .investment-content p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .investment-benefits {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .investment-benefit {
            text-align: center;
        }

        .investment-benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 28px;
        }

        .investment-benefit h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .investment-benefit p {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-rating {
            color: var(--accent-color);
            font-size: 20px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 18px;
        }

        .testimonial-info h4 {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 3px;
        }

        .testimonial-info p {
            font-size: 13px;
            color: var(--text-light);
        }

        /* Blog Preview */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .blog-image {
            width: 100%;
            height: 420px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: var(--text-light);
        }

        .blog-content h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-content p {
            text-align: justify;
        }

        .blog-excerpt {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--accent-color);
            gap: 10px;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            padding: 60px;
            border-radius: 16px;
            text-align: center;
        }

        .contact-cta h2 {
            font-size: 38px;
            margin-bottom: 20px;
        }

        .contact-cta p {
            font-size: 18px;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
        }

        .contact-method-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 30px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-section p {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            opacity: 0.9;
            transition: var(--transition);
        }

        .footer-links a:hover {
            opacity: 1;
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
            opacity: 0.8;
        }

        /* Page Content Container */
        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), #0d2818);
            color: var(--white);
            padding: 120px 30px 80px;
            text-align: center;
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Content Sections */
        .content-section {
            padding: 60px 30px;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .content-text h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin: 40px 0 20px;
        }

        .content-text p {
            text-align: justify;
        }

        .content-text h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin: 30px 0 15px;
        }

        .content-text ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .content-text li {
            margin-bottom: 12px;
            line-height: 1.7;
        }

        /* ===========================
            SERVICES GRID RESPONSIVE
        =========================== */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* Service Card */
        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: 14px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .service-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .service-card ul {
            padding-left: 18px;
        }

        .service-card li {
            font-size: 14px;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        /* Project Detail Page */
        .project-banner {
            height: 400px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            font-weight: 600;
            margin-top: 80px;
        }

        .project-details-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .detail-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .detail-box h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .amenities-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-light);
        }

        .amenity-icon {
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        /* Contact Form */
        .contact-form-container {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .intro-content,
            .project-details-grid {
                grid-template-columns: 1fr;
            }

            .features-grid,
            .properties-grid,
            .cities-grid,
            .testimonials-grid,
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .investment-content {
                padding: 15px;
            }

            .investment-content p {
                text-align: justify;
            }

            .investment-benefits {
                grid-template-columns: repeat(2, 1fr);
            }

            .investment-benefits p {
                text-align: center;
            }

            .contact-cta {
                padding: 15px;
            }

            .contact-cta p {
                text-align: justify;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 20px 0;
                align-items: flex-start;
                padding-left: 30px;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none;
                font-size: 18px;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .section-title {
                font-size: 32px;
            }

            .investment-content {
                padding: 15px;
            }

            .investment-content p {
                text-align: justify;
            }

            .investment-benefits p {
                text-align: center;
            }

            .features-grid,
            .properties-grid,
            .cities-grid,
            .testimonials-grid,
            .blog-grid,
            .investment-benefits {
                grid-template-columns: 1fr;
            }

            .contact-cta {
                padding: 15px;
            }

            .contact-cta p {
                text-align: justify;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Loading Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 999;
        }

        .scroll-top.visible {
            display: flex;
        }

        .scroll-top:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }

        /* ===============================
           FLOATING WHATSAPP & CALL BUTTONS
        ================================ */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            left: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .fab-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--white);
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .fab-btn.whatsapp {
            background: #25D366;
        }

        .fab-btn.call {
            background: var(--primary-color);
        }

        .fab-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        /* Mobile spacing adjustment */
        @media (max-width: 576px) {
            .floating-actions .scroll-top{
                bottom: 20px;
                left: 20px;
            }

            .fab-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
        }

        /* Services Page Specific */
        /*.services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .service-card h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .service-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-light);
        }

        .service-card ul li::before {
            content: '✓';
            color: var(--accent-color);
            font-weight: bold;
            font-size: 16px;
        }*/

        /* Market Insight Tables */
        .market-table {
            width: 100%;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin: 30px 0;
        }

        .market-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .market-table th {
            background: var(--primary-color);
            color: var(--white);
            padding: 15px;
            text-align: left;
            font-size: 14px;
        }

        .market-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            color: var(--text-light);
        }

        .market-table tr:hover {
            background: var(--bg-light);
        }

        /* Projects Filter */
        .filter-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Contact Page Map */
        /* Map Responsive */
        .map-container {
            height: auto;
            padding: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border-radius: 12px;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .contact-info-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 26px;
        }

        .contact-info-card h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .contact-info-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ===========================
   TABLET RESPONSIVE
=========================== */
@media (max-width: 992px) {

    .page-header {
        padding: 100px 20px 60px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .page-header p {
        font-size: 16px;
    }

    .content-section {
        padding: 50px 20px;
    }
    .contact-form-container {
        padding: 35px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 600px) {

    .page-header {
        padding: 90px 15px 50px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-header p {
        font-size: 15px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .contact-info-card {
        padding: 22px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .contact-form-container {
        padding: 25px;
    }

    .form-control {
        font-size: 14px;
        padding: 11px 14px;
    }

    .map-container iframe {
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p,
    .service-card li {
        font-size: 14px;
    }
}