/* Additional styles for Game Friendoor Car Rental */

/* Enhanced Hero Styles */
.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    pointer-events: none;
}

.hero__title {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(13, 71, 161, 0.1);
}

.hero__subtitle {
    color: #1976D2;
    text-shadow: 0 1px 2px rgba(25, 118, 210, 0.1);
}

/* Enhanced Page Hero */
.page-hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    pointer-events: none;
}

.page-hero__title {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(13, 71, 161, 0.1);
}

.page-hero__subtitle {
    color: #1976D2;
    text-shadow: 0 1px 2px rgba(25, 118, 210, 0.1);
}

/* Enhanced Button Styles */
.btn--primary {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn--outline {
    border: 2px solid #2196F3;
    color: #2196F3;
    background: transparent;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: #2196F3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

/* Enhanced Card Styles */
.feature-card,
.pricing-section,
.faq__item,
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.feature-card:hover,
.pricing-section:hover,
.faq__item:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

/* Enhanced CTA Section */
.cta {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(13, 71, 161, 0.95) 100%);
    pointer-events: none;
}

/* Enhanced Pricing Note */
.pricing__note {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

/* Enhanced Services Actions */
.services__actions .btn {
    margin: 0.5rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {

    .hero__title,
    .page-hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle,
    .page-hero__subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    .hero__title,
    .page-hero__title {
        font-size: 2rem;
    }

    .hero__subtitle,
    .page-hero__subtitle {
        font-size: 1.2rem;
    }
}

/* Animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-section,
.faq__item,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced focus states for accessibility */
.btn:focus,
.contact__item-text:focus {
    outline: 2px solid #2196F3;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}