
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-green: #C7EA46;
            --primary-green-light: #d4f065;
            --primary-green-dark: #b8d63f;
            --white: #FFFFFF;
            --red: #FF3B30;
            --red-dark: #e6342a;
            --dark: #1a1a1a;
            --dark-light: #2d2d2d;
            --gray: #666;
            --gray-light: #888;
            --light-gray: #f8f9fa;
            --border-light: #e9ecef;
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.15);
            --gradient: linear-gradient(135deg, rgba(199, 234, 70, 0.9), rgba(255, 59, 48, 0.9));
            --glass: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }
        body {
            font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid var(--border-light);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 0.75rem 0;
            box-shadow: var(--shadow);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2.5rem;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-green);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.01em;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-green-dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--dark);
            transition: 0.3s;
            border-radius: 2px;
        }

        

        /* Hero Section */
        .hero {
    height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Blurred background image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero.jpg') center/cover no-repeat;
    filter: blur(3px);
    z-index: 0;
}

/* Gradient overlays */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
                linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(199, 234, 70, 0.1));
    z-index: 1;
}


        .hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeInHero 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            letter-spacing: 0.01em;
            position: relative;
            overflow: hidden;
        }

        .btn::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;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--primary-green);
            color: var(--dark);
            box-shadow: 0 8px 25px rgba(199, 234, 70, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-green-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(199, 234, 70, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            text-decoration: none;
            font-size: 1.8rem;
            animation: pulse 2s infinite;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        }

        /* Section Styles */
        .section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }
        .section-title {
            text-align: center;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 4rem;
            color: var(--dark);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Company Intro */
/* About Section */
#about {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 100px 20px 80px;
  z-index: 1;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.intro-text {
  flex: 1 1 500px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.intro-image {
  flex: 1 1 400px;
  height: 450px;
  background: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.intro-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 234, 70, 0.2), rgba(26, 26, 26, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-image:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-image {
    height: 300px;
    width: 100%;
  }
}

        /* Featured Properties */
        .properties-section {
            background: white;
        }

        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .property-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-light);
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .property-image {
            height: 280px;
            background: url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
            position: relative;
            overflow: hidden;
        }

        .property-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(199, 234, 70, 0.1), rgba(26, 26, 26, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .property-card:hover .property-image::before {
            opacity: 1;
        }

        .property-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary-green);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .property-content {
            padding: 2.5rem;
        }

        .property-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .property-price {
            color: var(--red);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .property-location {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .property-location::before {
            content: '📍';
            font-size: 0.9rem;
        }

        /* Why Choose Us */
        .features-section {
            background: linear-gradient(135deg, var(--light-gray), #ffffff);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 1px solid var(--glass-border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            background: rgba(255, 255, 255, 0.95);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-description {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* How It Works */
        .steps-section {
            background: white;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .step-card {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 25px;
            box-shadow: var(--shadow);
            position: relative;
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-green);
            color: var(--dark);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(199, 234, 70, 0.3);
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
            margin-top: 1rem;
        }

        .step-description {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--light-gray), #ffffff);
        }

        .testimonial-slider {
            display: flex;
            gap: 3rem;
            overflow-x: auto;
            padding: 2rem 0;
            scroll-behavior: smooth;
        }

        .testimonial-card {
            min-width: 400px;
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray);
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-green-dark);
            font-size: 1rem;
        }

        .testimonial-rating {
            margin-bottom: 1rem;
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* Partner Banner */
        .partner-banner {
            background: var(--gradient);
            color: white;
            text-align: center;
            padding: 5rem 3rem;
            border-radius: 30px;
            margin: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .partner-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .partner-banner h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .partner-banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Final CTA */
        .final-cta {
            background: var(--dark);
            color: white;
            text-align: center;
        }

        .final-cta .section-title {
            color: white;
            margin-bottom: 3rem;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-green);
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }
            
            .container {
                padding: 0 2rem;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .properties-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .intro-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-slider {
                flex-direction: column;
            }

            .testimonial-card {
                min-width: auto;
            }

            .section {
                padding: 5rem 0;
            }

            .section-title {
                font-size: 2.2rem;
                margin-bottom: 3rem;
            }

            .properties-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .nav-container,
            .container {
                padding: 0 1.5rem;
            }

            .btn {
                padding: 1rem 2rem;
                font-size: 0.9rem;
            }

            .property-content,
            .feature-card,
            .step-card,
            .testimonial-card {
                padding: 2rem 1.5rem;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
                font-size: 1.5rem;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        