@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
/* Smooth scrolling and animations */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust this value based on your navbar height */
}

/* Add padding to sections to prevent navbar overlap */
section {
    scroll-margin-top: 80px;
}
/* Scroll animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-in"] {
    transform: translateY(20px);
}

[data-animate="fade-in"].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}

[data-animate="slide-left"].animate {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}

[data-animate="slide-right"].animate {
    opacity: 1;
    transform: translateX(0);
}

/* Lazy loading */
.lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lazy.loaded {
    opacity: 1;
}
/* Testimonial card animation */
.testimonial-card {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.testimonial-card.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Google Maps section */
.google-maps {
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.google-maps:hover {
    filter: grayscale(0%);
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}
/* Animation for hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Form input focus effect */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
}