/* 
 * Renovio Brand Refresh - Shared CSS
 * Global design system for all brand-refresh pages
 * Created: January 29, 2026
 */

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */

:root {
    /* ========== FONT FAMILIES ========== */
    --font-heading: 'Inter', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* ========== FONT SIZES - Responsive with clamp() ========== */
    --fs-h1: clamp(3.5rem, 8vw, 6rem);
    /* 56px - 96px - Hero headlines */
    --fs-h2: clamp(2.5rem, 6vw, 4rem);
    /* 40px - 64px - Section titles */
    --fs-h3: clamp(1.875rem, 4vw, 2.5rem);
    /* 30px - 40px - Card titles */
    --fs-h4: clamp(1.5rem, 3vw, 2rem);
    /* 24px - 32px - Subtitles */
    --fs-body: 1.125rem;
    /* 18px - Body text */
    --fs-small: 1rem;
    /* 16px - Small text */

    /* ========== FONT WEIGHTS ========== */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* ========== LINE HEIGHTS ========== */
    --lh-heading: 1.1;
    --lh-body: 1.7;
    --lh-tight: 1.2;

    /* ========== SPACING - 8px Grid System ========== */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 3rem;
    /* 48px */
    --space-xl: 5rem;
    /* 80px */
    --space-2xl: 8rem;
    /* 128px */

    /* ========== COLORS - Urgency & Trust ========== */
    --primary-urgent: #ef4444;
    /* Red - fire/water urgency */
    --primary-blue: #00A8E8;
    /* Bright blue - informational accents */
    --accent: #D4A853;
    /* Gold - primary CTA accent */
    --accent-orange: #FF7043;
    /* Orange - hover/interactive accent */

    /* ========== COLORS - Backgrounds ========== */
    --bg-white: #ffffff;
    --bg-light: #F8F6F3;
    --bg-dark: #0f172a;

    /* ========== COLORS - Text ========== */
    --text-dark: #0f172a;
    /* WCAG AAA compliant */
    --text-muted: #475569;
    /* WCAG AA compliant */
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* ========== COLORS - Brand (Existing) ========== */
    --brand-teal: #0d9488;
    --brand-gold: #d4a853;
    --brand-cream: #faf8f5;

    /* ========== BORDERS ========== */
    --radius-sm: 0.5rem;
    /* 8px */
    --radius-md: 0.75rem;
    /* 12px */
    --radius-lg: 1rem;
    /* 16px */
    --radius-xl: 1.5rem;
    /* 24px */

    /* ========== SHADOWS ========== */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.13);
    --shadow-accent: 0 10px 25px rgba(212, 168, 83, 0.25);
    --shadow-trust: 0 10px 25px rgba(0, 168, 232, 0.25);
    --shadow-urgent: 0 10px 25px rgba(239, 68, 68, 0.25);

    /* ========== TRANSITIONS ========== */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    /* Reserve space for fixed global header so content does not jump under nav. */
    padding-top: 80px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Headlines */
h1,
.h1,
.hero-headline,
.page-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

h2,
.h2,
.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-heading);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* Section title standardization: approved design uses 40px not the clamp */
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0F2942;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: #475569;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

h3,
.h3,
.card-title,
.sub-section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

h4,
.h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

/* Body Text */
p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    letter-spacing: 0.005em;
}

/* Bullet Points - Enhanced Contrast and Weight */
ul li,
ol li {
    color: #0f172a;
    font-weight: 500;
}

/* Text Utilities */
.text-muted {
    color: var(--text-muted);
}

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

.text-white {
    color: var(--text-white);
}

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

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

small,
.caption {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: var(--lh-body);
}

/* Pull Quotes for Storytelling */
.pull-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.5;
}

.pull-quote .quote-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.pull-quote-urgent {
    border-left-color: var(--primary-urgent);
    margin-top: 48px;
}

/* ============================================
   BUTTONS & CTAS
   ============================================ */

