/* ===== VARIABLES ===== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #1a252f;
    --text-color: #2d3436;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gray: #95a5a6;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}


/* Reset et styles de base */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --gray: #95a5a6;
    --light-gray: #f8f9fa;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Section styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 1rem auto 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}
/* Barre de navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(21, 20, 20, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 2px;
    color: var(--white);
}
.logo h1{
    font-size: 15px;
}
.logo span{
    color:#c0392b;
}

.logo img {
   height: 70px;
    width: auto;
    border-radius: 100%;
    border: 5px solid black;
    box-shadow: 0 0 8px rgba(248, 245, 245, 0.915);

}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background-color: #ede5e5;
}

.bar {
    display: block;
    width: 12px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--black);
    transition: var(--transition);
}



/* Section CTA */
.cta-section {
    padding: 80px 0;
    background-color: black;
    color: var(--white);
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Pied de page */
.footer {
    background-color: black;
    color: var(--white);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3 span{
    color: var(--secondary-color);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 20px;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray);
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .why-us .container {
        flex-direction: column;
    }
    
    .why-us-content,
    .why-us-image {
        flex: none;
        width: 100%;
    }
    
    .why-us-image {
        margin-top: 50px;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .vehicle-card {
        min-width: 100%;
    }
}







/* ===== HEADER ===== */
.services-header {

    color: var(--white);
    padding-bottom: 60px;
    position: relative;
    background-color: #000;
    
}

.services-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}



.header-content {
    text-align: center;
    padding: 10px 0;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

/* ===== SERVICES NAVIGATION ===== */
.services-navigation {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: -50px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 24px;
    width: calc(100% - 48px);
    height: 2px;
    background: transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    background: var(--secondary-color);
}

.tab-btn:hover:not(.active) {
    color: var(--primary-color);
    background-color: rgba(0,0,0,0.05);
}

/* ===== SERVICES CONTENT ===== */
.services-content {
    padding: 80px 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.service-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.details-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.details-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.details-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-card h3 i {
    color: var(--secondary-color);
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.expertise-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(14, 15, 15, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.expertise-item:hover {
    background-color: rgba(176, 181, 184, 0.2);
    transform: translateY(-3px);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.expertise-item p {
    font-size: 0.9rem;
}

.process-steps {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.process-steps h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.process-steps h3 span{
    color: var(--secondary-color);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 18%;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.step h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.advantages-section h2 span{
    color: var(--secondary-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}



/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.service-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-contact-form select,
.service-contact-form input,
.service-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.service-contact-form select:focus,
.service-contact-form input:focus,
.service-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.service-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.service-contact-form button[type="submit"] {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    padding: 15px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    font-size: 0.9rem;
}

.contact-info{
     background: rgb(16, 16, 16);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .service-hero {
        flex-direction: column;
    }
    
    .hero-text,
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .services-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .step {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ✅ RESPONSIVE DESIGN OPTIMISÉ — Pour tous les écrans
   ========================================================= */

/* Écrans très larges (≥1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .header-content h1 {
    font-size: 4rem;
  }

  .hero-text h2 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Tablettes en paysage (769px à 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .header-content {
    padding: 180px 20px;
  }

  .service-hero {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .cta-section .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablettes et téléphones (≤768px) */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .logo img {
    height: 60px;
  }

  .header-content {
    padding: 150px 10px;
  }

  .header-content h1 {
    font-size: 2.3rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .services-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-image {
    order: -1;
  }

  .process-steps h3 {
    font-size: 1.5rem;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .cta-section .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }
}

/* Téléphones moyens (≤576px) */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .header-content {
    padding: 120px 10px;
  }

  .header-content h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .service-details {
    gap: 20px;
  }

  .details-card {
    padding: 20px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h3::after {
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 0;
  }
}

/* Très petits téléphones (≤360px) */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .logo img {
    height: 50px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    padding: 10px;
  }

  .header-content h1 {
    font-size: 1.5rem;
  }

  .header-content p {
    font-size: 0.9rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===== VARIABLES RESPONSIVES ===== */
:root {
    --container-padding: clamp(15px, 4vw, 40px);
    --section-padding: clamp(50px, 8vw, 100px);
    --element-spacing: clamp(20px, 4vw, 40px);
    --card-padding: clamp(20px, 4vw, 30px);
}

/* ===== BASE RESPONSIVE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== COMPOSANTS RESPONSIVES ===== */

/* Navigation */
.navbar {
    padding: clamp(15px, 3vw, 20px) 0;
}

.navbar.scrolled {
    padding: clamp(10px, 2vw, 15px) 0;
}

.logo {
    font-size: clamp(14px, 3vw, 18px);
}

.logo img {
    height: clamp(50px, 10vw, 70px);
}

.nav-menu {
    gap: clamp(15px, 3vw, 30px);
}

.nav-menu a {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Hero Section */
.hero {
    min-height: clamp(500px, 85vh, 800px);
    margin-top: clamp(70px, 12vw, 100px);
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.hero-buttons {
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
}

/* Boutons */
.btn {
    padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-height: 44px;
}

.btn-small {
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
}

/* Titres */
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

/* Grilles Responsives */
.services-grid,
.vehicles-grid,
.louer-grid,
.advantages-grid,
.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
}

/* Cartes */
.service-card,
.details-card,
.advantage-card {
    padding: var(--card-padding);
}

/* Services Header */
.services-header {
    padding: clamp(100px, 20vw, 200px) 0 clamp(40px, 8vw, 80px);
    margin-top: clamp(70px, 12vw, 100px);
}

.header-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
}

/* Tabs Navigation */
.services-tabs {
    gap: clamp(8px, 2vw, 15px);
    padding: clamp(15px, 3vw, 25px) 0;
    flex-wrap: wrap;
    overflow-x: auto;
}

.tab-btn {
    padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 28px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-height: 44px;
    white-space: nowrap;
}

/* Service Hero */
.service-hero {
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(40px, 8vw, 80px);
    flex-wrap: wrap;
}

.hero-text,
.hero-image {
    flex: 1 1 min(500px, 100%);
}

.hero-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.hero-text .lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Service Details */
.service-details {
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: clamp(40px, 8vw, 80px);
}

/* Process Steps */
.steps-container {
    gap: clamp(20px, 4vw, 40px);
}

.step {
    padding: clamp(20px, 4vw, 30px);
}

.step-number {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

/* Formulaires */
.form-row {
    gap: clamp(20px, 4vw, 30px);
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 min(300px, 100%);
}

.service-contact-form select,
.service-contact-form input,
.service-contact-form textarea {
    padding: clamp(12px, 2.5vw, 16px) clamp(15px, 3vw, 20px);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-contact-form textarea {
    min-height: clamp(120px, 25vw, 180px);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
}

.cta-section .container {
    gap: clamp(30px, 6vw, 50px);
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.cta-buttons {
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
}

/* Footer */
.footer-main {
    padding: var(--section-padding) 0 clamp(30px, 6vw, 50px);
}

.footer-col h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.social-links a {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
}

.contact-info {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.footer-bottom {
    padding: clamp(15px, 3vw, 25px) 0;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.footer-links {
    gap: clamp(15px, 3vw, 25px);
}

/* ===== MEDIA QUERIES ESSENTIELLES ===== */

/* Tablettes (≤1024px) */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85%);
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .service-hero {
        flex-direction: column;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-tabs {
        justify-content: flex-start;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Petits mobiles (≤480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero {
        min-height: 65vh;
        margin-top: 60px;
    }
    
    .services-header {
        margin-top: 60px;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Très petits écrans (≤360px) */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .services-tabs {
        justify-content: flex-start;
    }
}

/* Orientation paysage mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .nav-menu {
        padding-top: 70px;
        overflow-y: auto;
    }
}

/* Accessibilité - Réduction mouvement */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}