/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #c93333;
    --red-dark: #a82828;
    --red-light: #e85555;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg: #ffffff;
    --bg-light: #f8f9fc;
    --bg-warm: #faf8f5;
    --border: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-accent {
    color: var(--red);
}


/* ==================== HERO ==================== */
.hero {
    position: relative;
    background: url("https://peinture.qualiteetudiants.com/wp-content/uploads/2024/08/qualite-etudiants.jpeg") center center / cover no-repeat;
    color: #fff;
    padding: 60px 0 80px;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.7);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-logo img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-tagline {
    display: inline-block;
    background: rgba(201, 51, 51, 0.15);
    border: 1px solid rgba(201, 51, 51, 0.3);
    color: var(--red-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .text-accent {
    color: var(--red-light);
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}


/* ==================== FORM CARD ==================== */
.hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
    color: var(--text);
    position: relative;
    overflow: visible;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    white-space: nowrap;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 51, 51, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ===== Custom Select Dropdown ===== */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-muted);
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.custom-select-trigger.has-value {
    color: var(--text);
}

.custom-select-trigger:hover {
    border-color: #ccc;
}

.custom-select.open .custom-select-trigger {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 51, 51, 0.1);
}

.custom-select-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--text-muted);
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    overflow: hidden;
    animation: selectDropIn 0.2s ease;
}

.custom-select.open .custom-select-options {
    display: block;
}

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

.custom-select-option {
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s ease;
}

.custom-select-option:hover {
    background: #fef2f2;
    color: var(--red-dark);
}

.custom-select-option.selected {
    background: var(--red);
    color: #fff;
    font-weight: 600;
}

.custom-select-option:not(:last-child) {
    border-bottom: 1px solid #f3f3f3;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 51, 51, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success i {
    font-size: 48px;
    color: #22c55e;
}

.form-success h3 {
    font-size: 22px;
    color: var(--dark);
}

.form-success p {
    color: var(--text-light);
    font-size: 15px;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    margin-top: 12px;
}

.form-error i {
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.form-error p {
    font-size: 13px;
    color: var(--red-dark);
    margin: 0;
}


/* ==================== TRUST BADGES ==================== */
.trust-badges {
    padding: 60px 0;
    background: var(--bg);
    position: relative;
    z-index: 2;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 12px;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.badge-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 51, 51, 0.2);
}

.badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.badge-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}


/* ==================== POURQUOI NOUS ==================== */
.why-us {
    padding: 80px 0;
    background: var(--bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-us-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.why-us-content .btn-cta {
    margin-top: 12px;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-us-image {
        max-height: 300px;
    }
}


/* ==================== SERVICES ==================== */
.services {
    padding: 80px 0;
    background: var(--bg-warm);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.service-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}


/* ==================== GOOGLE REVIEWS ==================== */
.google-reviews {
    padding: 80px 0;
    background: var(--bg);
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-logo {
    flex-shrink: 0;
}

.google-brand-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.google-rating-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.google-rating-stars {
    display: flex;
    gap: 2px;
}

.google-rating-stars i {
    color: #fbbc04;
    font-size: 18px;
}

.google-rating-count {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: #1a73e8;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-google-reviews:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.btn-google-reviews i {
    font-size: 12px;
}

.google-reviews-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: #dadce0 transparent;
    cursor: grab;
}

.google-reviews-grid.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.google-reviews-grid.dragging {
    user-select: none;
    -webkit-user-select: none;
}

.google-reviews-grid.dragging .g-review-card {
    pointer-events: none;
}

.google-reviews-grid::-webkit-scrollbar {
    height: 6px;
}

.google-reviews-grid::-webkit-scrollbar-track {
    background: transparent;
}

.google-reviews-grid::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 3px;
}

.google-reviews-grid::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.google-reviews-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 15px;
}

.google-reviews-loading i {
    margin-right: 8px;
}

/* Individual Google Review Card */
.g-review-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 340px;
    max-width: 380px;
    flex-shrink: 0;
}

.g-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.g-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.g-review-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.g-review-author {
    flex: 1;
    min-width: 0;
}

.g-review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.g-review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.g-review-google-icon {
    flex-shrink: 0;
}

.g-review-google-icon svg {
    width: 20px;
    height: 20px;
}

.g-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.g-review-stars i {
    color: #fbbc04;
    font-size: 14px;
}

.g-review-stars i.empty {
    color: #dadce0;
}

.g-review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
}

.g-review-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.g-review-readmore {
    color: #1a73e8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px 0 0;
    font-family: inherit;
}

.g-review-readmore:hover {
    text-decoration: underline;
}

.g-review-photos {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
    cursor: grab;
}

.g-review-photos.dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}

.g-review-photos::-webkit-scrollbar {
    display: none;
}

.g-review-photos img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}


/* ==================== IMAGE BANNER ==================== */
.confetti-zone {
    position: relative;
}

#confetti-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.image-banner {
    overflow: hidden;
    padding: 40px 0;
    background: var(--dark);
    position: relative;
}

.image-banner-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: bannerScroll 40s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.image-banner-track img {
    height: 220px;
    width: 330px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    -webkit-user-drag: none;
    user-select: none;
    transform: translateZ(0);
}

@keyframes bannerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .image-banner-track img {
        height: 160px;
    }

    .image-banner {
        padding: 24px 0;
    }
}


/* ==================== CTA ==================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0f3460 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23ffffff' fill-opacity='0.03'%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");
    pointer-events: none;
}

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

.cta h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 51, 51, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}


/* ==================== FOOTER ==================== */
.footer {
    padding: 32px 0;
    background: #111;
    color: rgba(255,255,255,0.5);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 32px;
    height: auto;
}

.footer-logo span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.footer p {
    font-size: 13px;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-form-wrapper {
        justify-content: center;
    }

    .form-card {
        max-width: 520px;
    }

    .badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .why-us-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

    /* Why us */
    .why-us {
        padding: 50px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .why-us-image {
        max-height: 280px;
    }

    .why-us-content h2 {
        font-size: 24px;
    }

    .why-us-content .btn-cta {
        width: 100%;
        justify-content: center;
    }

    /* Avis */
    .google-reviews {
        padding: 50px 0;
    }

    .google-reviews-grid .g-review-card {
        min-width: 280px;
        max-width: 320px;
    }

    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Bannière images */
    .image-banner {
        padding: 24px 0;
    }

    .image-banner-track img {
        height: 160px;
        width: 240px;
    }

    /* Form */
    .form-card {
        padding: 28px 20px;
    }

    .form-header h2 {
        font-size: 18px;
    }

    /* CTA */
    .cta {
        padding: 50px 0;
    }

    .cta p {
        font-size: 15px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 18px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-divider {
        display: none;
    }

    .badge-item {
        min-width: 130px;
        padding: 18px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .google-reviews-grid .g-review-card {
        min-width: 260px;
        max-width: 290px;
        padding: 18px;
    }

    .image-banner-track img {
        height: 130px;
        width: 195px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 22px 16px;
    }

    .form-header h2 {
        font-size: 17px;
        white-space: normal;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .why-us-content p {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 22px;
    }
}
