/* Mobile-first approach */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hero {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    font-size: 3rem;
}

.hero .lead {
    font-size: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hover-scale:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar-brand .logo-spin {
    transition: transform 0.5s ease;
}

.navbar-brand .logo-spin:hover {
    transform: rotate(360deg);
}

.call-now {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.cta {
    background: linear-gradient(45deg, #28a745, #1e7e34);
    border-radius: 10px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #28a745 !important;
}

section {
    position: relative;
    z-index: 1;
    overflow: visible;
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .lead {
        font-size: 1rem;
    }
    .card-img-top {
        height: 150px;
    }
    .call-now {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Custom font loading */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');