/* Variables CSS globales */
:root {
    --primary-color: #FFD700;
    --secondary-color: #ffffff;
    --text-dark: #1A1A1A;
    --text-light: #ffffff;
    --accent-color: #2C3E50;
    --transition-speed: 0.3s;
    --border-radius: 50px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation */
#mainNav {
    background: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    color: var(--text-dark) !important;
}

.nav-link:hover {
    opacity: 0.8;
}

.navbar-toggler {
    border-color: var(--text-dark) !important;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
}

.navbar-collapse {
    background: var(--primary-color);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .navbar-nav {
        margin: 1rem 0;
    }
    
    .nav-item {
        text-align: center;
    }
    
    .ms-lg-3 {
        margin: 1rem 0;
        text-align: center;
    }
}

/* Fix pour le défilement horizontal sur mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Correction du container sur mobile */
@media (max-width: 991.98px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    padding: 2rem 0;
}

.hero-content .row {
    align-items: center;
    justify-content: center;
}

/* Car Image Animation */
.car-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    perspective: 1000px;
}

.car-image {
    transform: rotate(0deg);
    max-width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

@keyframes carLeaving {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

.car-leaving {
    animation: carLeaving 1.5s ease-in forwards;
}

/* Button Styles */
.btn-white {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid white !important;
    transition: all 0.3s ease !important;
}

.btn-white:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
}



/* Responsive Fixes */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-content .row {
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
        max-width: 500px;
    }

    .hero-content .d-flex {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-content .btn {
        margin: 0.5rem 0;
        width: 80%;
        max-width: 300px;
    }
    
    .car-image-container {
        margin: 3rem auto 1rem;
        padding: 0;
        max-width: 300px;
    }
    
    .car-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .btn-dark {
        border: 2px solid black !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-dark:hover {
        background-color: white !important;
        color: black !important;
        border-color: black !important;
    }
}

/* Styles pour la page Services */
.services-section {
    background-color: var(--secondary-color);
    min-height: 100vh;
    padding-top: 120px;
}

.service-card {
    background: var(--secondary-color);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card:hover p {
    color: var(--text-light);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 2rem;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--text-dark);
    transition: all var(--transition-speed) ease;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    transition: all var(--transition-speed) ease;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.service-features .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.05) !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .badge {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.service-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.service-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-title::after {
    width: 100px;
}

/* Section CTA */
.cta-section {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.cta-section .container {
    position: relative;
}

.cta-content {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    color: var(--text-dark);
}

.btn-outline-light {
    background: var(--text-dark) !important;
    color: var(--text-light) !important;
    border-color: var(--text-dark) !important;
}

.btn-outline-light:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: var(--text-light) !important;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.cta-section .badge {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: var(--primary-color) !important;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* Styles pour la page About */
.about-hero-section {
    padding-top: 120px;
    min-height: 80vh;
    background: var(--secondary-color);
    position: relative;
}

.about-hero-section .badge {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-section .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.stats-row {
    margin-top: 2rem;
}

.stat-item {
    padding: 1rem;
    transition: all var(--transition-speed) ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.about-image-container {
    position: relative;
    padding: 2rem;
}

.image-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all var(--transition-speed) ease;
}

.placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.placeholder-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.placeholder-content i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.placeholder-content small {
    opacity: 0.8;
}

.image-placeholder:hover .placeholder-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.image-placeholder:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    transform: rotate(-3deg);
    z-index: -1;
}

.feature-card {
    background: var(--secondary-color);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tags .tag {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .tag {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Services Info Cards */
.services-info {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
}

.service-block {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.service-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.service-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.service-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.service-item {
    text-align: center;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-item span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Google Reviews Card */
.google-reviews-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #FBC02D;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 0.5rem;
    color: #666;
}

.review-stats {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.reviews-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.review-content {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reviewer-name i {
    margin-right: 0.5rem;
    color: #666;
}

.review-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

/* Location Info */
.location-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.location-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cities-list {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.special-services {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.special-services i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.special-services p {
    margin: 0;
    color: #666;
}

/* Engagement Section */
.vehicle-section {
    background: var(--secondary-color);
}

.vehicle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    height: 100%;
    min-height: 400px;
    position: relative;
}

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

.vehicle-info {
    padding: 3rem;
}

.vehicle-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all var(--transition-speed) ease;
}

.spec-item:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.spec-item:hover i {
    color: var(--text-dark);
}

.spec-item span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

@media (max-width: 991.98px) {
    .vehicle-image {
        min-height: 300px;
    }

    .vehicle-info {
        padding: 2rem;
        text-align: center;
    }

    .vehicle-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .vehicle-specs {
        gap: 1rem;
    }

    .spec-item {
        justify-content: center;
    }
}

.engagement-section {
    background: var(--secondary-color);
}

.engagement-card {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.engagement-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Styles pour la page Contact */
.contact-main {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .contact-main {
        padding-top: 150px;
    }
}

.form-design-element {
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%);
    border-radius: 50px;
    transform: rotate(-45deg);
    z-index: 1;
}

/* Carte d'informations de contact */
.contact-info-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    transform: rotate(-5deg);
}

.info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.info-content {
    flex-grow: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all var(--transition-speed) ease;
    margin-bottom: 1rem;
}

.info-item:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.item-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all var(--transition-speed) ease;
}

.info-item:hover .item-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(-5deg);
}

.item-content {
    flex-grow: 1;
}

.item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.item-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.item-content a:hover {
    color: var(--primary-color);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.online {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.response-time {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.coverage-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.info-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-footer h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
    text-decoration: none !important;
    cursor: pointer;
}

/* Style par défaut pour le bouton SMS et Google */
.social-link.sms,
.social-link.google {
    color: var(--text-dark) !important;
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.social-link.sms:hover,
.social-link.google:hover {
    color: var(--text-dark) !important;
    background: var(--primary-color);
    border-color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Style spécifique pour le bouton d'appel */
.social-link.facebook {
    background: var(--text-dark) !important;
    color: var(--text-light) !important;
    border: 2px solid var(--text-dark) !important;
}

.social-link.facebook:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Styles pour la page Réservation */
.reservation-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reservation-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reservation-card h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.reservation-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.reservation-section-title i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.form-label {
    font-weight: 500;
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all var(--transition-speed) ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-reservation {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 20px;
    transition: all var(--transition-speed) ease;
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .reservation-section {
        padding-top: 150px;
    }
    
    .reservation-card {
        padding: 2rem;
    }
}

.contact-form-card {
    background: white;
    border-radius: 40px;
    padding: 3.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-badge-wrap {
    display: inline-block;
    padding: 4px;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 100%);
    border-radius: 50px;
}

.form-badge {
    background: white;
    color: var(--primary-color);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-badge i {
    font-size: 1.2rem;
    color: #28a745;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

.form-control {
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form-floating {
    position: relative;
}

.form-floating > .form-control {
    height: 60px;
    line-height: 1.25;
    padding: 1rem 1.5rem;
}

.form-floating > label {
    position: absolute;
    font-size: 0.9rem;
    color: #666;
    transform-origin: 0 0;
    transition: all var(--transition-speed) ease;
    padding: 1rem 1.5rem;
    opacity: 0.8;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-2rem);
    background: transparent;
    padding: 0 0.5rem;
    opacity: 1;
}

.form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

button[type="submit"] {
    height: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

button[type="submit"] i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

button[type="submit"]:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .contact-hero-section {
        padding-top: 100px;
        text-align: center;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .contact-quick-actions {
        justify-content: center;
    }

    .quick-info {
        justify-content: center;
    }

    .contact-form-card,
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 991.98px) {
    .about-hero-section {
        padding-top: 100px;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .about-hero-section .btn {
        min-width: 200px;
        margin: 0.5rem;
    }

    .about-image-container {
        margin-top: 2rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .image-placeholder img {
        width: 100%;
        height: auto;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .service-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .google-reviews-card {
        margin-top: 2rem;
    }
}

.cta-section .btn {
    transition: all var(--transition-speed) ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .car-image {
        max-width: 50%;
    }

    .services-section {
        padding-top: 100px;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }
}