/* ===================================================================
   RENRÖR VVS — Bold Industrial Plumbing Website
   Distinct identity: Heavy typography, orange+navy, left-accent cards,
   blocky sections, full-bleed hero — NOT a soft tech-startup site.
   =================================================================== */

/* --- Google Fonts: Barlow Condensed for headings, Source Sans for body --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
    /* Navy + Orange — trust, reliability, urgency */
    --primary: #1b3a5c;
    /* deep navy */
    --primary-mid: #1e4a7a;
    --primary-light: #2768aa;
    --primary-glow: rgba(27, 58, 92, 0.1);

    --accent: #f26522;
    /* construction orange */
    --accent-dark: #d4561a;
    --accent-light: rgba(242, 101, 34, 0.12);

    --danger: #c0392b;
    --success: #1a7a4a;
    --gold: #e5a000;

    /* Neutrals — warm off-white, not the cool fafafa */
    --bg: #f0eeeb;
    --bg-surface: #ffffff;
    --bg-dark: #111820;
    --bg-dark-alt: #192433;
    --bg-dark-card: #1e2d3f;

    --text: #111820;
    --text-secondary: #4a566a;
    --text-muted: #8899aa;
    --text-on-dark: #dce8f5;
    --text-on-dark-muted: #7a93aa;

    --border: #d6d0c8;
    --border-light: #e8e3dc;

    /* Typography */
    --font-body: 'Source Sans 3', 'Inter', -apple-system, sans-serif;
    --font-heading: 'Barlow Condensed', 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --section-py: 88px;
    --container-px: 20px;

    /* Radius — tighter / more angular than the tech site */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.25s;
}

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease);
}

/* Headings: tall condensed — very different from Outfit used on main site */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

ul {
    list-style: none;
}


/* --- Container --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}


/* ===================================================================
   BUTTONS — chunky, filled, no soft gradients
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 3px 0 var(--accent-dark), 0 4px 16px rgba(242, 101, 34, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 1px 0 var(--accent-dark), 0 2px 12px rgba(242, 101, 34, 0.3);
    transform: translateY(2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn-white:hover {
    background: var(--bg);
    transform: translateY(2px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}


/* ===================================================================
   SECTION HEADER — left-aligned by default, tag is an accent stripe
   =================================================================== */
.section-header {
    max-width: 600px;
    margin: 0 auto 52px;
    text-align: center;
}

