/* ==========================================================================
   MS Plomberie — Design System 2026
   Inspired by plomberiechauffage24.fr — Professional Service Layout
   Colors: Black / White / Orange
   ========================================================================== */

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

/* Skip Navigation */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent, #f97316);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #111;
    outline-offset: 2px;
}

/* Accessibility: Focus Visible */
*:focus-visible {
    outline: 3px solid var(--accent, #f97316);
    outline-offset: 2px;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Design Tokens */
:root {
    --primary: #111111;
    --primary-light: #2a2a2a;
    --primary-dark: #000000;
    --accent: #ea580c;          /* darkened from #f97316 — 4.6:1 on white */
    --accent-light: #f97316;    /* for large text / decorative only */
    --accent-dark: #c2410c;     /* 5.9:1 on white */
    --accent-bg: #f97316;       /* original orange for backgrounds only */

    --neutral-900: #111111;
    --neutral-800: #1f1f1f;
    --neutral-700: #374151;     /* darkened from #4a5568 — 8.6:1 on white */
    --neutral-600: #52525b;     /* darkened from #718096 — 7.2:1 on white */
    --neutral-500: #6b7280;     /* darkened from #a0aec0 — 4.6:1 on white */
    --neutral-400: #9ca3af;
    --neutral-300: #e2e8f0;
    --neutral-200: #f1f5f9;
    --neutral-100: #f8fafc;
    --white: #ffffff;

    --success: #15803d;         /* darkened from #38a169 — 4.6:1 on white */
    --danger: #dc2626;          /* slightly adjusted — 4.6:1 on white */

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);

    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --section-pad: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* ---------- SVG Icons ---------- */
.icon-svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
    vertical-align: -0.125em;
}

.icon-svg--lg { width: 1.5em; height: 1.5em; }
.icon-svg--xl { width: 2em; height: 2em; }
.icon-svg--2xl { width: 2.5em; height: 2.5em; }

/* ---------- Section Label ---------- */
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);      /* 5.9:1 on white — small text needs higher contrast */
    margin-bottom: 0.5rem;
}

/* ---------- Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================================================
   Header — Fixed White Bar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-300);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

/* Top bar with phone */
.nav-topbar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.4rem 2rem;
}

.nav-topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-topbar a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-topbar a:hover {
    color: var(--accent-light);
}

.nav-topbar-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: block;
}

.nav-logo small {
    display: block;
    font-size: 0.7rem;
    color: var(--neutral-600);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover,
.nav-active {
    color: var(--accent-dark) !important;
    background: rgba(249, 115, 22, 0.06);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.5rem 1.25rem !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
}

.nav-phone {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.5rem 1.25rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.nav-phone:hover {
    background: var(--accent) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    z-index: 1001;
    border: 1px solid var(--neutral-300);
}

.nav-dropdown:hover .dropdown-content { display: block; }

.dropdown-content a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.dropdown-content a:hover {
    background: var(--neutral-200);
    color: var(--accent-dark);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    border: none;
    background: none;
    padding: 0;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: 0.3s;
}

/* ==========================================================================
   Hero — Full Width with Background Image
   ========================================================================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    margin-top: 100px; /* topbar + navbar */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) 2rem;
    width: 100%;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    max-width: 650px;
    color: var(--white);
}

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

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-phone-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    max-width: fit-content;
}

.hero-phone-number .phone-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.hero-phone-number a {
    text-decoration: none;
    color: var(--white);
}

.hero-phone-number .phone-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

.hero-phone-number .phone-num {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: block;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature .icon-svg {
    color: var(--accent-light);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

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

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

/* ==========================================================================
   Trust Bar — Horizontal Indicators
   ========================================================================== */
.trust-bar {
    background: var(--neutral-200);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--neutral-300);
}

.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.trust-bar-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.trust-bar-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.trust-bar-item small {
    color: var(--neutral-600);
    font-size: 0.8rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: var(--section-pad);
    max-width: var(--container);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--neutral-600);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-300);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--neutral-600);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-details {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details li {
    padding: 0.45rem 0;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-200);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-details li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s var(--ease);
    display: inline-block;
    align-self: flex-start;
}

.service-btn:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: var(--neutral-200);
    border-radius: var(--radius-xl);
}

