* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
.testimonials-grid {
                grid-template-columns: 1fr;
            }
        /* ==================== WHATSAPP BUTTON ==================== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 999;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        .whatsapp-float:hover {
            background-color: #20ba5e;
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* ==================== HEADER & NAV ==================== */
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            animation: slideIn 0.6s ease;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #ffd700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .menu-btn.active i::before {
            content: '\f00d';
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 20px;
            text-align: center;
            animation: fadeIn 0.8s ease;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: slideDown 0.8s ease 0.2s both;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: slideDown 0.8s ease 0.4s both;
        }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: #ffd700;
            color: #333;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            background: #ffed4e;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==================== SERVICES SECTION ==================== */
        .services {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }
        .service-card:nth-child(8) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            border-top: 4px solid #667eea;
        }

        .service-card h3 {
            color: #667eea;
            margin: 15px 0;
            font-size: 20px;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: #f8f9fa;
            padding: 80px 20px;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 20px;
            animation: slideIn 0.6s ease;
        }

        .about-text p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.8;
            animation: slideIn 0.8s ease 0.2s both;
        }

        .skills {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }

        .skill-badge {
            background: white;
            padding: 12px 15px;
            border-radius: 5px;
            border-left: 4px solid #667eea;
            animation: slideIn 0.6s ease;
            font-size: 14px;
        }

        .profile-image {
            width: 280px;
            height: 320px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 5px solid white;
            animation: slideIn 0.8s ease;
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .contact-item {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            animation: fadeInUp 0.6s ease;
        }

        .contact-item h3 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        .contact-item p {
            font-size: 16px;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: #ffd700;
        }

        /* ==================== MAP ==================== */
        .map-container {
            margin: 50px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            height: 400px;
            animation: fadeInUp 0.6s ease;
        }

        /* ==================== FORM ==================== */
        .form-container {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 50px auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .error {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
        }

        .success {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            border-left: 4px solid #28a745;
            animation: slideDown 0.5s ease;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 80px;
        }

        footer p {
            margin: 5px 0;
        }

        footer a {
            color: #ffd700;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* ==================== MOBILE RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .hero h1 { 
                font-size: 28px; 
            }
            
            .hero p { 
                font-size: 16px;
                padding: 0 15px;
            }

            .hero {
                padding: 80px 20px;
            }

            .menu-btn {
                display: block;
            }

            nav {
                padding: 0 15px;
                height: 60px;
            }

            .logo {
                font-size: 24px;
            }

            .nav-links {
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                flex-direction: column;
                gap: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-links.active {
                max-height: 500px;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .nav-links a {
                display: block;
                padding: 15px 20px;
                margin: 0;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .profile-image {
                width: 100%;
                height: auto;
                max-width: 300px;
                margin: 0 auto;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .skills {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 300px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }

            .form-container {
                padding: 20px;
                margin: 30px 10px;
            }

            .btn {
                padding: 12px 25px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 22px;
            }

            .hero p {
                font-size: 14px;
            }

            .hero {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .about-text h2 {
                font-size: 24px;
            }

            .contact-info {
                gap: 15px;
            }

            .contact-item {
                padding: 20px;
            }

            footer {
                font-size: 13px;
            }
        }
        .map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}
.logo img {
    width: 72px;
    margin-top: 12px;
    box-shadow: 2px 4px 5px #ccc;
}
/* ==================== TESTIMONIALS CAROUSEL ==================== */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    padding: 80px 20px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.1s; }
.testimonial-card:nth-child(5) { animation-delay: 0.2s; }
.testimonial-card:nth-child(6) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.quote-icon {
    font-size: 40px;
    color: #667eea;
    opacity: 0.2;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.stars i {
    margin-right: 3px;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    color: #333;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.author-info p {
    color: #999;
    font-size: 12px;
    margin: 3px 0 0 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.carousel-btn:hover,
.carousel-btn.active {
    background: #667eea;
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .carousel-controls {
        display: none;
    }

    .carousel-dots {
        display: flex;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .testimonial-card:nth-child(n+2) {
        display: none;
    }

    .testimonial-card.active {
        display: block;
        animation: slideIn 0.5s ease;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}