/* Orange left-bar tag — vs the pill/badge used on main site */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-header h2 {
    margin-bottom: 12px;
    color: var(--primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}


/* ===================================================================
   TOP BAR — dark navy strip
   =================================================================== */
.top-bar {
    background: var(--primary);
    padding: 9px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.top-bar-phone i {
    color: var(--accent);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-hours {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-hours i {
    color: #4caf81;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.55);
}

.top-bar-right a:hover {
    color: #fff;
}


/* ===================================================================
   NAVBAR — white, solid, heavier divider
   =================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: #fff;
    border-bottom: 3px solid var(--accent);
    /* thick accent stripe — very distinct */
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 64px;
}

/* Logo block with colored bg slab */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--primary);
    padding: 0 24px;
    margin-right: 24px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    margin-right: 12px;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.logo-tag {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-links a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 18px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-right: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    margin: auto 0 auto 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    margin: auto 16px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ===================================================================
   HERO — Full dark photo-style overlay, NOT the split mockup layout
   =================================================================== */
.hero {
    position: relative;
    padding: 96px 0 104px;
    /* Keep the full hero solidly navy — no grey/black bleeding */
    background:
        linear-gradient(135deg, #1e4a7a 0%, #1b3a5c 55%, #0f2540 100%);
    overflow: hidden;
}

/* Industrial texture pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 12px);
    pointer-events: none;
}

/* Orange diagonal accent bar */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 85% 50%, rgba(242, 101, 34, 0.07), transparent);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

/* Emergency badge — pill style with strong color */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--accent);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 1rem;
}

.hero h1 {
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Accent the second word/line differently */
.hero h1 span {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(220, 232, 245, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Big phone number block */
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    border-left: 4px solid var(--accent);
}

.hero-phone i {
    font-size: 1.7rem;
    color: var(--accent);
    animation: phoneRing 2.5s ease-in-out infinite;
}

.hero-phone a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

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

@keyframes phoneRing {

    0%,
    80%,
    100% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-12deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(0);
    }
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

/* Trust pills — solid row, NOT the soft bubbles */
.hero-trust {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-pill:last-child {
    border-right: none;
}

.trust-pill i {
    color: var(--gold);
    font-size: 1rem;
}


/* ===================================================================
   SERVICES — left-accent cards on warm bg
   =================================================================== */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}

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

/* Left-border accent card — very different from rounded cards on main site */
.service-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-light);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
    position: relative;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-icon.icon-red {
    background: rgba(192, 57, 43, 0.1);
    color: var(--danger);
}

.service-icon.icon-green {
    background: rgba(26, 122, 74, 0.1);
    color: var(--success);
}

.service-icon.icon-teal {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

.service-icon.icon-sky {
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
}

.service-icon.icon-orange {
    background: rgba(242, 101, 34, 0.1);
    color: var(--accent);
}

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

.service-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}

.services-cta {
    text-align: center;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    text-transform: none;
}


/* ===================================================================
   WHY CHOOSE US — dark fill with stat-style cards
   =================================================================== */
.why-us {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.why-us .section-header h2 {
    color: #fff;
}

.why-us .section-tag {
    color: var(--accent);
}

.why-us .section-tag::before {
    background: var(--accent);
}

.why-us .section-desc {
    color: var(--text-on-dark-muted);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Panel cards separated by thin dividers — NOT rounded standalone cards */
.why-card {
    text-align: center;
    padding: 36px 16px;
    background: var(--bg-dark-card);
    transition: background var(--duration) var(--ease);
}

.why-card:hover {
    background: var(--bg-dark-alt);
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.why-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.why-card p {
    color: var(--text-on-dark-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}


/* ===================================================================
   HOW IT WORKS — light warm bg, horizontal stepper
   =================================================================== */
.process {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.process .section-header h2 {
    color: var(--primary);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line behind steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16% + 24px);
    right: calc(16% + 24px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Numbered circle — flat square instead of circle */
.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 0 var(--accent);
}

.step-icon-wrap {
    display: none;
    /* hide for cleaner look */
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}

.step-arrow {
    display: none;
}


/* ===================================================================
   TESTIMONIALS — staggered quote cards
   =================================================================== */
.reviews {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}

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

.review-card {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    border-top: 4px solid var(--accent);
    /* top accent bar — distinct from main site */
    transition: all var(--duration) var(--ease);
    position: relative;
}

/* Big quote mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--border);
    pointer-events: none;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 2px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.review-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-body);
    text-transform: none;
}

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

.author-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    color: var(--text);
    font-family: var(--font-heading);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: none;
    font-family: var(--font-body);
}


/* ===================================================================
   SERVICE AREA — bold banner style
   =================================================================== */
.service-area {
    padding: var(--section-py) 0;
    background: var(--primary);
}

.area-wrapper {
    display: flex;
    align-items: center;
    gap: 36px;
}

.area-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 2.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.area-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.area-content>p {
    color: rgba(220, 232, 245, 0.85);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 16px;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tags span {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
}


/* ===================================================================
   CONTACT
   =================================================================== */
.contact {
    padding: var(--section-py) 0 120px;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 10px;
}

.contact-info h2 {
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-info>p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Phone block — thick accent border */
.contact-phone-block {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    border-left: 5px solid var(--accent);
}

.phone-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.phone-number i {
    font-size: 1.3rem;
    color: var(--accent);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-item i {
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.detail-item div {
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-item span,
.detail-item a {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: none;
    font-family: var(--font-body);
}

.detail-item a:hover {
    color: var(--primary);
}


/* Form card — flat white, no rounded xl, strong border */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    border-top: 4px solid var(--primary);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.form-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-transform: none;
    font-family: var(--font-body);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
    background: #fff;
}

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

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

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-transform: none;
    font-family: var(--font-body);
}


/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    background: var(--bg-dark);
    padding: 52px 0 0;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    margin-bottom: 14px;
    background: transparent;
    padding: 0;
}

.footer .logo-name {
    color: #fff;
}

.footer .logo-tag {
    color: var(--text-on-dark-muted);
}

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

.footer-brand>p {
    color: var(--text-on-dark-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 260px;
    text-transform: none;
    font-family: var(--font-body);
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    text-transform: none;
    font-family: var(--font-body);
}

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

.footer-contact a i {
    font-size: 1rem;
    color: var(--accent);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    text-transform: none;
    font-family: var(--font-body);
}


/* ===================================================================
   STICKY MOBILE CTA
   =================================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: var(--primary);
    border-top: 3px solid var(--accent);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 0 var(--accent-dark);
}

.sticky-cta-btn:hover {
    background: var(--accent-dark);
}


/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

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


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

@media (max-width: 900px) {
    :root {
        --section-py: 68px;
    }

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 24px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 0;
    }

    .step-number {
        flex-shrink: 0;
        margin: 0;
    }

    .area-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .area-tags {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    :root {
        --section-py: 56px;
        --container-px: 16px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .top-bar-hours,
    .top-bar-divider,
    .top-bar-right {
        display: none;
    }

    /* Navbar — collapse logo bg on mobile */
    .logo {
        padding: 0 16px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1000;
        animation: mobileMenuIn 0.25s var(--ease);
    }

    .nav-links.mobile-open a {
        font-size: 1.6rem;
        font-weight: 800;
        color: #fff;
        width: 100%;
        text-align: center;
        padding: 18px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.mobile-open a::after {
        display: none;
    }

    @keyframes mobileMenuIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hero {
        padding: 60px 0 72px;
    }

    .hero-phone {
        padding: 12px 18px;
    }

    .hero-phone a {
        font-size: 1.7rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-trust {
        width: 100%;
        flex-direction: column;
    }

    .trust-pill {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: center;
    }

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

    .why-grid {
        grid-template-columns: 1fr 1fr;
        background: none;
        border: none;
        gap: 12px;
    }

    .why-card {
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .contact-form-card {
        padding: 24px;
    }

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

    .section-header {
        margin-bottom: 32px;
    }

    /* Show sticky CTA on mobile */
    .sticky-cta {
        display: block;
    }

    .contact {
        padding-bottom: 100px;
    }
}