/* ===========================================
   PLOMBIER SARTROUVILLE - CSS
   =========================================== */

/* Variables */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --secondary: #1e293b;
    --secondary-dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --text-white: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-sm {
    max-width: 900px;
}

/* ===========================================
   TOP BAR
   =========================================== */
.top-bar {
    background: var(--secondary-dark);
    color: var(--text-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

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

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.top-bar-right .highlight {
    color: var(--primary);
    font-weight: 500;
}

/* ===========================================
   HEADER
   =========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s;
}

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

.nav-desktop a:hover::after {
    width: 100%;
}

.header-phone {
    display: none;
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.btn-phone-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-phone-mobile svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .btn-phone-mobile {
        display: none;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text);
}

.mobile-menu {
    display: none;
    padding: 1rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-nav a {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: var(--bg-white);
    color: var(--primary);
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

.btn-phone-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-phone-icon svg {
    width: 20px;
    height: 20px;
}

.btn-phone-text {
    text-align: left;
}

.btn-phone-text .small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-phone-text .number {
    display: block;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary), #0c4a6e);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-left {
    color: white;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-subtitle .highlight {
    color: var(--primary);
    font-weight: 600;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.feature-item span {
    color: #e2e8f0;
}

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

.hero-right {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.hero-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-card-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.hero-card-header p {
    color: var(--text-light);
}

.phone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .phone-card {
        flex-direction: row;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.phone-card:hover {
    transform: scale(1.02);
}

.phone-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .phone-card-icon {
        width: 64px;
        height: 64px;
    }
}

.phone-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

@media (min-width: 640px) {
    .phone-card-icon svg {
        width: 32px;
        height: 32px;
    }
}

.phone-card-text {
    color: white;
    text-align: center;
}

@media (min-width: 640px) {
    .phone-card-text {
        text-align: left;
    }
}

.phone-card-text .small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .phone-card-text .small {
        font-size: 0.875rem;
    }
}

.phone-card-text .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .phone-card-text .number {
        font-size: 1.875rem;
    }
}

.price-box {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.price-box .price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-box .price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.address-box svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.address-box strong {
    display: block;
    color: var(--secondary);
}

.address-box span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.hero-badge-center {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-badge-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--success);
    color: white;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-badge-inline svg {
    width: 20px;
    height: 20px;
}

/* ===========================================
   SECTIONS
   =========================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-badge.green {
    background: #d1fae5;
    color: var(--success);
}

.section-badge.orange {
    background: #fef3c7;
    color: var(--warning);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===========================================
   SERVICES
   =========================================== */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px -2px rgba(14, 165, 233, 0.3);
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-details {
    margin-bottom: 1.25rem;
}

.service-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-details .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.2s;
}

.service-cta:hover {
    gap: 0.75rem;
}

.service-cta svg {
    width: 16px;
    height: 16px;
}

.services-cta-banner {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.services-cta-banner h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .services-cta-banner h3 {
        font-size: 2rem;
    }
}

.services-cta-banner p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
}

.services-cta-banner .btn-primary {
    position: relative;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

/* ===========================================
   AVANTAGES
   =========================================== */
.avantages {
    padding: 5rem 0;
    background: white;
}

.avantages-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avantage-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, var(--bg-light), white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.avantage-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.avantage-icon {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.avantage-icon > div:first-child,
.avantage-icon > svg:first-child {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), #bae6fd);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.avantage-card:hover .avantage-icon > div:first-child {
    background: linear-gradient(135deg, #bae6fd, var(--primary-light));
}

.avantage-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: transform 0.3s;
}

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

.avantage-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.avantage-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

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

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: var(--radius-lg);
}

.stat-card .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-card .stat-value {
        font-size: 2.5rem;
    }
}

.stat-card .stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ===========================================
   TEMOIGNAGES
   =========================================== */
.temoignages {
    padding: 5rem 0;
    background: var(--bg-light);
}

.temoignages-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .temoignages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.temoignage-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: box-shadow 0.3s;
}

