:root {
    --primary: #1e3a8a;
    --accent: #FF4D00;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(#CBD5E1 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

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

/* Header */
header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-phone {
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-phone:hover {
    transform: translateY(-2px);
    background-color: #e64600;
}

.icon-small {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--primary);
    max-width: 800px;
}

h1 .highlight {
    color: var(--accent);
}

.description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e64600;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid #E2E8F0;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.icon-suffix {
    width: 18px;
    height: 18px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.review-badge {
    position: absolute;
    bottom: 40px;
    left: 10px;
    background-color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i, .stars svg {
    width: 16px;
    height: 16px;
    color: var(--accent) !important;
    fill: var(--accent) !important;
    stroke: var(--accent) !important;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 14px;
    color: var(--primary);
}

.badge-text span {
    font-size: 12px;
    color: var(--text-light);
}

.image-caption {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-caption i {
    width: 14px;
    height: 14px;
}

/* Marquee */
.marquee {
    background-color: var(--primary);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    padding-right: 60px;
}

.marquee-track span {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.marquee-track i {
    color: var(--accent);
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    max-width: 280px;
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.2);
}

.about-badge h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-badge p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.section-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--primary);
}

.about-text {
    margin-bottom: 48px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background-color: var(--bg-light);
    border: 1px solid #E2E8F0;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card i {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-card span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.services-header .header-left {
    max-width: 600px;
}

.services-header .header-right {
    max-width: 400px;
    padding-bottom: 8px;
}

.services-header h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.services-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.dark {
    background-color: var(--primary);
    color: var(--white);
}

.service-card.light {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    color: var(--primary);
}

.card-number {
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper.accent {
    background-color: var(--accent);
    color: var(--white);
}

.card-icon-wrapper.primary {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
}

.light .tag {
    background-color: var(--white);
    border-color: #E2E8F0;
    color: var(--text-light);
}

.dark .tag {
    background-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
}

.btn-primary-light {
    background-color: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-top: 24px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary-light:hover {
    background-color: #e64600;
    transform: translateY(-2px);
}

/* Process Section */
.process {
    padding: 120px 0;
    background-color: var(--white);
}

.process-header {
    text-align: left;
    margin-bottom: 64px;
}

.process-header h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-top: 16px;
}

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

.process-card {
    position: relative;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.step-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.step-watermark {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 120px;
    font-weight: 900;
    color: #F1F5F9;
    line-height: 1;
    z-index: 1;
    user-select: none;
}

/* Why Section */
.why {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: flex-start;
}

.why-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 32px;
}

.why-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 500px;
}

.why-image img {
    width: 100%;
    height: 400px; /* Rectangle horizontal comme sur la capture */
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-card {
    background-color: var(--white);
    padding: 48px 40px; /* Plus de padding vertical pour l'aspect aéré */
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    transition: transform 0.3s ease;
    min-height: 340px; /* Blocs plus hauts sur PC */
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.why-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon i {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Zone Section */
.zone {
    padding: 60px 0;
    background-color: var(--primary);
    color: var(--white);
}

.zone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zone-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    max-width: 900px;
}

.zone-description {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 500px;
}

.location-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 24px;
    max-width: 480px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 77, 0, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.location-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.maps-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.maps-link:hover {
    text-decoration: underline;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-tag {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: all 0.2s;
}

.city-tag:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.city-tag.accent {
    border-color: var(--accent);
    color: var(--accent);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    margin-bottom: 64px;
    text-align: center;
}

.faq-header h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-top: 16px;
}

.faq-list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.faq-question span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.2s;
}

.faq-question.active span {
    color: var(--accent);
}

.faq-question i {
    position: absolute;
    right: 24px;
    color: #94A3B8;
    width: 18px;
    height: 18px;
    transition: transform 0.3s, color 0.2s;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 32px 24px 32px;
    text-align: center;
    display: none;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: -8px;
    padding-top: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.contact-info-left h2 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 64px;
}

.contact-info-left h2 .highlight {
    color: var(--accent);
}

.phone-display {
    margin-bottom: 48px;
}

.compose-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.huge-phone {
    font-size: 88px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.huge-phone:hover {
    color: var(--accent);
}

.huge-phone i {
    width: 48px;
    height: 48px;
    color: var(--text-light);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    padding: 20px 40px;
    font-size: 18px;
    border: none;
    width: fit-content;
}

.btn-accent:hover {
    background-color: #e64600;
    transform: translateY(-4px);
}

.contact-cards-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    gap: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.8;
}

.info-text strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--white);
}

.info-text p {
    color: var(--white);
    font-size: 15px;
    opacity: 0.9;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    color: var(--white);
}

.hours-list span:first-child {
    color: var(--white);
    opacity: 0.9;
}