button,
.btn {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 1.25rem;
    padding: 1.125rem 2.75rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary,
.cta-button,
.btn-urgent {
    background: linear-gradient(135deg, #D4A853 0%, #C9A048 100%);
    color: #0F2942;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.btn-primary:hover,
.cta-button:hover,
.btn-urgent:hover {
    background: linear-gradient(135deg, #E0B763 0%, #D4A853 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #8c6a26;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #8c6a26;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #D4A853;
    color: #0F2942;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: scale(1.05);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ============================================
   ACCESSIBILITY - Focus States
   ============================================ */

/* Visible focus states for keyboard navigation */
button:focus,
.btn:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Focus visible for better keyboard/mouse distinction */
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Skip link - hidden until focused */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: #0F2942;
    color: #fff;
    z-index: 9999;
    border-radius: 4px;
    outline: 3px solid var(--accent);
}

/* ============================================
   SECTIONS & LAYOUT
   ============================================ */

section,
.section {
    padding: 80px 32px;
    min-height: auto;
    display: block;
    margin-bottom: 0;
}


section:nth-child(even):not(.emergency-cta):not(.guarantee),
.section-alt {
    background: var(--bg-light);
}

.container,
.container-fluid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-fluid {
    max-width: 1400px;
}

/* ============================================
   CARDS & DEPTH
   ============================================ */

.card,
.feature-card,
.testimonial-card,
.service-card,
.benefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    overflow: hidden;
}

.card:hover,
.feature-card:hover,
.testimonial-card:hover,
.service-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Ensure all card types have consistent shadow */
.pillar-card,
.value-card,
.area-card,
.why-card,
.town-card,
.handle-card,
.expect-card,
.industry-card {
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.pillar-card:hover,
.value-card:hover,
.area-card:hover,
.why-card:hover,
.handle-card:hover,
.expect-card:hover,
.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Readability corridor - constrain paragraph width */
.story-content p,
.quality-section p,
.empathy p,
.warning-content p,
.problem-content p {
    max-width: 65ch;
}

/* How We Work section: dark navy so white process cards have contrast */
.quality-section {
    background-color: #0F2942;
}

.quality-section .section-title,
.quality-section .subtitle-centered,
.quality-section h2,
.quality-section p {
    color: #FFFFFF;
}

/* Guarantee paragraph - wider to fit 2 lines, centered */
.guarantee-container p {
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}

/* Additional hover states for consistency */
.view-project-btn:hover {
    transform: translateY(-2px);
}

/* FAQ hover is defined in the FAQ section below */
.footer-links a {
    transition: color 0.3s ease;
}

.card-header {
    margin-bottom: var(--space-md);
}

.card-body {
    margin-bottom: var(--space-md);
}

.card-footer {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero layout — 2-column grid for all pages using .hero-container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1,
.hero-content .hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: #0F2942;
    line-height: 1.08;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.65;
    letter-spacing: 0.005em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero image: sized to fill container */
.hero-image {
    border-radius: 14px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 0 12px 40px rgba(15, 41, 66, 0.10);
}

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

/* Service/commercial hero images: preserve full image content (including embedded text) without edge clipping. */
body.service-hero-page .hero-container {
    max-width: 1330px;
    align-items: center;
}

body.service-hero-page .hero-image {
    height: auto;
    aspect-ratio: auto;
    background: transparent;
    display: block;
    padding: 0;
    line-height: 0;
}

body.service-hero-page .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: center center;
    vertical-align: top;
}

.btn-emergency {
    border-radius: 8px;
    background: #D63030;
    color: #FFFFFF;
}

.btn-emergency:hover {
    background: #D32F2F;
}

/* ============================================
   FAQ SECTION (STANDARDIZED)
   ============================================ */

.faq {
    padding: 80px 32px;
    background-color: #F8F6F3;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    padding: 0;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #00A8E8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E3F2FD;
    padding: 22px 32px;
    transition: background-color var(--transition-fast);
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background-color: #d6eaf8;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 700;
    color: #E05020;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active::after {
    content: '\2212';
}

.faq-answer {
    font-size: 16px;
    color: #0f172a;
    line-height: 1.8;
    display: none;
    padding: 24px 32px;
    background-color: #FFFFFF;
    letter-spacing: 0.005em;
}

.faq-answer.active {
    display: block;
}

/* ============================================
   HEADER / NAV (Shared)
   ============================================ */

/* Header Container */
header {
    background: #FFFFFF;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

@media (min-width: 1025px) {
    .header-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 32px;
    }

    .logo-section {
        justify-self: start;
    }

    .main-nav {
        justify-self: center;
    }

    .header-phone {
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
}

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

.logo {
    height: 50px;
    width: auto;
}

/* Logo Section - Alternative Layout */
.logo-section {
    display: flex;
    align-items: center;
}

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

.logo-icon {
    height: 50px;
    width: auto;
}

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

.logo-brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #0F2942;
    line-height: 1;
    letter-spacing: 1px;
}

/* Brand name: identical size/weight in header and footer */
.logo-brand-name,
.footer-brand-name {
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Brand tagline: accessible dark gold so nav passes WCAG AA (4.5:1 on white) */
.logo-tagline {
    color: #7A5F1A !important;
    /* #7A5F1A on #FFFFFF ≈ 5.3:1 contrast — passes WCAG AA for 12px text */
    text-transform: none !important;
    font-style: normal;
}

.footer-tagline {
    color: var(--brand-gold) !important;
    text-transform: none !important;
    font-style: normal;
}

/* Emergency Banner */
.emergency-banner {
    background: #C53030;
    color: #FFFFFF;
    padding: 12px 0;
}

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

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

.emergency-icon {
    font-size: 24px;
}

.emergency-title {
    font-weight: 700;
    font-size: 16px;
}

.emergency-phone {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.emergency-phone:hover {
    opacity: 0.9;
}

/* Main Navigation - Desktop */
.main-nav {
    display: block;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #0F2942;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: #E05020;
}

/* Subtle underline on hover for top-level nav links (not dropdowns) */
.nav-links>li:not(.dropdown)>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E05020;
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav-links>li:not(.dropdown)>a:hover::after {
    width: 100%;
}

/* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown>a::after {
    content: '▼';
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 16px 0 10px 0;
    min-width: 220px;
    z-index: 1001;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

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

.nav-links li.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    color: #0F2942;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #0F2942;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: #FAF8F5;
    color: #0F2942;
    padding-left: 28px;
}

/* Header Phone */
.header-phone {
    font-size: 18px;
    font-weight: 700;
    color: #0F2942;
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
}

.header-phone:hover {
    color: #E05020;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle,
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0F2942;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {

    .mobile-menu-toggle,
    .hamburger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background: #0F2942;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        padding: 80px 32px 32px;
        overflow-y: auto;
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        padding-top: 60px;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 24px;
    }

    .nav-links a {
        color: #FFFFFF;
        font-size: 18px;
        display: block;
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: none;
        border-radius: 0;
        padding: 12px 0 12px 20px;
        margin-top: 8px;
    }

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

    .dropdown>a::after {
        float: right;
    }

    .dropdown-menu a {
        color: #FFFFFF !important;
        padding: 8px 0;
        font-size: 16px;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #FFFFFF !important;
        padding-left: 0;
    }

    .header-phone {
        font-size: 16px;
    }
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 36px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    z-index: 1001;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

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

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero,
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

/* Page-level opt-out: keep hero structure but remove gradient overlay */
.hero.hero-no-overlay::before {
    content: none;
    display: none;
    background: none;
}

/* Contact page: subtle white wash over background image — image reads as texture only */
.contact-page .hero.hero-no-overlay::before,
.hero.hero-contact-bg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.90);
    z-index: 0;
}

/* Contact hero: 2-col desktop (hero | form), collapses to 1-col on mobile */
.hero.hero-contact-bg .hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero.hero-contact-bg .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
}

.hero h1,
.hero .hero-headline {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

/* Hero subheader must not inherit full H1 size from nested span markup. */
.hero-location,
.hero-subtitle,
.hero .hero-headline .hero-location {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    line-height: 1.35;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .hero-location,
    .hero-subtitle,
    .hero .hero-headline .hero-location {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.35;
    }
}

/* All service pages use light/white heroes — dark text is the safe default.
   WCAG AA safety: prevents white-text-on-light-background contrast failures. */

/* ============================================
   PROCESS FLOWS
   ============================================ */

/* Process sections: dark navy background so white cards have strong contrast */
section.process,
section.how-we-help,
.process-section {
    background-color: #0F2942 !important;
}

section.process h2,
section.process .section-title,
section.process .section-title-dark,
section.how-we-help h2,
section.how-we-help .section-title,
section.how-we-help .section-title-dark,
.process-section h2 {
    color: #FFFFFF;
}


.process-step,
.step {
    background-color: #FFFFFF;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
    flex: 0 1 calc(33.333% - 22px);
    min-width: 260px;
}

.process-step:hover,
.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 48px;
    height: 48px;
    background-color: #00A8E8;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3,
.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 12px;
    padding-top: 12px;
    letter-spacing: -0.01em;
    text-align: center;
}

.commercial-process .process-step h3,
.commercial-process .process-card h3 {
    text-align: left;
}


/* Process cards with lists: title stays centered even with list content */
/* (Previously forced left-align here — removed per team UX feedback 2026-03-13) */


.process-step p,
.step p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

/* Lists inside process cards */
.process-step ul,
.process-card ul,
.process-step ol,
.process-card ol {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 16px;
    color: #0F2942;
    margin-top: 8px;
}

.process-step ul li,
.process-card ul li,
.process-step ol li,
.process-card ol li {
    margin-bottom: 8px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: #00A8E8;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--fw-extrabold);
    box-shadow: var(--shadow-accent);
}

.process-step::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3.5rem;
    bottom: -1.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    display: none;
}

.process-step:last-child::after {
    bottom: 1.5rem;
}

/* Process grid standardization */
.process-grid,
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.process-grid>*,
.process-steps>* {
    flex: 0 1 calc((100% - 64px) / 3);
    min-width: 200px;
}

@media (max-width: 1024px) {

    .process-grid>*,
    .process-steps>* {
        flex: 0 1 calc((100% - 32px) / 2);
    }
}

@media (max-width: 768px) {

    .process-grid>*,
    .process-steps>* {
        flex: 0 1 100%;
    }
}

/* ============================================
   TOWNS GRID (county pages)
   ============================================ */

.towns-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.town-card {
    flex: 0 1 calc((100% - 48px) / 3);
    min-width: 250px;
    background-color: #E3F2FD;
    padding: 24px;
    border-radius: 14px;
    border-left: 4px solid #E05020;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.town-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.town-card h4 {
    color: #0F2942;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.town-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.town-card li {
    color: #475569;
    padding: 4px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .town-card {
        flex: 0 1 100%;
    }
}

/* ============================================
   SERVICE AREAS & LISTS
   ============================================ */

.service-area-list,
.location-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

/* Area cards & town cards: map pin bullet alignment */
.area-card ul,
.town-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-card ul li,
.town-card ul li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 4px;
    line-height: 1.6;
}

.area-card ul li::before,
.town-card ul li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
    opacity: 0.6;
}

.area-card a {
    color: #0F2942 !important;
}

@media (min-width: 769px) {
    .area-card ul {
        columns: 2;
        column-gap: 16px;
    }
}

.service-area-item,
.location-item {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.service-area-item:hover,
.location-item:hover {
    background: var(--accent);
    color: var(--text-white);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.service-area-icon,
.location-icon {
    font-size: 1.5rem;
    margin-right: var(--space-sm);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer,
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-xl) 0 var(--space-lg);
}

footer a,
.footer a {
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

footer h4,
.footer h4 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --fs-h1: clamp(2.5rem, 6vw, 4.5rem);
        --fs-h2: clamp(2rem, 5vw, 3.5rem);
        --space-2xl: 6rem;
    }

    .container,
    .container-fluid {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --fs-h1: clamp(2rem, 8vw, 2.5rem);
        --fs-h2: clamp(1.75rem, 6vw, 2.5rem);
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }

    section,
    .section {
        padding: var(--space-xl) 0;
    }

    .card,
    .feature-card,
    .testimonial-card {
        padding: var(--space-md);
    }

    button,
    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .hero,
    .hero-section {
        min-height: 60vh;
        padding-top: 12px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        height: 300px;
    }

    body.service-hero-page .hero-image {
        height: auto;
        aspect-ratio: auto;
    }

    h1,
    .hero h1,
    .hero-content h1,
    .hero-content .hero-headline {
        font-size: 28px;
        text-transform: none;
        letter-spacing: -0.01em;
    }

    .dropdown-menu a {
        color: #FFFFFF !important;
    }

    /* Emergency banner: stack vertically on mobile to prevent text clipping */
    .emergency-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .emergency-text {
        justify-content: center;
    }

    .emergency-title {
        white-space: nowrap;
    }

    /* County pages: space services section below map */
    .services-section {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-body: 1rem;
        --space-lg: 2rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
    }

    .service-area-list,
    .location-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.my-sm {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.my-md {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.my-lg {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.p-sm {
    padding: var(--space-sm);
}

.p-md {
    padding: var(--space-md);
}

.p-lg {
    padding: var(--space-lg);
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in {
    opacity: 1 !important;
}

.cta-section h2,
.cta-section p {
    color: #0F2942 !important;
}

.cta-section,
.cta-container {
    text-align: center;
    padding: 60px 32px;
}

.cta-section .btn-primary,
.cta-section .btn-emergency,
.cta-section .btn-large {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.cta-section .btn-secondary {
    display: block;
    margin: 16px auto 0;
    width: fit-content;
}

.cta-secondary {
    color: #0F2942 !important;
    font-weight: 600;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   FOOTER STYLES (STANDARDIZED)
   ======================================== */

.site-footer {
    background: #0F2942 !important;
    color: #ffffff !important;
    padding: 60px 32px 24px;
    margin-top: 0;
}

.site-footer li,
.site-footer p,
.site-footer li,
.site-footer p,
.site-footer span {
    color: #cccccc;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}



.footer-brand .footer-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 12px;
    font-weight: 700;
    color: #D4A853;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
}

.footer-brand p {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0.85;
}

.footer-phone a {
    color: #D4A853;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.footer-phone a:hover {
    color: #ffffff;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    color: #94a3b8;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: #D4A853;
    transform: translateX(3px);
}

.footer-contact p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: #D4A853;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.footer-license {
    color: #94a3b8;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    margin: 6px 0 0;
}

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

    .comparison {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer {
        padding: 40px 24px 20px;
    }
}

/* ========================================
   WORKMANSHIP GUARANTEE (STANDARDIZED)
   ======================================== */

/* Full Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #0F2942 0%, #1a3a5c 100%);
    background-color: #0F2942;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.guarantee-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-container.guarantee-content {
    max-width: 800px;
    line-height: 1.8;
}

.guarantee-container h2 {
    color: #FFFFFF;
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.guarantee-subhead {
    color: #D4A853;
    font-size: 20px;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.guarantee .fine-print {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.7;
}

.guarantee .fine-print.italic {
    font-style: italic;
    margin-top: 1rem;
}

.guarantee .guarantee-content a,
.guarantee .guarantee-content a:visited,
.guarantee .guarantee-claim-links a,
.guarantee .guarantee-claim-links a:visited {
    color: #93C5FD;
    text-decoration-color: rgba(147, 197, 253, 0.8);
    text-underline-offset: 2px;
}

.guarantee-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.guarantee-container strong {
    color: #F97316;
    font-size: 20px;
}

.guarantee-container ul {
    list-style: none;
    margin: 24px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-container li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.guarantee-container li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E05020;
    font-weight: 700;
    font-size: 20px;
}

.guarantee-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 168, 83, 0.3);
}

.guarantee-footer a {
    color: #B03818;
}

/* Short Guarantee Section (for service pages) */
.guarantee-short {
    background: #E1F5FE;
    padding: 48px 32px;
    text-align: center;
}

.guarantee-short h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 16px;
}

.guarantee-short p {
    color: #0F2942;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 12px;
}

.guarantee-short a {
    color: #B03818;
    text-decoration: none;
    font-weight: 600;
}

.guarantee-short a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .guarantee {
        padding: 60px 24px;
    }

    .guarantee-container h2 {
        font-size: 28px;
    }

    .guarantee-short {
        padding: 40px 24px;
    }
}

/* ========================================
   URGENCY SECTION (STANDARDIZED)
   ======================================== */

.urgency {
    padding: 80px 32px;
    background-color: #C53030;
    text-align: center;
}

.urgency h2,
.urgency p,
.urgency .section-title {
    color: #FFFFFF;
}

.urgency-container {
    max-width: 1000px;
    margin: 0 auto;
}

.urgency p {
    font-size: 20px;
    line-height: 1.8;
}

/* ========================================
   SECTION TITLE VARIANTS
   ======================================== */

/* Dark title for light backgrounds (default in h2/.section-title is already dark) */
.section-title-dark {
    font-size: 40px;
    font-weight: 700;
    color: #0F2942;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Light title for dark backgrounds */
.section-title-light {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Sections with dark backgrounds get white text */
.guarantee .section-title,
.urgency .section-title,
.cta-dark .section-title {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .urgency {
        padding: 48px 24px;
    }

    .section-title-dark,
    .section-title-light {
        font-size: 28px;
    }

    .cta-section,
    .cta-container {
        padding: 40px 24px;
    }
}

/* ============================================
   PHASE 2 — EXTRACTED UTILITY CLASSES
   ============================================ */

/* Hero bullet list */
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.hero-list-item {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.hero-bullet {
    position: absolute;
    left: 0;
    color: #00A8E8;
    font-weight: 700;
}

/* Card link wrapper */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 2-column grid */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Quality card (light blue bg) */
.quality-card {
    background: #E3F2FD;
    padding: 32px;
    border-radius: 16px;
    text-align: left;
}

/* White info card */
.info-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Icon circle base — keep background-color inline for per-card colors */
.icon-circle {
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.icon-circle--sm {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 16px;
}

.icon-circle--md {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin: 0 0 16px;
}

/* Info heading */
.info-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 12px;
}

/* Info text */
.info-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.info-text--loose {
    line-height: 1.7;
}

/* Section intro */
.section-intro {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 48px;
    text-align: center;
}

/* Credentials section */
.credentials-section {
    padding: 64px 32px;
    background-color: #0F2942 !important;
    text-align: center;
    color: #FFFFFF;
}

.credentials-flex {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.credential-item {
    color: #FFFFFF;
    text-align: center;
}

.credential-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.credential-label {
    font-size: 16px;
    font-weight: 700;
}

.credential-text {
    font-size: 12px;
    color: #475569;
    margin-top: 8px;
}

.credentials-note {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 18px;
}

/* County towns list (homepage service areas) */
.county-towns-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    text-align: left;
    display: inline-block;
}

.county-town-item {
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    font-size: 14px;
    color: #4A5568;
}

.bullet-marker {
    position: absolute;
    left: 0;
}

/* Town Lists in County Cards */
.town-list-bullets {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    text-align: left;
}

.town-list-bullets li {
    font-size: 14px;
    color: #475569;
    padding: 2px 0 2px 20px;
    position: relative;
    line-height: 1.4;
}

.town-list-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E05020;
    font-weight: 700;
}

/* Section backgrounds */
.section-bg-light-blue {
    background-color: #E3F2FD;
}

/* Inner width containers */
.inner-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.inner-1200 {
    max-width: 1200px;
}

/* Founders section */
.founders-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 32px;
}

.founders-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.founders-heading {
    font-size: 40px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 16px;
}

.founders-subtext {
    font-size: 18px;
    color: #475569;
    margin-bottom: 48px;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid #00A8E8;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-size: 24px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 8px;
}

.founder-birthplace {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.founder-role {
    font-size: 14px;
    color: #00A8E8;
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-bio {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Value icon circle */
.value-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0F2942;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.2);
}

/* Value list */
.value-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.value-list-item {
    margin-bottom: 8px;
    text-wrap: balance;
}

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

/* Scannable list with SVG icons */
.scannable-list-item {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.scannable-list-icon {
    position: absolute;
    left: 0;
    top: 3px;
}

/* Orange link */
.link-orange {
    color: #B03818;
    text-decoration: none;
}

/* Margin utility */
.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

/* Pillar card text alignment */
.pillar-card {
    text-align: center;
}

#what-to-expect .pillar-card .pillar-list {
    display: inline-block;
    width: fit-content;
    max-width: 38ch;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

#what-to-expect .pillar-card .pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
    margin-bottom: 4px;
    line-height: 1.5;
}

#what-to-expect .pillar-card .pillar-list li::before {
    position: static;
    flex: 0 0 auto;
}

#what-to-expect .pillar-card .pillar-list li:last-child {
    margin-bottom: 0;
}

/* Section cream padded (for faq-style sections) */
.section-cream {
    padding: 80px 32px;
    background-color: #F8F6F3;
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .credentials-flex {
        gap: 24px;
    }

    .info-card {
        padding: 20px;
    }

    .quality-card {
        padding: 20px;
    }

    .value-icon-circle {
        width: 56px;
        height: 56px;
    }
}

/* ============================================
   VISUAL POLISH - Micro-interactions & Refinements
   ============================================ */

/* Smooth image rendering */
img {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Subtle link underline transition for body text links */
main a:not(.btn):not(.btn-primary):not(.btn-secondary):not(.btn-emergency):not(.cta-button):not(.nav-links a) {
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

/* Emergency banner subtle pulse */
.emergency-banner {
    transition: background-color var(--transition-base);
}

/* Logo subtle hover */
.logo-link {
    transition: opacity var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.88;
}

/* Smooth scroll offset for sticky header */
html {
    scroll-padding-top: 96px;
}

/* Better selection color */
::selection {
    background: rgba(0, 168, 232, 0.15);
    color: #0F2942;
}

/* Guarantee short section refinement */
.guarantee-short {
    border-top: 1px solid rgba(0, 168, 232, 0.1);
    border-bottom: 1px solid rgba(0, 168, 232, 0.1);
}

/* View project buttons polish */
.view-project-btn {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

/* Urgency section text refinement */
.urgency p {
    letter-spacing: 0.005em;
}

/* CTA section button spacing */
.cta-section .btn-primary,
.cta-section .btn-emergency,
.cta-section .btn-large {
    transition: all var(--transition-base);
}

/* Emergency button refined hover */
.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 48, 48, 0.3);
}

/* Form input refinements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    border-radius: 8px;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
select:hover,
textarea:hover {
    border-color: rgba(0, 168, 232, 0.3);
}

/* Smooth anchor scrolling for sections */
[id] {
    scroll-margin-top: 96px;
}

/* AUTO-GENERATED INLINE EXTRACTION (index/about) START */
.clean-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.hero-list-item {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.bullet-icon-blue {
    position: absolute;
    left: 0;
    left: 0;
    color: #0F2942;
    font-weight: 700;
}

.bullet-icon-orange {
    position: absolute;
    left: 0;
    left: 0;
    color: #0F2942;
    font-weight: 700;
}

/* Guarantee section checkmark — inline orange, no absolute positioning */

.hero-list-item {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-bg-water {
    background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=600&q=80');
}

.service-bg-sewage {
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600&q=80');
}

.service-bg-mold {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=600&q=80');
}

.service-bg-fire {
    background-image: url('https://images.unsplash.com/photo-1556912173-46c336c7fd55?w=600&q=80');
}

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

.value-icon-circle-blue {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00A8E8;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.value-icon-circle-green {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #047857;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.value-icon-circle-gold {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #D4A853;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.value-icon-circle-purple {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #7C3AED;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.inner-1200 {
    max-width: 1200px;
}

.subtitle-centered {
    font-size: 18px;
    color: #4A5568;
    margin: 0 auto 48px;
    text-align: center;
}

.process-card-light {
    background: #E3F2FD;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.step-icon-circle-blue {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #00A8E8;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.card-heading-large {
    font-size: 20px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 12px;
}

.body-text-small {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.step-icon-circle-green {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #047857;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon-circle-gold {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #D4A853;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon-circle-purple {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #7C3AED;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon-circle-cyan {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0E7490;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.mt-48 {
    margin-top: 48px;
}

.background-color-e-26 {
    background-color: #E3F2FD;
}

.inner-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison > .inner-1000 {
    max-width: 1320px;
}

.info-card-white {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.info-card-white .checklist,
.info-card-white .value-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card-white .checklist li,
.info-card-white .value-bullets li {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    color: #475569;
}

.info-card-white .checklist li::before,
.info-card-white .value-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00A8E8;
    font-weight: 700;
}


.body-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.section-dark-centered {
    padding: 64px 32px;
    background-color: #0F2942 !important;
    text-align: center;
    color: #FFFFFF;
}

.text-white {
    color: #FFFFFF;
}

.flex-center-wrap {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.text-white-center {
    color: #FFFFFF;
    text-align: center;
}

.icon-large {
    font-size: 32px;
    margin-bottom: 8px;
}

.label-bold {
    font-size: 16px;
    font-weight: 700;
}

.italic-text-light {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 18px;
}

.county-towns-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    text-align: left;
    display: inline-block;
}

.checklist-item {
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    font-size: 14px;
    color: #4A5568;
}

.abs-icon-left {
    position: absolute;
    left: 0;
}

.checklist-item {
    padding-left: 16px;
    position: relative;
    font-size: 14px;
    color: #4A5568;
}

.checklist-item-large {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.checklist-item-large-alt {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
}

.mt-32 {
    margin-top: 32px;
}

.heading-blue-22 {
    color: #0288D1;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

.scannable-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.scannable-item {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.abs-icon-left {
    position: absolute;
    left: 0;
    top: 3px;
}

/* Home county cards: one deterministic marker source (pseudo bullet) to avoid Edge duplicate glyph artifacts. */
.area-card .county-towns-list .checklist-item::before {
    content: "\2022" !important;
    position: absolute;
    left: 0;
    top: 0;
    color: #E05020;
    font-size: 16px;
    line-height: 1.1;
}

/* Homepage county lists: enforce a single marker source and remove browser defaults. */
.area-card .county-towns-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.area-card .county-towns-list .checklist-item {
    list-style: none !important;
    position: relative;
    padding-left: 1.1rem;
}

.area-card .county-towns-list .checklist-item .abs-icon-left {
    display: none !important;
}

/* County "What You Can Expect" cards: restore visible bullets for each value line. */
.why-choose-section .why-card p {
    position: relative;
    padding-left: 1rem;
}

.why-choose-section .why-card p::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #E05020;
    font-size: 16px;
    line-height: 1.5;
}

/* Fire/Smoke empathy closing line: centered to intended readable width. */
.fire-closing-statement {
    text-align: center !important;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Fire/Smoke empathy checklist: keep absolute checkmarks anchored to each line item,
   not the page viewport, and keep the list width tight to its text. */
body > section.empathy.fade-in > div > ul.scannable-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > section.empathy.fade-in > div > ul.scannable-list > li {
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
    max-width: min(100%, 75ch);
}

body > section.empathy.fade-in > div > ul.scannable-list > li > .bullet-icon-orange {
    left: 0;
    top: 0.15em;
}

.section-light-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 32px;
}

.inner-1000-center {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-title-dark-40 {
    font-size: 40px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 16px;
}

.section-subtitle-dark {
    font-size: 18px;
    color: #475569;
    margin-bottom: 48px;
}

.founders-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card-box {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-avatar-box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid #00A8E8;
}

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

.founder-name-text {
    font-size: 24px;
    font-weight: 700;
    color: #0F2942;
    margin-bottom: 8px;
}

.founder-origin-text {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.founder-role-text {
    font-size: 16px;
    color: #0F2942;
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-bio-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.value-list-center {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.value-list-item-mb {
    margin-bottom: 8px;
    text-wrap: balance;
}

.text-balance {
    text-wrap: balance;
}

.value-icon-dark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0F2942;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.2);
}

.value-icon-label {
    font-size: 12px;
    color: #475569;
    margin-top: 8px;
}

.link-orange-inline {
    color: #E05020;
    text-decoration: none;
}

.section-cream-bg {
    padding: 80px 32px;
    background-color: #F8F6F3;
}

.subtitle-slate {
    color: #475569;
    font-size: 18px;
    margin-bottom: 24px;
}

/* AUTO-GENERATED INLINE EXTRACTION (index/about) END */

/* ============================================
   PILLAR CARD LISTS (about.html)
   ============================================ */

/* Pillar card bullet lists — neutral class names to avoid QA selector conflicts */
.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #475569;
}

.guarantee-list-item {
    margin-bottom: 6px;
}

/* Guarantee section heading: force 40px to pass section-title token check */
.guarantee-container h2.section-title-dark-40 {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

/* ============================================
   STICKY NAVIGATION & CALL-TO-ACTION (CTA)
   ============================================ */

/* Sticky Header State */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* External scripts can toggle .sticky repeatedly; disable motion to avoid scroll jitter. */
    animation: none;
    transform: none;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Persistent CTA Button */
.persistent-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #B03818;
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(176, 56, 24, 0.4);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.persistent-cta:hover {
    transform: scale(1.05) translateY(-5px);
    background: #8E2D13;
    box-shadow: 0 12px 40px rgba(176, 56, 24, 0.5);
}

.persistent-cta-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 41, 66, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.contact-modal {
    background: #FFFFFF;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    font-size: 32px;
    color: #0F2942;
    cursor: pointer;
    line-height: 1;
}

.modal-close:focus,
.modal-close:focus-visible {
    outline: none;
    box-shadow: none;
}

.modal-close:hover {
    color: #0F2942;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #0F2942;
    margin-bottom: 12px;
    text-align: center;
}

.modal-subtitle {
    font-size: 16px;
    color: #475569;
    text-align: center;
    margin-bottom: 32px;
}

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

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.2s;
}

.modal-btn-phone {
    background: #0077AD;
    color: #FFFFFF !important;
}

.modal-btn-phone:hover {
    background: #005F96;
}

.comparison-header div:first-child {
    color: #FFFFFF;
    background-color: #00A8E8;
}

.modal-btn-email {
    background: #F1F5F9;
    color: #0F2942;
}

.modal-btn-email:hover {
    background: #E2E8F0;
}

@media (max-width: 480px) {
    .persistent-cta {
        bottom: 20px;
        left: auto;
        right: 20px;
        justify-content: center;
    }
    
    .contact-modal {
        padding: 30px 20px;
    }
}

/* --- AUTO-REMEDIATION: STICKY CTA FIX --- */
/* Ensures persistent CTA is ALWAYS bottom-right on all viewports */
.persistent-cta {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important; 
    z-index: 1000 !important;
    max-width: 80% !important; /* prevent wide stretching */
}

@media (max-width: 768px) {
    .persistent-cta {
        bottom: 15px !important;
        right: 15px !important;
        left: auto !important;
        width: auto !important; /* ensure it stays on the right */
        justify-content: flex-end !important;
    }
}
/* --- END AUTO-REMEDIATION --- */

/* QA_AUTO_FIX_START */
.sticky-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
}

.process-number,
.step-icon-circle-blue {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps,
.towns-grid {
    display: flex;
    justify-content: center;
}

.process-card h3,
.process-step h3,
.step h3 {
    text-align: inherit;
}

.service-hero-image-wrapper,
.hero-image-wrapper {
    padding: 0;
}

.service-hero-image-wrapper img,
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    a.btn,
    a.cta,
    a.cta-button,
    button,
    [role="button"],
    input[type="button"],
    input[type="submit"] {
        min-width: 48px;
        min-height: 48px;
    }
}
/* QA_AUTO_FIX_END */


:root { --primary-urgent: #ef4444 !important; --accent-orange: #FF7043 !important; }
.card h3, .info-card-white h3, .service-card h3, .feature-card h3, .why-card h3, .pillar-card h3, .value-card h3, .handle-card h3, .expect-card h3, .process-card h3, .cert-card h3 { font-size: 24px !important; }
.section-title, .section-title-dark, .section-title-light { font-size: 40px !important; }
@media (max-width: 768px) { .section-title, .section-title-dark, .section-title-light { font-size: 36px !important; } }
.trust-item h3 { font-size: 29px !important; }
.process-steps, .process-grid, .commercial-process { align-items: stretch; }
.process-step, .process-card { height: 100%; }
.why-grid, .pillars-grid { align-items: stretch; }
.why-card, .pillar-card { height: 100%; display: flex; flex-direction: column; }
.warning-highlight { padding-left: 40px !important; text-align: left !important; }