.temoignage-card:hover {
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.quote-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.star-filled {
    width: 20px;
    height: 20px;
    color: var(--warning);
    fill: var(--warning);
}

.temoignage-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--secondary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .rating-summary {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.rating-left {
    text-align: center;
}

@media (min-width: 768px) {
    .rating-left {
        text-align: left;
    }
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-right: 0.5rem;
}

.rating-stars {
    display: inline-flex;
    gap: 4px;
    vertical-align: middle;
}

.rating-text {
    display: block;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.rating-right {
    display: flex;
    gap: 3rem;
}

.rating-stat {
    text-align: center;
}

.rating-stat .stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===========================================
   FAQ
   =========================================== */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .faq-list {
        padding: 2rem;
    }
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===========================================
   CONTACT
   =========================================== */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-light), white);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.contact-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: all 0.2s;
    text-align: center;
}

@media (min-width: 640px) {
    .contact-phone {
        padding: 2rem;
    }
}

.contact-phone:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0369a1);
}

.contact-phone-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .contact-phone-icon {
        width: 80px;
        height: 80px;
    }
}

.contact-phone:hover .contact-phone-icon {
    background: rgba(255, 255, 255, 0.3);
}

.contact-phone-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

@media (min-width: 640px) {
    .contact-phone-icon svg {
        width: 40px;
        height: 40px;
    }
}

.contact-phone-text {
    color: white;
    text-align: center;
}

@media (min-width: 640px) {
    .contact-phone-text {
        text-align: left;
    }
}

.contact-phone-text .small {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.contact-phone-text .number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (min-width: 400px) {
    .contact-phone-text .number {
        font-size: 1.5rem;
    }
}

@media (min-width: 640px) {
    .contact-phone-text .number {
        font-size: 2.5rem;
    }
}

.contact-phone-text .availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.contact-phone-text .availability svg {
    width: 16px;
    height: 16px;
}

.contact-info-list {
    padding: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

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

.contact-info-icon.blue {
    background: var(--primary-light);
}

.contact-info-icon.blue svg {
    color: var(--primary);
}

.contact-info-icon.green {
    background: #d1fae5;
}

.contact-info-icon.green svg {
    color: var(--success);
}

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

.contact-info-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.contact-info-item span {
    display: block;
    color: var(--text-light);
}

.contact-info-item .highlight {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-features {
    margin-bottom: 2rem;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.contact-features svg {
    width: 24px;
    height: 24px;
    padding: 4px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
}

.contact-cta {
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.contact-cta p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

/* ===========================================
   ZONES
   =========================================== */
.zones {
    padding: 4rem 0;
    background: var(--secondary-dark);
}

.zones h2 {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .zones h2 {
        font-size: 2rem;
    }
}

.zones > .container > p {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.zones-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--secondary);
    border-radius: var(--radius);
    transition: background 0.2s;
}

.zone-item:hover {
    background: #334155;
}

.zone-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.zone-item span {
    color: #e2e8f0;
    font-weight: 500;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--secondary-dark);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #334155;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-col {
    color: #94a3b8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
}

.footer-logo .logo-text h3 {
    font-size: 1.25rem;
    color: white;
}

.footer-logo .logo-text span {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-col > p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-col ul a svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.footer-col ul a:hover svg {
    transform: translateX(4px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.contact-list strong {
    display: block;
    color: white;
}

.contact-list .highlight {
    color: var(--success);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #64748b;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

/* ===========================================
   FLOATING CTA
   =========================================== */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.5);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(14, 165, 233, 0.6);
}

.floating-cta-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cta-icon svg {
    width: 24px;
    height: 24px;
    animation: pulse 2s infinite;
}

.floating-cta-text {
    display: none;
}

@media (min-width: 640px) {
    .floating-cta-text {
        display: block;
    }
}

.floating-cta-text .small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.floating-cta-text .number {
    display: block;
    font-weight: 700;
}

/* Pulse animation for floating CTA */
.floating-cta::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--primary);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    animation: floating-pulse 2s infinite;
}

@keyframes floating-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

/* MOBILE/TABLET : cacher le bouton téléphone du header (le gros bloc bleu) */
@media (max-width: 1024px){
  .header-phone,
  header .btn-phone,
  #header a[href^="tel"]{
    display: none !important;
  }
}

