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

        :root {
            --primary-green: #2D5F5F;
            --accent-gold: #D4AF37;
            --light-green: #4A7C7C;
            --cream: #F8F6F0;
            --white: #FFFFFF;
            --dark-text: #333333;
            --light-text: #666666;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--white);
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            gap: 0.98rem;
            align-items: center !important;
        }

        /* Logo Image Styles */
        .logo-image {
            height: 75px;
            width: auto;
            max-width: 200px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: logoEntrance 1.2s ease-out;
            filter: drop-shadow(0 2px 8px rgba(45, 95, 95, 0.1));
        }

        .logo-image:hover {
            transform: scale(1.05) rotate(1deg);
            filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
        }

        @keyframes logoEntrance {
            0% {
                opacity: 0;
                transform: scale(0.8) translateX(-20px);
            }
            60% {
                opacity: 1;
                transform: scale(1.05) translateX(5px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateX(0);
            }
        }

        /* Logo text container */
        .logo-text-container {
            display: flex;
            flex-direction: column;
            margin-left: 0.8rem;
        }

        /* Fallback CSS houses (when image fails) */
        .logo-fallback .logo-houses {
            display: flex;
            gap: 2px;
        }

        .logo-fallback .house {
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 12px solid var(--accent-gold);
            position: relative;
            animation: bounceIn 0.8s ease-out;
            animation-fill-mode: both;
        }

        .logo-fallback .house:nth-child(1) { animation-delay: 0.2s; }
        .logo-fallback .house:nth-child(2) { animation-delay: 0.4s; }
        .logo-fallback .house:nth-child(3) { animation-delay: 0.6s; }

        .logo-fallback .house::after {
            content: '';
            position: absolute;
            top: 12px;
            left: -6px;
            width: 12px;
            height: 8px;
            background: var(--accent-gold);
            animation: slideDown 0.5s ease-out;
            animation-delay: 0.8s;
            animation-fill-mode: both;
            opacity: 0;
        }

        /* Animated Elements */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .slide-in-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }

        .slide-in-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Logo Animation */
        .logo-houses {
            display: flex;
            gap: 2px;
        }

        .house {
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 12px solid var(--accent-gold);
            position: relative;
            animation: bounceIn 0.8s ease-out;
            animation-fill-mode: both;
        }

        .house:nth-child(1) { animation-delay: 0.2s; }
        .house:nth-child(2) { animation-delay: 0.4s; }
        .house:nth-child(3) { animation-delay: 0.6s; }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3) translateY(-20px);
            }
            50% {
                opacity: 1;
                transform: scale(1.05) translateY(-5px);
            }
            70% {
                transform: scale(0.9) translateY(0);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .house::after {
            content: '';
            position: absolute;
            top: 12px;
            left: -6px;
            width: 12px;
            height: 8px;
            background: var(--accent-gold);
            animation: slideDown 0.5s ease-out;
            animation-delay: 0.8s;
            animation-fill-mode: both;
            opacity: 0;
        }

        @keyframes slideDown {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Logo text animation */
        .logo-text {
            color: var(--primary-green);
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
            animation: fadeInRight 1s ease-out 0.5s both;
        }

        .logo-tagline {
            color: var(--light-green);
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-top: -5px;
            animation: fadeInRight 1s ease-out 0.7s both;
        }

        @keyframes fadeInRight {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        .nav-links a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s;
        }

        .whatsapp-btn:hover {
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            z-index: 1002;
        }

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

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary-green);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
            background: var(--accent-gold);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
            background: var(--accent-gold);
        }

        /* Mobile Navigation */
        .nav-links.mobile-active {
            display: flex !important;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 1001;
            animation: slideDownFade 0.4s ease-out;
        }

        @keyframes slideDownFade {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-links.mobile-active li {
            margin: 0.5rem 0;
            opacity: 0;
            animation: fadeInUp 0.4s ease-out forwards;
        }

        .nav-links.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
        .nav-links.mobile-active li:nth-child(2) { animation-delay: 0.2s; }
        .nav-links.mobile-active li:nth-child(3) { animation-delay: 0.3s; }
        .nav-links.mobile-active li:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-links.mobile-active a {
            font-size: 1.2rem;
            padding: 1rem;
            border-radius: 8px;
            display: block;
            text-align: center;
            transition: all 0.3s ease;
        }

        .nav-links.mobile-active a:hover {
            background: var(--cream);
            transform: translateX(10px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 120px 5% 80px;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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="houses" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,10 35,20 15,20" fill="%23D4AF37" opacity="0.03"/><rect x="20" y="20" width="10" height="15" fill="%23D4AF37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23houses)"/></svg>') repeat;
            animation: floatPattern 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes floatPattern {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            25% { transform: translateY(-10px) translateX(5px); }
            50% { transform: translateY(-5px) translateX(-5px); }
            75% { transform: translateY(-15px) translateX(3px); }
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: heroTitleSlide 1.2s ease-out;
            position: relative;
        }

        @keyframes heroTitleSlide {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            60% {
                opacity: 1;
                transform: translateY(-10px) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 2rem;
            font-weight: 600;
            animation: taglineFade 1s ease-out 0.5s both;
            position: relative;
            letter-spacing: 3px;
        }

        .hero-tagline::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            animation: underlineGrow 0.8s ease-out 1.5s both;
        }

        @keyframes taglineFade {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes underlineGrow {
            0% { width: 0; }
            100% { width: 60px; }
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 3rem;
            line-height: 1.8;
            animation: heroParaSlide 1s ease-out 0.8s both;
        }

        @keyframes heroParaSlide {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: ctaButtonsSlide 1s ease-out 1.2s both;
        }

        @keyframes ctaButtonsSlide {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

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

        .btn-primary:hover {
            background: var(--light-green);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-gold);
            border-color: var(--accent-gold);
        }

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

        /* Services Section */
        .services {
            padding: 80px 5%;
            background: var(--white);
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--light-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--cream);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
            border: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* About Section */
        .about {
            padding: 80px 5%;
            background: var(--cream);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h2 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 2.2rem;
        }

        .about-text p {
            color: var(--light-text);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 8px;
        }

        .stat-number {
            font-size: 2rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        .stat-label {
            color: var(--primary-green);
            font-size: 0.9rem;
        }

        .about-image {
            background: var(--primary-green);
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--accent-gold);
        }

        /* Contact Section */
        .contact {
            padding: 80px 5%;
            background: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form {
            background: var(--cream);
            padding: 2rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-green);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
        }

        .contact-info {
            padding: 2rem 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--cream);
            border-radius: 10px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--primary-green);
            color: white;
            padding: 3rem 5% 1rem;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--accent-gold);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        /* WhatsApp Float Button Enhanced */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            animation: whatsappFloat 3s ease-in-out infinite;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotateZ(5deg);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            z-index: -1;
            animation: whatsappPulse 2s infinite;
        }

        @keyframes whatsappFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateY(-10px) rotate(5deg); 
            }
        }

        @keyframes whatsappPulse {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Design Enhanced for Mobile First */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero {
                padding: 100px 4% 60px;
                min-height: 90vh;
            }

            .hero h1 {
                font-size: 2.8rem;
                line-height: 1.1;
            }

            .hero-tagline {
                font-size: 1.1rem;
                letter-spacing: 2px;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                padding: 1.2rem 2rem;
                font-size: 1.1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
                margin: 0 1rem;
            }

            .service-card:hover {
                transform: translateY(-8px) rotate(0deg);
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .stat {
                padding: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            nav {
                padding: 1rem 4%;
            }

            .hero,
            .services,
            .about,
            .contact {
                padding: 60px 4%;
            }

            .logo-image {
                height: 45px;
                max-width: 120px;
            }

            .logo-text {
                font-size: 1.4rem;
                letter-spacing: 1px;
            }

            .logo-tagline {
                font-size: 0.75rem;
            }

            .whatsapp-float {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .contact-form {
                padding: 1.5rem;
                margin: 0 1rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 1.2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
    .logo-image {
        height: 60px !important;    /* Smaller on mobile */
        max-width: 180px;
    }
    
    .logo-text {
        font-size: 1.3rem !important;
    }
    
    .logo-tagline {
        font-size: 0.75rem !important;
    }
}

        /* Extra small devices */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-tagline {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .services,
            .about,
            .contact {
                padding: 50px 3%;
            }

            .service-card {
                margin: 0 0.5rem;
                padding: 1.2rem;
            }

            .contact-form {
                margin: 0 0.5rem;
                padding: 1.2rem;
            }

            .logo-image {
                height: 40px;
                max-width: 100px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .logo-tagline {
                font-size: 0.65rem;
            }

            .nav-links.mobile-active {
                top: 70px;
                padding: 1.5rem;
            }
        }

        /* Success Message */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            border: 1px solid #c3e6cb;
            display: none;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            border: 1px solid #f5c6cb;
            display: none;
        }
