/* Professional Window Tinting Website Styles */

/* Cookie Consent Banner */
.cookie-consent-banner {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth Animations */
* {
    transition: all 0.3s ease;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    white-space: nowrap;
    min-width: fit-content;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    transform: translateY(-2px);
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient Overlays */
.gradient-overlay {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(55, 65, 81, 0.8));
}

/* Typography Enhancements */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .hero-text {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Focus States for Accessibility */
button:focus, a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Form Styling */
input, textarea, select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* High Contrast Modes */
@media (prefers-contrast: high) {
    .text-gray-600 {
        color: #374151 !important;
    }
    
    .bg-gray-100 {
        background-color: #f9fafb !important;
    }
}