.closed {
    color: #ef4444 !important;
}

/* Footer */
.footer {
    padding: 80px 0 40px 0;
    background-color: var(--primary);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.logo-icon.accent {
    background-color: var(--accent);
}

.brand-description {
    font-size: 15px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 320px;
}

.footer-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
    transition: all 0.2s;
}

.footer-nav a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--white);
    opacity: 0.9;
}

.footer-contact-list a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact-list i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--white);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .contact-info-left h2 {
        font-size: 48px;
    }
    
    .huge-phone {
        font-size: 48px;
    }

    .faq-header h2 {
        font-size: 36px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
}

/* Utility Classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-only {
        display: inline-block;
    }
    
    .desktop-only {
        display: none !important;
    }

    /* Step 1: Header & Top Hero Optimization */
    header {
        padding: 12px 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 16px;
    }

    .tagline {
        display: none;
    }

    .btn-phone {
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero {
        padding: 40px 0; /* Reduced top padding */
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .hero-visual {
        order: -1; /* Place image at the top */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .badge {
        margin-bottom: 20px; /* Reduced from 32px */
        font-size: 10px;
        align-self: flex-start;
    }

    h1 {
        font-size: 32px !important; /* Smaller to fit 3 lines max */
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }

    h1 br {
        display: none; /* Ignore forced breaks on mobile */
    }

    .description {
        text-align: left;
        font-size: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: none; /* Removed as requested on mobile */
    }

    .experience-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--accent);
        color: var(--white);
        padding: 12px 16px;
        border-radius: var(--radius-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
        z-index: 10;
    }

    .exp-val {
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
    }

    .exp-text {
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.2;
        margin-top: 4px;
    }

    .image-wrapper img {
        height: 350px; /* Slightly taller for better visibility as first element */
    }

    .image-caption {
        display: none; /* Remove location label on mobile as requested */
    }

    .review-badge {
        bottom: 15px; /* Lowered from 40px to be near the bottom */
        left: 10px;
        padding: 12px 16px;
    }

    /* Step 2: About Section Optimization */
    .about {
        padding: 50px 0;
    }

    .about-grid {
        display: flex;
        flex-direction: column; /* Stack vertically */
    }

    .about-content {
        order: 1; /* Text first */
        text-align: left; /* Back to left alignment */
        margin-bottom: 30px;
    }

    .about-visual {
        order: 2; /* Image last */
        max-width: 100%;
    }

    .about-visual img {
        height: 250px; /* Smaller image size */
        border-radius: var(--radius-md);
    }

    .about-badge {
        display: none; /* Removed as requested on mobile */
    }

    .about-badge h3 {
        font-size: 16px;
    }

    .feature-grid {
        text-align: left; /* Keep features readable */
    }

    /* Restauration Process Mobile */
    .process {
        padding: 60px 0;
    }

    .process-header h2 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .process-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .process-card {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .process-card h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .process-card p {
        font-size: 13px;
    }

    .step-watermark {
        font-size: 60px;
        top: 0;
        right: 10px;
        opacity: 0.5;
    }

    .faq {
        padding: 40px 0;
        align-items: flex-start;
    }

    .faq-header {
        text-align: left;
        margin-bottom: 32px;
        width: 100%;
    }

    .faq-header h2 {
        font-size: 32px !important;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-info-left h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .huge-phone {
        font-size: 32px;
        gap: 12px;
    }

    /* Section Why Mobile */
    .why {
        padding: 60px 0;
    }

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

    .why-content h2 {
        font-size: 32px !important;
        margin-bottom: 20px;
        text-align: left;
    }

    .why-description {
        margin-bottom: 30px;
        text-align: left;
        max-width: 100%;
    }

    .why-image img {
        height: 300px;
        margin-bottom: 20px;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 16px;
        min-height: auto;
    }

    .why-icon {
        margin-bottom: 12px;
        width: 40px;
        height: 40px;
    }

    /* Section Zone Mobile */
    .zone {
        padding: 50px 0;
    }

    .zone-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .zone-content h2 {
        font-size: 32px !important;
        white-space: normal !important;
    }

    .zone-content h2 span {
        white-space: normal !important;
    }

    .zone-description {
        margin-bottom: 30px;
    }

    .location-card {
        padding: 20px;
        gap: 16px;
        width: 100%;
    }

    .tag-cloud {
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
    }

    .city-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    nav {
        display: none; /* Hide nav to save space */
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .huge-phone {
        font-size: 32px;
        gap: 12px;
    }
    
    .huge-phone i {
        width: 24px;
        height: 24px;
    }
}

/* Consolidation des optimisations mobiles restantes */
@media (max-width: 768px) {
    .services {
        padding: 50px 0;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
}
