/* Enhanced Modern Style for AutoService Düsseldorf
   Created by Youware - A platform for vibe coder to create and share ideas */

/* Base Styles */
:root {
    /* Updated Color Palette */
    --primary-color: #1e40af;  /* Deeper blue for brand integrity */
    --secondary-color: #2563eb; /* Brighter blue for highlights */
    --accent-color: #ff6b35; /* Orange accent for CTAs and highlights */
    --dark-color: #0f172a; /* Nearly black for text */
    --light-color: #f8fafc; /* Off-white for backgrounds */
    --gray-color: #64748b; /* Muted blue-gray for secondary text */
    --success-color: #10b981; /* Green for success states */
    --error-color: #ef4444; /* Red for errors/alerts */
    --gradient-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff9e64 100%);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius: 10px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-highlight: 0 10px 25px rgba(37, 99, 235, 0.25);
    --shadow-accent: 0 10px 25px rgba(255, 107, 53, 0.25);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-highlight);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.1);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
}

.btn-secondary:active {
    transform: translateY(1px);
}

.btn-accent {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-emergency {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.btn-emergency:active {
    transform: translateY(-1px);
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: 0.6rem;
    font-size: 1.9rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 1.25rem;
}

.nav-menu a {
    position: relative;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px;
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 30px;
    padding: 4px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.4rem 0.7rem;
    margin: 0 0.1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-color);
    border-radius: 20px;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    background-color: rgba(30, 64, 175, 0.1);
}

/* Enhanced Hero Section */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex-basis: 55%;
    flex-grow: 0;
    flex-shrink: 1;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.certification-badge {
    background: var(--gradient-blue);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    animation: badge-pulse 2s infinite alternate;
}

@keyframes badge-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.certification-badge i {
    margin-right: 0.6rem;
    font-size: 1.1rem;
}

.hero-text h1 {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 900;
    display: inline-block;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-badge img {
    width: 36px;
    height: 36px;
}

.trust-badge i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.trust-badge span {
    font-weight: 600;
    color: var(--dark-color);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

.hero-image {
    flex-basis: 45%;
    flex-grow: 0;
    flex-shrink: 1;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
    border: 10px solid white;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 30px;
    left: -20px;
    background: var(--gradient-blue);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-image:hover::after {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    top: 20px;
    left: -10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--secondary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Enhanced Services Section */
.services {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gradient-blue);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transform: rotate(5deg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.service-card h3:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 3px;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Enhanced About Section */
.about {
    padding: var(--section-padding);
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, #f1f5f9);
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::before {
    top: -25px;
    left: -25px;
}

.certification-seal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    animation: certification-float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes certification-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.certification-seal i {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.about-text {
    flex: 1;
}

.team-qualification {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qualification-badge {
    background: var(--gradient-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.about-text h3 {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
    color: var(--dark-color);
    font-weight: 800;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-box {
    text-align: center;
    flex: 1;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0) 100%);
    z-index: 0;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    position: relative;
}

.stat-label {
    color: var(--gray-color);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
}

/* Enhanced Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: #f0f7ff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%232563eb' 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");
    opacity: 0.5;
    z-index: 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    flex: 1 1 350px;
    max-width: 500px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.3rem;
    margin-right: 0.3rem;
}

.verified-badge {
    margin-left: auto;
    background-color: #e6f0ff;
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1.75rem;
}

.testimonial-content p {
    color: var(--gray-color);
    font-style: italic;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.25rem;
    border: 4px solid #e6f0ff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image {
    border-color: var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.review-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.average-rating {
    display: flex;
    align-items: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 1.5rem;
}

.rating-stars {
    display: flex;
    margin-right: 1.5rem;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.8rem;
    margin-right: 0.3rem;
}

.rating-count {
    color: var(--gray-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Enhanced Gallery Section */
.gallery {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 400px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    font-weight: 700;
    font-size: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.gallery-item::before {
    content: '\f06e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Enhanced Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: #f9fafb;
    position: relative;
}

.emergency-service {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #fff5f5, #fef2f2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 6px solid #ef4444;
    position: relative;
    overflow: hidden;
}

.emergency-service::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0) 70%);
    z-index: 0;
}

.emergency-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-right: 2.5rem;
    animation: emergency-pulse 2s infinite;
}

@keyframes emergency-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.emergency-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.emergency-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.emergency-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-content {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.6rem;
    color: white;
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-highlight);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-details p {
    color: var(--gray-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Enhanced Footer */
.footer {
    background-color: var(--dark-color);
    color: #f8fafc;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo i {
    margin-right: 0.75rem;
    font-size: 2rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
    color: white;
    position: relative;
    font-weight: 700;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #94a3b8;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(8px);
}

.social-links {
    display: flex;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: white;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-contact p i {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 3rem;
    }
    
    .hero-text h1 {
        font-size: 3.25rem;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
    
    .gallery-item {
        height: 350px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text {
        flex-basis: 100%;
    }
    
    .hero-image {
        flex-basis: 100%;
    }
    
    .hero-badges, .trust-badges {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .team-qualification {
        justify-content: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: 0.4s;
        z-index: 100;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-box {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .average-rating {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-number, .rating-stars {
        margin-right: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .emergency-service {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .language-selector {
        margin-left: 0.5rem;
    }
}

/* Enhancements for Better Performance and Accessibility */
.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Online Booking Modal - Enhanced */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: var(--gradient-blue);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.booking-modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.close-modal {
    font-size: 2.2rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    opacity: 1;
    transform: scale(1.1);
}

.booking-modal-body {
    padding: 2.5rem;
}

/* Booking Steps - Enhanced */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e2e8f0;
    z-index: 0;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 0 15px;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.booking-step.active .step-number {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-highlight);
}

.booking-step.completed .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.booking-step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.step-text {
    font-size: 0.95rem;
    color: var(--gray-color);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: var(--transition);
}

.booking-step.active .step-text {
    color: var(--primary-color);
    font-weight: 700;
}

.booking-step.completed .step-text {
    color: #10b981;
}

/* Booking Content - Enhanced */
.booking-step-content {
    display: none;
    min-height: 450px;
}

.booking-step-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.booking-step-content h3 {
    font-size: 1.9rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.booking-step-content p {
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Service Selection - Enhanced */
.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.service-option {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    position: relative;
    overflow: hidden;
}

.service-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0) 100%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.service-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-option:hover::after {
    opacity: 1;
}

.service-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-highlight);
}

.service-option-icon {
    font-size: 2.2rem;
    color: white;
    background: var(--gradient-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-highlight);
    transition: var(--transition);
}

.service-option:hover .service-option-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-option-details {
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-option-details h4 {
    margin: 0 0 0.75rem 0;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.service-option-details p {
    margin: 0 0 0.75rem 0;
    color: var(--gray-color);
    font-size: 1rem;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-option textarea {
    width: 100%;
    margin-top: 1.25rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    resize: vertical;
    min-height: 100px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-option textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Calendar - Enhanced */
.calendar-container {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: scale(1.1);
}

.current-month {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 600;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e2e8f0;
}

.calendar-weekdays span {
    padding: 1rem;
    background-color: #f8fafc;
    text-align: center;
    font-weight: 600;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e2e8f0;
}

.calendar-day {
    padding: 1.25rem;
    background-color: white;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    background-color: #f8fafc;
}

.calendar-day.available {
    color: var(--dark-color);
}

.calendar-day.available:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--gradient-blue);
    color: white;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.calendar-day.available::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

/* Time Slots - Enhanced */
.time-slots {
    margin-bottom: 2.5rem;
}

.time-slots h4 {
    margin-bottom: 1.25rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.time-slot-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
}

.time-slot-option {
    padding: 1rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    background-color: #f8fafc;
    color: #cbd5e1;
}

.time-slot-option.available {
    background-color: white;
    color: var(--dark-color);
    border-color: #e2e8f0;
}

.time-slot-option.available:hover {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.time-slot-option.selected {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-highlight);
    transform: translateY(-3px);
}

/* Forms - Enhanced */
.vehicle-form,
.contact-form {
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Booking Summary - Enhanced */
.booking-summary {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid #e2e8f0;
}

.booking-summary h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.booking-summary h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #e2e8f0;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    font-weight: 600;
    color: var(--gray-color);
}

.summary-value {
    font-weight: 700;
    color: var(--dark-color);
}

/* Confirmation - Enhanced */
.booking-confirmation {
    text-align: center;
    padding: 3rem 2rem;
}

.confirmation-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 2rem;
    animation: success-pulse 2s infinite alternate;
}

@keyframes success-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0.9; }
}

.confirmation-details {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2.5rem 0;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #e2e8f0;
}

.confirmation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.confirmation-label {
    font-weight: 600;
    color: var(--gray-color);
}

.confirmation-value {
    font-weight: 700;
    color: var(--dark-color);
}

.confirmation-notes {
    text-align: left;
    margin: 2.5rem 0;
    background-color: #f0fdf4;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #d1fae5;
}

.confirmation-notes h4 {
    margin-bottom: 1.25rem;
    color: #065f46;
    font-weight: 700;
    font-size: 1.3rem;
}

.confirmation-notes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.confirmation-notes li {
    margin-bottom: 0.75rem;
    color: #064e3b;
    font-size: 1.05rem;
}

/* Step Buttons - Enhanced */
.booking-step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn-back:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Enhanced Visual Effects */
.btn-primary, .btn-accent, .service-option-icon, .emergency-icon, .booking-step.active .step-number {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-accent::after, .service-option-icon::after, .emergency-icon::after, .booking-step.active .step-number::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 4s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    from { transform: translateX(-100%) rotate(30deg); }
    to { transform: translateX(100%) rotate(30deg); }
}

/* Mobile Responsive Enhancements */
@media screen and (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .booking-modal-body {
        padding: 1.5rem;
    }
    
    .booking-steps {
        margin-bottom: 2rem;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
    }
    
    .service-option {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .service-option-icon {
        margin-bottom: 1rem;
    }
    
    .time-slot-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-step-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Enhancements */
:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}