/* Professional Gutter Services Styles */

.hero-gradient {
    background: linear-gradient(135deg, #1E40AF 0%, #3730A3 50%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1396132/pexels-photo-1396132.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.cookie-consent-banner {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Ensure good contrast for all text elements */
.text-reliable-gray {
    color: #374151;
}

.text-trust-blue {
    color: #1E40AF;
}

.text-service-orange {
    color: #EA580C;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-gradient {
        padding: 60px 0;
    }
    
    .hero-gradient h1 {
        font-size: 2.5rem;
    }
    
    .hero-gradient p {
        font-size: 1.125rem;
    }
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #1E40AF;
    outline-offset: 2px;
}

/* Loading states */
.service-card img {
    background-color: #f3f4f6;
    background-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    background-position: -200px 0;
}

/* Ensure proper spacing and alignment */
.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}