/* --- 1. FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

/* --- 2. HERO & LAYOUTS --- */
.hero-pattern {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230bc0df' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* --- 3. GALLERY / BEFORE-AFTER SLIDER --- */
/* This ensures your gallery images stay consistent */
.gallery-image-container {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.group:hover .gallery-image-container img {
    transform: scale(1.1);
}

/* --- 4. INTERACTIVE ELEMENTS --- */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.contact-link {
    color: #2563eb;
    transition: all 0.2s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* --- 5. FOOTER CUSTOM HEIGHT --- */
.site-footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}
