/* ============================================
   A.LAUTH ÉLECTRICITÉ — Feuille de style principale
   Palette inspirée du logo (teal / sarcelle)
   ============================================ */

:root {
    --teal: #115B68;
    --teal-dark: #0B3F49;
    --teal-light: #1E7A8C;
    --teal-pale: #E8F2F3;
    --teal-pale-2: #D5E8EA;
    --accent: #F2A93B;
    --accent-dark: #D6901F;
    --white: #ffffff;
    --gray-50: #F8FAFA;
    --gray-100: #F1F4F5;
    --gray-200: #E2E8E9;
    --gray-300: #C9D4D6;
    --gray-600: #5A6B6E;
    --gray-800: #243033;
    --shadow: rgba(17, 91, 104, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--teal-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 600;
}

a {
    color: var(--teal);
}

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

/* ============================================
   TOP BAR — coordonnées (téléphone / email / horaires)
   ============================================ */
.topbar {
    background: var(--teal-dark);
    color: var(--white);
    font-size: 0.88rem;
    padding: 0.5rem 2rem;
}

.topbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-info {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-info a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s ease;
}

.topbar-info a:hover {
    opacity: 0.8;
}

.topbar-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.topbar-hours {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.85);
}

.topbar-urgence {
    background: var(--accent);
    color: var(--teal-dark);
    font-weight: 600;
    padding: 0.15rem 0.85rem;
    border-radius: 50px;
    text-decoration: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-link img {
    height: 72px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

.cta-button {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--teal);
    cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(242, 169, 59, 0.10) 0%, transparent 70%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 540px;
}

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

.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    padding: 1rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: 10px;
    box-shadow: 0 20px 60px var(--shadow);
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/* ============================================
   BADGES / REASSURANCE
   ============================================ */
.reassurance {
    background: var(--teal-dark);
    color: var(--white);
    padding: 3.5rem 2rem;
}

.reassurance-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.reassurance-item {
    text-align: center;
}

.reassurance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reassurance-icon svg {
    width: 100%;
    height: 100%;
}

.reassurance-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reassurance-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

/* ============================================
   SECTION HEADERS / LAYOUT
   ============================================ */
.section-header {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-label {
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 1rem;
    line-height: 1.8;
}

section {
    padding: 3.5rem 2rem;
}

.page-hero {
    padding: 3rem 2rem 2.5rem;
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero .section-label {
    justify-content: center;
    display: block;
}

.page-hero p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.page-hero .breadcrumb {
    text-align: center;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--teal);
    text-decoration: none;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
    background: var(--white);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.25rem;
}

.service-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.25rem;
    align-items: start;
}

@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--gray-50);
    padding: 2.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px var(--shadow);
    background: var(--white);
    border-color: var(--teal-pale-2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 0.85rem;
    color: var(--teal-dark);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.service-benefits li::before {
    content: '✓';
    color: var(--accent-dark);
    font-weight: 700;
    flex-shrink: 0;
}

.service-keywords {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 40px var(--shadow);
}

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

.about-image-small {
    max-width: 420px;
    margin: 0 auto;
}

.about-image-small img {
    aspect-ratio: 3/4;
}

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

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--teal-dark);
}

.value-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray-600);
}

/* Guarantees badges */
.guarantees {
    margin-top: 3rem;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.65rem 1.25rem 0.65rem 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.guarantee-badge .icon-circle {
    width: 32px;
    height: 32px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-badge .icon-circle svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   GALLERY / RÉALISATIONS
   ============================================ */
.gallery {
    background: var(--white);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-pair {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.gallery-pair h3 {
    margin-bottom: 1.25rem;
    text-align: center;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ba-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.ba-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.ba-item img:hover {
    opacity: 0.9;
}

.ba-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--teal-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
}

.ba-item.after .ba-label {
    background: var(--accent-dark);
}

.gallery-pair p {
    margin-top: 1.25rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    text-align: center;
}

/* Photo gallery grid (réalisations en vrac) */
.photo-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.photo-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow);
}

.photo-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.photo-card img:hover {
    opacity: 0.9;
}

.photo-card-caption {
    padding: 1rem 1.25rem;
}

.photo-card-caption h4 {
    font-size: 1.05rem;
    color: var(--teal-dark);
    margin-bottom: 0.25rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}

.photo-card-caption p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   ZONES
   ============================================ */
.zone-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--teal-pale);
    border-radius: 10px;
    text-align: center;
}

.zone-section h3 {
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.zone-section p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

.zones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.zone-tag {
    background: var(--white);
    color: var(--teal-dark);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.92rem;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.2s ease;
}

.zone-tag:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--teal-dark);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-placeholder {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: 10px;
    padding: 2.5rem;
    color: var(--gray-600);
}

.testimonials-placeholder p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.google-reviews-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 24px var(--shadow);
}

.google-reviews-logo {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
}

.google-reviews-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--teal-dark);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.google-btn:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 20px var(--shadow);
    transform: translateY(-2px);
}

.google-btn svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact {
    background: var(--white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.25rem;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--teal-dark);
}

.contact-item-text p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-item-text a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

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

.submit-button {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.form-note {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
}

.form-status {
    margin-top: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-status.success {
    background: #E6F4EA;
    color: #1E7A4D;
    display: block;
}

.form-status.error {
    background: #FBEAEA;
    color: #C0392B;
    display: block;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--gray-50);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.75rem;
    margin-bottom: 1rem;
}

.faq-question {
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--gray-600);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ============================================
   CTA BAND (mid-page call to action)
   ============================================ */
.cta-band {
    background: var(--teal);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-band-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--teal-dark);
}

.cta-band .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.cta-band .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-band .btn-secondary:hover {
    background: var(--white);
    color: var(--teal);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--teal-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 64px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SEO KEYWORDS — texte discret bas de page
   ============================================ */
.seo-keywords {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--gray-200);
        gap: 1.25rem;
        align-items: flex-start;
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .topbar-content {
        justify-content: center;
        text-align: center;
    }

    .before-after {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-buttons,
    .cta-band-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1.25rem;
    }

    .topbar-info {
        justify-content: center;
        gap: 1rem;
    }

    .topbar-hours {
        display: none;
    }
}

/* ============================================
   LIGHTBOX (zoom photo)
   ============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 63, 73, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-overlay img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.4);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
