:root {
    --cream: #fdf0d5;
    --orange: #ff6600;
    --text-dark: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden; /* No horizontal scroll */
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 0.4rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    flex: 1;
    max-width: 300px;
}

#service-search {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-family: inherit;
    font-size: 0.9rem;
}

#service-search::placeholder {
    color: var(--text-light);
}

.search-bar i {
    color: var(--orange);
    margin-left: 0.5rem;
}

ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange);
}

.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #f5e6b8 100%);
    text-align: center;
    padding: 100px 1rem 100px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn.primary {
    background: var(--orange);
    color: white;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn.secondary {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn.secondary:hover {
    background: var(--orange);
    color: white;
}

.service-section {
    padding: 80px 1rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.service-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--orange);
}

.service-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 10px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: filter 0.3s ease;
}

.service-image:hover {
    filter: grayscale(50%);
}

.service-section p {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 1.5rem auto 1rem;
    max-width: 800px;
}

.service-icon {
    font-size: 4rem;
    color: var(--orange);
    margin: 1rem 0;
    animation: bounce 2s infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.alt-bg {
    background: linear-gradient(135deg, #f5e6b8 0%, var(--cream) 100%);
}

.contact-section {
    padding: 150px 1rem 100px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.contact-section h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--orange);
}

.contact-section p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.method {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method:hover {
    transform: translateY(-5px);
}

.method i {
    color: var(--orange);
    margin-bottom: 1rem;
}

.method h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.method p {
    color: var(--text-light);
    font-weight: 300;
}

.method a {
    color: var(--orange);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-weight: 300;
}

.contact-form button {
    width: 100%;
}

footer {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--cream);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    text-decoration: none;
    color: white;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Animations */
.service-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-bar {
        max-width: 100%;
        order: 3;
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 200px 1rem 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-section {
        padding: 60px 1rem;
    }
    
    .service-section h2 {
        font-size: 2rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-section p {
        margin: 1rem auto 0.75rem;
    }
    
    .service-icon {
        margin: 0.75rem 0;
        font-size: 3rem;
    }
    
    .btn {
        margin-top: 0.25rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 180px 1rem 80px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

    .testimonials-section {
        padding: 80px 1rem;
        background: var(--gradient-cream-orange);
        text-align: center;
    }

    .testimonials-section h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: var(--text-dark);
    }

    .testimonials-swiper {
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonial-card p {
        font-size: 1.1rem;
        font-weight: 300;
        font-style: italic;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .author-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-author h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--orange);
        margin: 0;
    }

    .swiper-pagination-bullet {
        background: var(--orange);
    }

    .swiper-button-next, .swiper-button-prev {
        color: var(--orange);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .testimonials-section h2 {
            font-size: 2rem;
        }

        .testimonials-swiper {
            max-width: 100%;
        }

        .testimonial-card {
            height: auto;
            padding: 1.5rem;
        }
    }