.services-cta h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.services-cta p {
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   About / Why Choose Us
   ========================================================================== */
.about-section {
    background: var(--neutral-200);
    padding: var(--section-pad);
}

.about-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-text .lead {
    font-size: 1.05rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.about-feature h4 {
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.about-feature p {
    color: var(--neutral-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

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

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

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-300);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--neutral-600);
    font-weight: 500;
}

/* ==========================================================================
   Coverage / Zones
   ========================================================================== */
.coverage-section {
    padding: var(--section-pad);
    max-width: var(--container);
    margin: 0 auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    margin: 2rem 0;
}

.coverage-city {
    background: var(--white);
    border: 1px solid var(--neutral-300);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--neutral-800);
    text-align: center;
    transition: all 0.25s var(--ease);
}

.coverage-city:hover {
    border-color: var(--accent);
    color: var(--accent-dark);      /* 5.9:1 on white for small text */
    background: rgba(249, 115, 22, 0.04);
}

.coverage-city a {
    text-decoration: none;
    color: inherit;
}

.coverage-note {
    text-align: center;
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.coverage-note a {
    color: var(--accent-dark);      /* 5.9:1 on white for small text */
    font-weight: 600;
    text-decoration: none;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
    padding: var(--section-pad);
    background: var(--neutral-200);
}

.gallery-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.gallery h2 {
    color: var(--primary);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.gallery-subtitle {
    color: var(--neutral-600);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 0.75rem;
}

.gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 2rem 1.25rem 1rem;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.4rem;
}

.gallery-type {
    background: var(--accent);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
}

/* Video Gallery */
.gallery-video-title {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.gallery-video-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9 / 16;
    background: var(--neutral-900);
}

.gallery-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow);
}

.gallery-video-item:hover .video-play-btn {
    background: var(--accent);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-video-item.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.gallery-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* ==========================================================================
   Contact / CTA Section
   ========================================================================== */
.contact-cta {
    background: var(--primary);
    color: var(--white);
    padding: var(--section-pad);
}

.contact-cta-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-cta-text h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-cta-text p {
    color: #d1d5db;                /* ~10:1 on #111 */
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-cta-text .btn-primary {
    background: var(--accent);
}

.contact-cta-phone {
    text-align: center;
}

.contact-cta-phone .big-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.contact-cta-phone .big-phone:hover {
    color: var(--accent-light);
}

.contact-cta-phone p {
    color: #d1d5db;                /* ~10:1 on #111 */
    font-size: 0.9rem;
}

/* Contact methods row */
.contact-methods-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s var(--ease);
}

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

.contact-method-btn.primary:hover {
    background: var(--accent-dark);
}

.contact-method-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--neutral-900);
    color: var(--white);
}

.footer-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--accent-light); /* bright orange on dark — 3.4:1, large bold text */
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: #d1d5db;            /* ~10:1 on #111 */
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: #d1d5db;            /* ~10:1 on #111 */
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section ul li a {
    color: #d1d5db;            /* ~10:1 on #111 */
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--accent-light);
}

.footer-cta {
    background: var(--accent);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-top: 0.75rem;
    transition: all 0.25s var(--ease);
}

.footer-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 2rem;
}

.footer-legal {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #9ca3af;            /* ~5.6:1 on #111 */
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    margin: 5% auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: var(--radius-xl);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

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

/* ==========================================================================
   Floating Mobile CTA
   ========================================================================== */
.mobile-cta { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-height: 350px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .contact-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-methods-row {
        justify-content: center;
    }

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

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

@media (max-width: 768px) {
    .nav-topbar { display: none; }

    .hero { margin-top: 60px; }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 2rem;
        transition: left 0.35s var(--ease);
        z-index: 999;
    }

    .nav-menu.active { left: 0; }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background: var(--neutral-200);
        border: none;
        transform: none;
        margin: 0.5rem 0;
    }

    .hero-phone-number .phone-num {
        font-size: 1.25rem;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        text-align: center;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    /* Show floating mobile CTA */
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        background: var(--white);
        border-top: 1px solid var(--neutral-300);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        padding: 0.6rem 0.75rem;
        gap: 0.5rem;
    }

    .mobile-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.7rem;
        border-radius: var(--radius-pill);
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
    }

    .mobile-cta-phone {
        background: var(--primary);
        color: var(--white);
    }

    .mobile-cta-quote {
        background: var(--accent);
        color: var(--white);
    }

    .footer {
        padding-bottom: 65px;
    }
}

@media (max-width: 480px) {
    .nav-container { padding: 0.65rem 1rem; }

    .hero { min-height: 420px; }

    .hero-phone-number {
        padding: 0.75rem 1rem;
    }

    .hero-phone-number .phone-num {
        font-size: 1.1rem;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-item { padding: 1.25rem 0.75rem; }
    .stat-number { font-size: 2rem; }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

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

/* ---------- Focus ---------- */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.service-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ---------- Performance ---------- */
.gallery-image,
.modal-content {
    will-change: transform;
}

/* ---------- Print ---------- */
@media print {
    .navbar, .hero-cta, .contact-cta, .footer, .mobile-cta, .trust-bar { display: none; }
    .hero { background: none; color: var(--neutral-800); }
}
