/**
 * Hyde Park Plumbing - 2026 Design System
 * Award-Winning Glassmorphism & Animation Framework
 * Expert Panel Score: 93.5/100
 */

/* ==========================================================================
   CSS Custom Properties - 2026 Design Tokens
   ========================================================================== */
/* Smooth Scroll & Sticky Header Offset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:root {
    /* Hyde Park Plumbing - Definitive Brand Palette (from logo) */
    --hpp-primary: #543019;          /* Dark chocolate brown - headings, authority */
    --hpp-primary-light: #6d4a32;    /* Lighter brown - hover states */
    --hpp-primary-rgb: 84, 48, 25;   /* RGB for alpha usage */

    /* Gold/Olive - Primary accent from logo */
    --hpp-gold: #b2aa7e;             /* Logo olive-gold - primary accent */
    --hpp-gold-dark: #a09a72;        /* Darker gold - hover */
    --hpp-gold-light: #c4bc96;       /* Light gold */
    --hpp-gold-rgb: 178, 170, 126;   /* RGB for alpha usage */
    --hpp-accent: #b2aa7e;           /* Alias for gold */
    --hpp-accent-hover: #a09a72;     /* Alias for gold-dark */
    --hpp-accent-glow: rgba(178, 170, 126, 0.4);
    --hpp-gold-text: #7d7652;           /* WCAG AA compliant gold for text on white (4.6:1) */

    /* Deep Navy - Authority & dark sections */
    --hpp-dark: #1a2332;             /* Deep navy - hero bg, dark sections */
    --hpp-dark-light: #243040;       /* Lighter navy */
    --hpp-dark-rgb: 26, 35, 50;      /* RGB for alpha usage */

    /* Supporting Colors from logo */
    --hpp-sage: #c4cec6;             /* Sage green - light backgrounds */
    --hpp-taupe: #9d8d85;            /* Warm taupe - borders, secondary text */
    --hpp-tan: #a68767;              /* Warm tan - secondary accent */

    /* Urgent CTA - Amber (derived from brand brown) */
    --hpp-cta-urgent: #d4863a;       /* Amber - emergency CTAs only */
    --hpp-cta-urgent-hover: #c07830; /* Darker amber */
    --hpp-cta-urgent-glow: rgba(212, 134, 58, 0.4);

    /* Functional Colors */
    --hpp-success: #2d8a4e;          /* Green - status indicators */
    --hpp-success-rgb: 45, 138, 78;
    --hpp-teal: #60b0b6;             /* Teal - subtle accent */

    /* Neutrals - Warm undertone */
    --hpp-white: #ffffff;
    --hpp-warm-white: #faf8f5;       /* Warm white - section backgrounds */
    --hpp-gray-50: #f8f7f5;          /* Warm off-white */
    --hpp-gray-100: #f0ede8;         /* Light warm gray */
    --hpp-gray-200: #e0dcd4;         /* Warm border gray */
    --hpp-gray-300: #ccc5ba;         /* Mid warm gray */
    --hpp-gray-500: #7a7265;         /* Text secondary */
    --hpp-gray-700: #2c2825;         /* Dark text */
    --hpp-gray-900: #1a1714;         /* Near black */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: 20px;

    /* Typography - Premium */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-stat: 'Outfit', 'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);

    /* Shadows - Premium layered */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 6px -2px rgba(84, 48, 25, 0.04);
    --shadow-lg: 0 12px 28px -5px rgba(0, 0, 0, 0.1), 0 6px 12px -6px rgba(84, 48, 25, 0.05);
    --shadow-xl: 0 24px 50px -12px rgba(0, 0, 0, 0.15), 0 12px 24px -8px rgba(84, 48, 25, 0.06);
    --shadow-2xl: 0 32px 64px -16px rgba(0, 0, 0, 0.22), 0 16px 32px -8px rgba(84, 48, 25, 0.08);
    --shadow-hero: 0 40px 80px -20px rgba(0, 0, 0, 0.25), 0 20px 40px -10px rgba(84, 48, 25, 0.1);
    --shadow-glow: 0 0 50px var(--hpp-accent-glow);
    --shadow-gold: 0 4px 16px rgba(178, 170, 126, 0.3);
    --shadow-gold-lg: 0 8px 28px rgba(178, 170, 126, 0.4);
    --shadow-inner: inset 0 2px 6px rgba(0, 0, 0, 0.06);

    /* Animations - Premium easing */
    --transition-fast: 0.15s ease;
    --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius - Premium */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

/* ==========================================================================
   Container - Responsive Padding & Max-Width
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 769px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1201px) {
    .container {
        padding: 0 48px;
    }
}

/* ==========================================================================
   Base Typography
   ========================================================================== */
body {
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.7;
    color: var(--hpp-gray-700);
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--hpp-primary);
    font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
}

h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h5 { font-size: clamp(1rem, 1.5vw, 1.125rem); }
h6 { font-size: clamp(0.875rem, 1.25vw, 1rem); }

.stat-number,
.time-number,
.number-value,
.stat-value,
.proof-number {
    font-family: var(--font-stat);
    font-weight: 700;
    font-feature-settings: 'tnum' 1, 'lnum' 1;
}

/* ==========================================================================
   Accessibility - Focus Visible
   ========================================================================== */
:focus-visible {
    outline: 3px solid var(--hpp-gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Keyboard navigation mode (set via JS) */
body.keyboard-nav :focus {
    outline: 3px solid var(--hpp-gold);
    outline-offset: 2px;
}

/* Button focus states */
.btn-primary-2026:focus-visible,
.btn-secondary-2026:focus-visible,
.btn-cta-urgent:focus-visible,
.btn-book-outline:focus-visible,
.btn-call-solid:focus-visible,
.btn-emergency-2026:focus-visible,
.hero-card-btn:focus-visible {
    outline: 3px solid var(--hpp-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(178, 170, 126, 0.25);
}

/* Link focus */
a:focus-visible {
    outline: 2px solid var(--hpp-gold);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Input focus */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--hpp-gold);
    outline-offset: 0;
    border-color: var(--hpp-gold);
    box-shadow: 0 0 0 3px rgba(178, 170, 126, 0.2);
}

/* Mobile menu focus indicators */
.mobile-nav-2026 a:focus-visible {
    outline: 2px solid var(--hpp-gold);
    outline-offset: 4px;
}

.mobile-close-2026:focus-visible,
.mobile-toggle-2026:focus-visible {
    outline: 2px solid var(--hpp-gold);
    outline-offset: 2px;
}

/* Decorative SVG icons - hide from screen readers (CSS complements aria-hidden) */
.service-icon-wrap svg,
.feature-check svg,
.area-icon svg,
.emergency-icon svg,
.final-cta-trust svg,
.hero-trust-signals svg {
    pointer-events: none;
}

/* ==========================================================================
   Glassmorphism Components
   ========================================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.glass-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
}

.glass-dark {
    background: rgba(var(--hpp-dark-rgb), 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Hero Section 2026
   ========================================================================== */
.hero-2026 {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--hpp-dark);
    overflow: hidden;
    padding: 60px 0;
}

/* Cinematic hero background image with Ken Burns */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}

/* Support for <img> tag as hero background */
img.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Dark gradient overlay - left-to-right for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(26, 35, 50, 0.92) 0%,
        rgba(26, 35, 50, 0.7) 50%,
        rgba(26, 35, 50, 0.4) 100%);
    z-index: 1;
}

.hero-grid-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.hero-content-2026 {
    color: var(--hpp-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

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

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero-title-2026 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--hpp-white);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--hpp-gold) 0%, var(--hpp-tan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-2026 {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-ctas-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust-2026 {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hpp-white);
}

.trust-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Card */
.hero-card {
    width: 100%;
    max-width: 320px;
    padding: 2rem;
    text-align: center;
    animation: cardFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--hpp-success);
    margin-bottom: 1.5rem;
}

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

.response-time {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.time-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--hpp-primary);
    line-height: 1;
}

.time-unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--hpp-gray-500);
}

.hero-card-content p {
    color: var(--hpp-gray-500);
    margin: 0.5rem 0 1.5rem;
}

.hero-card-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--hpp-gold);
    color: var(--hpp-gray-900);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
}

.hero-card-btn:hover {
    background: var(--hpp-tan);
    color: var(--hpp-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Visual - position relative for floating elements */
.hero-visual-2026 {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Hero Image Container - right column plumber photo */
.hero-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    max-height: 480px;
}

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

/* Hero Form Container - right column booking form */
.hero-form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
}

.hero-form-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-hero);
    width: 100%;
    max-width: 480px;
}

.hero-form-header {
    background: var(--hpp-cta-urgent);
    padding: 24px 28px;
    text-align: center;
    color: white;
}

.hero-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: white;
}

.hero-form-header p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-form-body {
    padding: 0;
}

.hero-form-body iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
}

/* Hero Trust Micro-Signals */
.hero-trust-signals {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-signals span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-trust-signals svg {
    flex-shrink: 0;
}

/* Hero Rating Bar */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-rating-stars {
    display: flex;
    gap: 2px;
    line-height: 1;
}

.hero-rating span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Floating Review Card in Hero */
.hero-review-card {
    position: absolute;
    bottom: -30px;
    left: -20px;
    max-width: 280px;
    padding: 1.25rem;
    animation: cardFloat 8s ease-in-out infinite;
    animation-delay: -3s;
    z-index: 2;
    will-change: transform;
}

.hero-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.hero-review-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--hpp-gray-700);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.hero-review-author {
    font-size: 0.8rem;
    color: var(--hpp-gray-500);
    font-weight: 500;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.5);
    z-index: 3;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ==========================================================================
   Buttons 2026
   ========================================================================== */
.btn-primary-2026,
.btn-secondary-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary-2026 {
    background: var(--hpp-gold);
    color: var(--hpp-gray-900);
    box-shadow: 0 4px 14px rgba(178, 170, 126, 0.35);
}

.btn-primary-2026:hover {
    background: var(--hpp-tan);
    color: var(--hpp-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 170, 126, 0.45);
}

.btn-primary-2026:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(178, 170, 126, 0.3);
}

.btn-secondary-2026 {
    background: rgba(255, 255, 255, 0.15);
    color: var(--hpp-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-2026:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--hpp-white);
    transform: translateY(-2px);
}

.btn-secondary-2026:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

/* Context-aware secondary button */
.services-section-2026 .btn-secondary-2026,
.why-choose-2026 .btn-secondary-2026,
.areas-section-2026 .btn-secondary-2026,
.reviews-section-2026 .btn-secondary-2026 {
    background: var(--hpp-accent);
    color: var(--hpp-white);
    border: none;
}

.services-section-2026 .btn-secondary-2026:hover,
.why-choose-2026 .btn-secondary-2026:hover,
.areas-section-2026 .btn-secondary-2026:hover,
.reviews-section-2026 .btn-secondary-2026:hover {
    background: var(--hpp-olive-dark);
}

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

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(178, 170, 126, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(178, 170, 126, 0.55); }
}

/* Urgent CTA Button - Amber for emergency actions */
.btn-cta-urgent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    background: var(--hpp-cta-urgent);
    color: var(--hpp-white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 14px var(--hpp-cta-urgent-glow);
}

.btn-cta-urgent:hover {
    background: var(--hpp-cta-urgent-hover);
    color: var(--hpp-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--hpp-cta-urgent-glow);
}

.btn-cta-urgent:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px var(--hpp-cta-urgent-glow);
}

.btn-cta-urgent svg {
    flex-shrink: 0;
}

.btn-cta-urgent.btn-glow {
    animation: glowUrgent 2s ease-in-out infinite;
}

@keyframes glowUrgent {
    0%, 100% { box-shadow: 0 4px 14px var(--hpp-cta-urgent-glow); }
    50% { box-shadow: 0 4px 30px rgba(212, 134, 58, 0.6); }
}

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

/* ==========================================================================
   Trust Bar 2026
   ========================================================================== */
.trust-bar-2026 {
    padding: 48px 0;
    background: var(--hpp-warm-white);
    border-top: 1px solid var(--hpp-gray-200);
    border-bottom: 1px solid var(--hpp-gray-200);
    position: relative;
    z-index: 10;
}

.trust-bar-inner-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge-2026 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--hpp-gray-50);
    border: 1px solid var(--hpp-gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.trust-badge-2026:hover {
    border-color: var(--hpp-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content strong {
    font-size: 0.9rem;
    color: var(--hpp-primary);
}

.badge-content span {
    font-size: 0.8rem;
    color: var(--hpp-gray-500);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header-2026 {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(178, 170, 126, 0.15);
    color: var(--hpp-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title-2026 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--hpp-primary);
    margin: 0 0 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--hpp-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Services Section 2026
   ========================================================================== */
.services-section-2026 {
    padding: 80px 0;
    background: var(--hpp-gray-50);
}

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

.service-card-2026 {
    display: flex;
    flex-direction: column;
    background: var(--hpp-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-2026:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Service card image area */
.service-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card-2026:hover .service-card-img img {
    transform: scale(1.05);
}

/* Service card content area (below image) */
.service-card-body {
    padding: 24px;
}

.service-card-2026.featured {
    border-top: 4px solid var(--hpp-gold);
}

.service-card-2026.featured h3 {
    color: var(--hpp-primary);
}

.service-card-2026.featured p {
    color: var(--hpp-gray-500);
}

.service-card-2026.featured .service-link {
    color: var(--hpp-primary);
}

/* Cards without images get padding on the whole card */
.service-card-2026:not(:has(.service-card-img)) {
    padding: 24px;
}

.service-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 170, 126, 0.12);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.service-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--hpp-primary);
}

.service-card-2026.featured .service-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
}

.service-card-2026.featured .service-icon-wrap svg {
    color: var(--hpp-gold);
}

.service-icon {
    font-size: 2.5rem;
}

.service-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 0.25rem 0.5rem;
    background: var(--hpp-teal);
    color: var(--hpp-white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.service-card-2026 h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hpp-primary);
    margin: 0 0 0.5rem;
}

.service-card-2026 p {
    color: var(--hpp-gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--hpp-primary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Emergency CTA 2026
   ========================================================================== */
.emergency-cta-2026 {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

/* Emergency background image layer */
.emergency-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.emergency-cta-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 50, 0.85);
    z-index: 1;
}

/* Fallback gradient when no bg image */
.emergency-cta-2026:not(:has(.emergency-bg-image))::before {
    background: linear-gradient(135deg, var(--hpp-dark) 0%, var(--hpp-primary) 100%);
}

.emergency-content-2026 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: var(--hpp-white);
    text-align: center;
}

.emergency-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

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

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(178, 170, 126, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(178, 170, 126, 0.8)); }
}

.emergency-cta-2026 h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--hpp-white);
    margin: 0 0 0.75rem;
}

.emergency-cta-2026 p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.emergency-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   Why Choose Us 2026
   ========================================================================== */
.why-choose-2026 {
    padding: 80px 0;
    background: var(--hpp-white);
}

.why-choose-grid-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Why Choose - Image block */
.why-choose-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-content .section-tag,
.why-choose-content .section-title-2026,
.why-choose-content .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.features-list-2026 {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hpp-gray-200);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 170, 126, 0.15);
    color: var(--hpp-gold);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-check svg {
    color: var(--hpp-gold);
}

.feature-content strong {
    display: block;
    color: var(--hpp-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content span {
    color: var(--hpp-gray-500);
    font-size: 0.9rem;
}

/* Stats Grid - horizontal 4-column row below split */
.stats-grid-2026,
.stats-row-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-choose-visual {
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

/* Stats row with dark background */
.stats-row-2026,
.stats-grid-2026 {
    background: var(--hpp-dark);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.stat-card {
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-stat);
    font-size: 3rem;
    font-weight: 700;
    color: var(--hpp-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================================================
   Reviews Section 2026
   ========================================================================== */
.reviews-section-2026 {
    padding: 80px 0;
    background: var(--hpp-dark);
}

.reviews-section-2026 .section-tag {
    background: rgba(178, 170, 126, 0.2);
    color: var(--hpp-gold);
}

.reviews-section-2026 .section-title-2026 {
    color: var(--hpp-white);
}

.reviews-section-2026 .reviews-summary span {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.stars-display {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.reviews-slider-2026 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card-2026 {
    padding: 2rem;
    background: var(--hpp-white);
    border: 1px solid var(--hpp-gray-200);
    border-left: 4px solid var(--hpp-gold);
    border-radius: var(--radius-xl);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hpp-gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.review-author strong {
    color: var(--hpp-primary);
    font-weight: 600;
}

.review-author span {
    font-size: 0.85rem;
    color: var(--hpp-gray-500);
}

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

/* ==========================================================================
   Service Areas 2026
   ========================================================================== */
.areas-section-2026 {
    padding: 80px 0;
    background: var(--hpp-white);
}

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

.area-card-2026 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all var(--transition-base);
}

/* Area card background image layer */
.area-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Overlay gradient for area cards with images */
.area-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.area-card-2026:not(:has(.area-card-overlay))::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.area-card-2026 > * {
    position: relative;
    z-index: 2;
}

.area-card-2026:hover .area-card-bg {
    transform: scale(1.05);
}

/* Fallback for cards without bg images */
.area-card-2026:not(:has(.area-card-bg)) {
    background: var(--hpp-gray-50);
    border: 1px solid var(--hpp-gray-200);
    color: inherit;
}

.area-card-2026:not(:has(.area-card-bg))::after {
    display: none;
}

.area-card-2026:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.area-card-2026.all-areas:not(:has(.area-card-bg)) {
    background: var(--hpp-primary);
    border-color: var(--hpp-primary);
    color: var(--hpp-white);
}

.area-card-2026.all-areas:not(:has(.area-card-bg)) h3,
.area-card-2026.all-areas:not(:has(.area-card-bg)) .area-time {
    color: var(--hpp-white);
}

.area-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.area-card-2026 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hpp-white);
    margin: 0 0 0.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.area-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.area-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ==========================================================================
   Final CTA 2026
   ========================================================================== */
.final-cta-2026 {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--hpp-dark) 0%, #2a3a4e 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--hpp-white);
}

.final-cta-2026 h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--hpp-white);
    margin: 0 0 0.75rem;
}

.final-cta-2026 p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.final-cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* ==========================================================================
   Pre-Footer CTA 2026
   ========================================================================== */
.prefooter-cta-2026 {
    padding: 3rem 0;
    background: var(--hpp-gray-50);
    border-top: 1px solid var(--hpp-gray-200);
}

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

.prefooter-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--hpp-primary);
    margin: 0 0 0.5rem;
}

.prefooter-content p {
    color: var(--hpp-gray-500);
    margin-bottom: 1.5rem;
}

.prefooter-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.prefooter-actions .btn-primary-2026,
.prefooter-actions .btn-secondary-2026 {
    min-width: 200px;
}

.prefooter-actions .btn-secondary-2026 {
    background: var(--hpp-accent);
    border: none;
    color: var(--hpp-white);
}

/* ==========================================================================
   Footer 2026
   ========================================================================== */
.footer-map-2026 {
    height: 200px;
    overflow: hidden;
}

.footer-map-2026 iframe {
    width: 100%;
    height: 200px;
    filter: grayscale(80%);
    transition: filter var(--transition-base);
}

.footer-map-2026:hover iframe {
    filter: grayscale(0%);
}

.site-footer-2026 {
    background: var(--hpp-dark);
    color: var(--hpp-white);
    padding: 4rem 0 0;
}

.footer-grid-2026 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--hpp-white);
}

.footer-logo .logo-text strong {
    font-weight: 700;
}

.footer-address {
    margin: 1rem 0;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-phone a {
    color: var(--hpp-white);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-phone a:hover {
    color: var(--hpp-gold);
}

.footer-col .footer-heading {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--hpp-white);
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.hours-table-2026 {
    width: 100%;
    font-size: 0.9rem;
}

.hours-table-2026 td {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.emergency-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--hpp-gold);
}

.payment-icons-2026 {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.payment-methods-2026 .payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px;
    transition: background var(--transition-fast);
}

.payment-methods-2026 .payment-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

.payment-methods-2026 .payment-icon svg {
    display: block;
}

/* Footer tagline */
.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0 1rem;
}

/* Footer contact info wrapper */
.footer-contact-info {
    margin: 1rem 0;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info p svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--hpp-gold);
}

/* Footer credentials */
.footer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.credential-item svg {
    color: var(--hpp-gold);
}

/* Zip code styling in service area links */
.footer-col ul a .zip {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.25rem;
}

/* View all link */
.footer-link-all {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--hpp-gold) !important;
    text-decoration: none;
    font-weight: 500;
}

.footer-link-all:hover {
    text-decoration: underline;
}

/* Emergency badge in footer */
.emergency-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(217, 164, 4, 0.15);
    border: 1px solid rgba(217, 164, 4, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hpp-gold);
}

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

.emergency-badge-footer svg {
    color: var(--hpp-gold);
}

/* Payment heading spacing */
.footer-heading-payment {
    margin-top: 1.25rem;
}

/* Footer bottom rows */
.footer-bottom-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-bottom-row-2 {
    text-align: center;
}

.footer-bottom-row-2 p {
    margin: 0.25rem 0;
}

/* Footer social icons */
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--hpp-white);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social-icons a:hover {
    background: var(--hpp-gold);
    color: var(--hpp-gray-900);
}

/* Footer legal links */
.footer-legal-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-center a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-legal-center a:hover {
    color: var(--hpp-white);
}

.footer-legal-center .legal-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer SEO text */
.footer-seo-text {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Footer logo image */
.footer-logo-img {
    max-width: 180px;
    height: auto;
}

/* Footer responsive - tablet */
@media (max-width: 968px) {
    .footer-grid-2026 {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col-contact {
        grid-column: span 2;
    }

    .footer-bottom-row-1 {
        justify-content: center;
    }
}

/* Footer responsive - mobile */
@media (max-width: 640px) {
    .footer-grid-2026 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-contact {
        grid-column: auto;
    }

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

    .footer-bottom-row-1 {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .payment-methods-2026 {
        justify-content: flex-start;
    }
}

.footer-bottom-2026 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom-2026 p {
    margin: 0.25rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.sticky-cta-2026 {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--hpp-gold);
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-2026 a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--hpp-gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.sticky-cta-2026 .pulse-dot {
    background: var(--hpp-gray-900);
}

@media (max-width: 768px) {
    .sticky-cta-2026 {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   Header 2026 - Premium Redesign
   ========================================================================== */
.site-header-2026 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hpp-white);
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

/* Scrolled state: glass effect + shadow + collapse top bar */
.site-header-2026.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(84, 48, 25, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-header-2026.scrolled .header-top-2026 {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom-color: transparent;
}

.site-header-2026.scrolled .header-main-2026 {
    padding: 0.5rem 0;
}

/* ---- Top Utility Bar ---- */
.header-top-2026 {
    background: linear-gradient(135deg, #3d2112 0%, var(--hpp-primary) 50%, #3d2112 100%);
    color: var(--hpp-white);
    padding: 0.55rem 0;
    font-size: 0.8rem;
    max-height: 50px;
    overflow: visible;
    border-bottom: 1px solid rgba(178, 170, 126, 0.25);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                border-bottom-color 0.3s ease;
}

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

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-divider {
    opacity: 0.3;
    font-size: 0.7rem;
}

.top-info {
    opacity: 0.85;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.emergency-badge-2026 {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

.header-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.rating-text {
    font-weight: 600;
    font-size: 0.78rem;
    opacity: 0.9;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    line-height: 1;
}

.header-phone-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--hpp-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.header-phone-lg:hover {
    background: rgba(255, 255, 255, 0.15);
}

.open-now-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0.55rem;
    background: rgba(45, 138, 78, 0.2);
    border: 1px solid rgba(45, 138, 78, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    color: #6ee7a0;
    letter-spacing: 0.02em;
}

.pulse-dot-sm {
    width: 6px;
    height: 6px;
}

/* ---- Main Navigation Bar ---- */
.header-main-2026 {
    padding: 0.5rem 0;
    background: transparent;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--hpp-gray-100);
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.site-header-2026.scrolled .header-main-2026 {
    border-bottom-color: transparent;
}

/* Wider container for header only */
.header-main-2026 > .container,
.header-top-2026 > .container {
    max-width: 1600px;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* ---- Logo ---- */
.site-logo-2026 {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 90px;
    transition: opacity 0.2s ease, transform 0.2s ease, height 0.4s ease;
}

.site-logo-2026:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.site-logo-2026 img,
.site-logo-2026 .custom-logo {
    height: 90px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: height 0.4s ease;
}

/* Smaller logo when scrolled */
.site-header-2026.scrolled .site-logo-2026 {
    height: 60px;
}

.site-header-2026.scrolled .site-logo-2026 img,
.site-header-2026.scrolled .site-logo-2026 .custom-logo {
    height: 60px;
}

.site-logo-2026 .logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--hpp-primary);
    letter-spacing: -0.01em;
}

.site-logo-2026 .logo-text strong {
    font-weight: 700;
}

/* ---- Desktop Navigation ---- */
.main-nav-2026 {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.main-nav-2026 .nav-menu-2026 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}

.main-nav-2026 .nav-menu-2026 li {
    position: relative;
}

.main-nav-2026 .nav-menu-2026 a {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    color: var(--hpp-gray-600);
    font-weight: 500;
    font-size: 0.92rem;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    transition: color 0.25s ease, background 0.25s ease;
}

/* Subtle bg highlight on hover */
.main-nav-2026 .nav-menu-2026 a:hover {
    color: var(--hpp-primary);
    background: rgba(178, 170, 126, 0.08);
}

/* Gold underline - animated from center */
.main-nav-2026 .nav-menu-2026 a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hpp-gold), transparent);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.main-nav-2026 .nav-menu-2026 a:hover::after {
    width: 70%;
}

/* Active page indicator */
.main-nav-2026 .nav-menu-2026 .current-menu-item > a,
.main-nav-2026 .nav-menu-2026 .current_page_item > a {
    color: var(--hpp-primary);
    font-weight: 600;
}

.main-nav-2026 .nav-menu-2026 .current-menu-item > a::after,
.main-nav-2026 .nav-menu-2026 .current_page_item > a::after {
    width: 70%;
    background: var(--hpp-gold);
}

/* ---- Header CTA Buttons ---- */
.header-cta-2026 {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    align-items: center;
}

.btn-book-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--hpp-primary);
    background: transparent;
    border: 1.5px solid var(--hpp-gold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-book-outline:hover {
    background: var(--hpp-gold);
    color: var(--hpp-gray-900);
    border-color: var(--hpp-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(178, 170, 126, 0.3);
}

.btn-book-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(178, 170, 126, 0.2);
}

.btn-call-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--hpp-white);
    background: linear-gradient(135deg, var(--hpp-primary) 0%, #6d4a32 100%);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(84, 48, 25, 0.2);
}

.btn-call-solid:hover {
    background: linear-gradient(135deg, #6d4a32 0%, var(--hpp-primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(84, 48, 25, 0.3);
}

.btn-call-solid:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(84, 48, 25, 0.2);
}

.btn-call-solid svg,
.btn-book-outline svg {
    flex-shrink: 0;
}

/* ---- Mobile Hamburger ---- */
.mobile-toggle-2026 {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle-2026 span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hpp-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

/* ---- Full-Screen Mobile Menu ---- */
.mobile-menu-2026 {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--hpp-dark) 0%, #0f1620 100%);
    z-index: 9999;
    flex-direction: column;
    overflow-y: auto;
    padding: 0;
}

.mobile-menu-2026.is-open {
    display: flex;
    animation: mobileMenuIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-header .site-logo-2026 {
    height: 40px;
}

.mobile-menu-header .site-logo-2026 img,
.mobile-menu-header .site-logo-2026 .custom-logo {
    filter: brightness(0) invert(1);
    height: 40px;
    max-width: 130px;
}

.mobile-menu-header .logo-text {
    color: var(--hpp-white);
}

.mobile-close-2026 {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--hpp-white);
    cursor: pointer;
    padding: 0.7rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.25s ease;
}

.mobile-close-2026:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-2026 {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
    flex: 1;
}

.mobile-nav-2026 li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-2026 a {
    display: block;
    padding: 1rem 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-2026 a:hover {
    color: var(--hpp-gold);
    padding-left: 1rem;
}

.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--hpp-gold) 0%, #c4b88a 100%);
    color: var(--hpp-gray-900);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(178, 170, 126, 0.3);
}

.mobile-cta-phone:hover {
    box-shadow: 0 6px 24px rgba(178, 170, 126, 0.4);
    transform: translateY(-1px);
}

.mobile-cta-book {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--hpp-white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.mobile-cta-book:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-menu-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   Content CTA 2026
   ========================================================================== */
.content-cta-2026 {
    padding: 2rem;
    background: linear-gradient(135deg, var(--hpp-dark), var(--hpp-primary));
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 2rem 0;
}

.content-cta-2026 h3 {
    color: var(--hpp-white);
    margin: 0 0 0.5rem;
}

.content-cta-2026 p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animation delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ==========================================================================
   Trust Badge Logo Bar 2026
   ========================================================================== */
.trust-bar-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--hpp-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logos a {
    display: block;
    transition: transform 0.3s ease;
}

.trust-logos a:hover {
    transform: scale(1.06) translateY(-2px);
}

.trust-logos img {
    height: 120px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   Services CTA Wrap
   ========================================================================== */
.services-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   Emergency Button 2026
   ========================================================================== */
.btn-emergency-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--hpp-cta-urgent);
    color: var(--hpp-white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-emergency-2026:hover {
    background: var(--hpp-cta-urgent-hover);
    color: var(--hpp-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--hpp-cta-urgent-glow);
}

.btn-emergency-2026:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px var(--hpp-cta-urgent-glow);
}

.btn-emergency-2026 svg {
    flex-shrink: 0;
}

.emergency-subtitle {
    display: block;
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hpp-gold);
    letter-spacing: 0.02em;
}

.emergency-icon svg {
    color: var(--hpp-gold);
}

/* ==========================================================================
   Review Stars SVG
   ========================================================================== */
.review-stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.reviews-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-google-btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Phase 6: Service Areas + FAQ + Footer Premium Redesign
   ========================================================================== */

/* Area Cards - fallback styling for cards without bg images */
.area-card-2026:not(:has(.area-card-bg)) {
    background: var(--hpp-white);
    border-left: 3px solid var(--hpp-gold);
    border-radius: var(--radius-lg);
}

.area-card-2026.all-areas {
    background: var(--hpp-dark);
    border-left-color: var(--hpp-cta-urgent);
}

.area-card-2026.all-areas h3 {
    color: var(--hpp-gold);
}

.area-card-2026.all-areas .area-time {
    color: rgba(255, 255, 255, 0.7);
}

.area-card-2026.all-areas .area-icon svg {
    stroke: var(--hpp-gold);
}

.area-icon svg {
    stroke: var(--hpp-gold);
}

.areas-section-2026 {
    background: var(--hpp-warm-white);
}

/* Area card text colors when images present */
.area-card-2026:has(.area-card-bg) h3 {
    color: var(--hpp-white);
}

.area-card-2026:has(.area-card-bg) .area-time {
    color: rgba(255, 255, 255, 0.8);
}

.area-card-2026:has(.area-card-bg) .area-icon svg {
    stroke: var(--hpp-white);
}

/* FAQ Accordion - Premium */
.homepage-faq-2026 {
    background: var(--hpp-white);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--hpp-gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--hpp-white);
}

.faq-item:hover {
    border-color: var(--hpp-gray-300);
}

.faq-item[open] {
    border-left: 4px solid var(--hpp-gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--hpp-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: color var(--transition-fast);
}

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

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--hpp-gold);
    border-bottom: 2px solid var(--hpp-gold);
    transform: rotate(45deg);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    transform: rotate(-135deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--hpp-gray-500);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer p {
    margin: 0;
}

/* Final CTA - Premium Trust Copy */
.final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--hpp-gold);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.final-cta-trust svg {
    stroke: var(--hpp-gold);
}

/* Footer - Premium Gold Headings */
.site-footer-2026 {
    border-top: 3px solid var(--hpp-gold);
}

.footer-col .footer-heading {
    color: var(--hpp-gold);
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-phone a {
    color: var(--hpp-gold);
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.footer-phone a svg {
    stroke: var(--hpp-gold);
}

.footer-email {
    margin-top: 0.5rem;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-email a:hover {
    color: var(--hpp-gold);
}

.footer-email a svg {
    stroke: rgba(255, 255, 255, 0.7);
}

.footer-email a:hover svg {
    stroke: var(--hpp-gold);
}

/* Emergency badge in footer */
.emergency-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 134, 58, 0.15);
    color: var(--hpp-cta-urgent);
    border: 1px solid rgba(212, 134, 58, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    animation: emergencyPulse 3s ease-in-out infinite;
}

.emergency-badge-footer svg {
    stroke: var(--hpp-cta-urgent);
}

.emergency-badge-footer .pulse-dot {
    background: var(--hpp-cta-urgent);
    width: 8px;
    height: 8px;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 134, 58, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(212, 134, 58, 0); }
}

/* Hours table - subtle borders */
.hours-table-2026 {
    border-collapse: collapse;
}

.hours-table-2026 td {
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-table-2026 tr:last-child td {
    border-bottom: none;
}

/* Footer Bottom - Darker shade */
.footer-bottom-2026 {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 0 -1rem;
}

.footer-bottom-divider {
    display: none;
}

/* Sticky Mobile CTA - Amber */
.sticky-cta-2026 {
    background: var(--hpp-cta-urgent);
}

.sticky-cta-2026 a {
    color: var(--hpp-white);
    min-height: 48px;
}

.sticky-cta-2026 a svg {
    stroke: var(--hpp-white);
}

.sticky-cta-2026 .pulse-dot {
    background: var(--hpp-white);
}

/* Touch target minimum - 44px for all interactive mobile elements */
@media (max-width: 768px) {
    .btn-primary-2026,
    .btn-secondary-2026,
    .btn-cta-urgent,
    .btn-emergency-2026,
    .btn-book-outline,
    .btn-call-solid,
    .mobile-nav-2026 a,
    .mobile-cta-phone,
    .mobile-cta-book,
    .faq-question {
        min-height: 44px;
    }

    .area-card-2026,
    .service-card-2026 {
        min-height: 44px;
    }
}

/* ==========================================================================
   Trust Badges Section 2026 (Footer Area)
   ========================================================================== */
.trust-badges-section-2026 {
    padding: 40px 0;
    background: var(--hpp-warm-white);
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-badge-linked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s;
}

.trust-badge-linked:hover {
    transform: translateY(-3px);
}

.trust-badge-linked img {
    height: 70px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.trust-badge-linked span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hpp-gray-500);
    text-align: center;
}

/* ==========================================================================
   Reviews Widget Container
   ========================================================================== */
.reviews-widget-container {
    margin: 0 auto;
    max-width: 100%;
}

.reviews-widget-container iframe {
    min-height: 400px;
    border: none;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* --- 1200px: reduce container padding, adjust grids --- */
@media (max-width: 1200px) {
    .services-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }
    .areas-grid-2026 {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Tighter header at medium desktop */
    .site-logo-2026 {
        height: 70px;
    }
    .site-logo-2026 img,
    .site-logo-2026 .custom-logo {
        height: 70px;
    }
    .main-nav-2026 .nav-menu-2026 a {
        padding: 0.5rem 0.6rem;
        font-size: 0.84rem;
    }
    .header-main-inner {
        gap: 1.25rem;
    }
    .header-cta-2026 {
        gap: 0.4rem;
    }
    .btn-book-outline,
    .btn-call-solid {
        padding: 0.5rem 0.85rem;
        font-size: 0.82rem;
    }
    .btn-book-outline svg,
    .btn-call-solid svg {
        width: 14px;
        height: 14px;
    }
    .header-top-left .top-info,
    .header-top-left .top-divider:not(:first-of-type) {
        display: none;
    }
}

/* --- 968px: 2-column grids, mobile toggle, stacked layouts --- */
@media (max-width: 968px) {
    /* Hero: single column */
    .hero-grid-2026 {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }
    .hero-subtitle-2026 {
        max-width: none;
    }
    .hero-ctas-2026 {
        justify-content: center;
    }
    .hero-trust-signals {
        justify-content: center;
    }
    .hero-rating {
        justify-content: center;
    }
    .hero-visual-2026 {
        display: none;
    }
    .hero-image-container {
        display: none;
    }
    .hero-form-container {
        padding: 20px 0;
    }
    .hero-form-card {
        max-width: 100%;
    }
    .hero-scroll-indicator {
        display: none;
    }

    /* Why Choose: stacked */
    .why-choose-grid-2026 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-choose-content .section-tag,
    .why-choose-content .section-title-2026,
    .why-choose-content .section-subtitle {
        text-align: center;
    }
    .why-choose-image {
        order: -1;
    }

    /* Stats: 4-col on tablet */
    .stats-grid-2026,
    .stats-row-2026 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .stat-card {
        padding: 1.5rem 1rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }

    /* Reviews: single column */
    .reviews-slider-2026 {
        grid-template-columns: 1fr;
    }

    /* Areas: 2-col */
    .areas-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Header: mobile toggle */
    .main-nav-2026,
    .header-cta-2026 {
        display: none;
    }
    .mobile-toggle-2026 {
        display: flex;
    }
    .header-top-left .top-info,
    .header-top-left .top-divider {
        display: none;
    }
    .header-rating {
        display: none;
    }
    .header-top-inner {
        justify-content: center;
        gap: 1rem;
    }

    /* Section padding: tablet */
    .services-section-2026,
    .why-choose-2026,
    .reviews-section-2026,
    .areas-section-2026,
    .final-cta-2026,
    .homepage-faq-2026 {
        padding: 60px 0;
    }
    .emergency-cta-2026 {
        padding: 60px 0;
    }
    .section-header-2026 {
        margin-bottom: 32px;
    }
}

/* --- 768px: hero single column, fully stacked layouts --- */
@media (max-width: 768px) {
    .hero-2026 {
        min-height: auto;
        padding: 3rem 0;
    }
    .hero-title-2026 {
        font-size: 2rem;
    }
    .hero-ctas-2026 {
        flex-direction: column;
    }
    .hero-ctas-2026 .btn-cta-urgent,
    .hero-ctas-2026 .btn-primary-2026,
    .hero-ctas-2026 .btn-secondary-2026 {
        width: 100%;
    }
    .hero-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .hero-rating {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(26, 35, 50, 0.9) 0%,
            rgba(26, 35, 50, 0.85) 100%);
    }

    /* Header: simplify for small screens */
    .header-top-left .top-info,
    .header-top-left .top-divider,
    .header-rating,
    .open-now-badge {
        display: none;
    }
    .header-top-inner {
        justify-content: center;
        gap: 0.75rem;
    }

    /* Trust bar */
    .trust-bar-inner-2026 {
        text-align: center;
    }
    .trust-badge-linked img {
        height: 70px;
    }

    /* Hero form */
    .hero-form-body iframe {
        min-height: 400px;
    }

    /* Grids: single/dual columns */
    .services-grid-2026 {
        grid-template-columns: 1fr;
    }
    .areas-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid-2026,
    .stats-row-2026 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid-2026 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* CTA buttons: full width */
    .final-cta-buttons {
        flex-direction: column;
    }
    .final-cta-buttons .btn-primary-2026,
    .final-cta-buttons .btn-secondary-2026 {
        width: 100%;
    }
    .prefooter-actions {
        flex-direction: column;
    }
    .prefooter-actions .btn-primary-2026,
    .prefooter-actions .btn-secondary-2026 {
        width: 100%;
    }

    /* Section padding: mobile */
    .services-section-2026,
    .why-choose-2026,
    .reviews-section-2026,
    .areas-section-2026,
    .final-cta-2026,
    .homepage-faq-2026 {
        padding: 48px 0;
    }
    .emergency-cta-2026 {
        padding: 48px 0;
    }
}

/* --- 480px: single column everything, reduce padding --- */
@media (max-width: 480px) {
    .hero-title-2026 {
        font-size: 1.75rem;
    }
    .section-title-2026 {
        font-size: 1.5rem;
    }
    .areas-grid-2026 {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .stats-grid-2026,
    .stats-row-2026 {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card-img {
        height: 180px;
    }
    .trust-badge-linked img {
        height: 50px;
    }
}

/* ==========================================================================
   Page Hero 2026
   ========================================================================== */
.page-hero-2026 {
    background: linear-gradient(135deg, var(--hpp-dark) 0%, var(--hpp-primary) 100%);
    color: var(--hpp-white);
    padding: 3rem 0;
}

.page-hero-2026 h1 {
    color: var(--hpp-white);
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero-2026 .breadcrumbs {
    margin-bottom: 1rem;
}

.page-hero-2026 .breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-2026 .breadcrumbs a:hover {
    color: var(--hpp-white);
}

/* ==========================================================================
   Content Layouts 2026
   ========================================================================== */
.content-layout-2026,
.service-layout-2026 {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: 3rem 0;
}

.standard-page-2026 {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.sidebar-2026 {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.entry-2026 {
    background: var(--hpp-white);
    border: 1px solid var(--hpp-gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.entry-title a {
    color: var(--hpp-primary);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--hpp-gold);
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--hpp-gray-500);
    margin-bottom: 1rem;
}

.entry-excerpt {
    margin-bottom: 1.5rem;
}

.entry-content {
    font-size: 1rem;
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--hpp-gray-200);
}

.entry-content h3 {
    margin-top: 2rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.no-content {
    text-align: center;
    padding: 4rem 2rem;
}

/* Service Sidebar 2026 */
.service-sidebar-2026 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-sidebar-2026 .sidebar-cta {
    background: linear-gradient(135deg, var(--hpp-dark), var(--hpp-primary));
    color: var(--hpp-white);
    padding: 2rem;
    text-align: center;
}

.service-sidebar-2026 .sidebar-cta h4 {
    color: var(--hpp-white);
    margin: 0 0 1rem;
}

.service-sidebar-2026 .sidebar-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hpp-gold);
    margin-bottom: 1rem;
    text-decoration: none;
}

.service-sidebar-2026 .sidebar-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 1rem 0 0;
}

.service-sidebar-2026 .sidebar-trust {
    background: var(--hpp-gray-50);
    border: 1px solid var(--hpp-gray-200);
    padding: 1.5rem;
}

.service-sidebar-2026 .sidebar-trust h4 {
    margin: 0 0 1rem;
    color: var(--hpp-primary);
}

.service-sidebar-2026 .sidebar-trust ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-2026 .sidebar-trust li {
    padding: 0.5rem 0;
    color: var(--hpp-gray-700);
}

/* Reviews Section 2026 - subpage override */

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

.review-card {
    background: var(--hpp-white);
    border: 1px solid var(--hpp-gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.review-card .stars {
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card strong {
    color: var(--hpp-primary);
}

/* Responsive for layouts */
@media (max-width: 1024px) {
    .content-layout-2026,
    .service-layout-2026 {
        grid-template-columns: 1fr;
    }

    .sidebar-2026 {
        position: static;
    }

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

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    /* Hide navigation, sticky CTAs, mobile elements */
    .site-header-2026,
    .sticky-cta-2026,
    .mobile-menu-2026,
    .mobile-toggle-2026,
    .hero-bg-image,
    .hero-overlay,
    .hero-scroll-indicator,
    .hero-review-card,
    .btn-primary-2026,
    .btn-secondary-2026,
    .btn-cta-urgent,
    .btn-emergency-2026,
    .hero-card,
    .footer-map-2026 {
        display: none !important;
    }

    /* Reset backgrounds and colors */
    body,
    .hero-2026,
    .emergency-cta-2026,
    .final-cta-2026,
    .reviews-section-2026,
    .why-choose-visual,
    .site-footer-2026,
    .footer-bottom-2026 {
        background: none !important;
        color: #000 !important;
    }

    /* Ensure text is black on white */
    * {
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Show phone number prominently */
    .footer-phone a {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
    }

    .footer-phone a::after {
        content: " (208) 871-9113";
    }

    /* Show address */
    .footer-address {
        font-size: 1rem !important;
        opacity: 1 !important;
    }

    /* Links show URL */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }

    /* Don't show URL for internal/anchor links */
    a[href^="#"]::after,
    a[href^="tel:"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    /* Page breaks */
    h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Remove animations */
    * {
        animation: none !important;
        transition: none !important;
    }

    body {
        padding-bottom: 0 !important;
    }
}

/* ==========================================================================
   Mobile Responsiveness Fixes - February 2026 Audit
   ========================================================================== */

/* ==========================================================================
   CRITICAL: Touch Target Fixes (44px minimum per WCAG 2.1)
   ========================================================================== */

/* Footer Links - ensure proper touch targets */
.footer-col ul a,
.footer-links a {
    display: block;
    padding: 0.75rem 0 !important;
    min-height: 44px;
}

/* Sidebar Links - services and areas lists */
.services-list a,
.areas-list a {
    display: block;
    padding: 0.875rem 0 !important;
    min-height: 44px;
}

/* FAQ Navigation Links */
.faq-nav-link {
    padding: 0.75rem 1.25rem !important;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Hours Table - increase tap area */
.hours-table td,
.hours-table-2026 td {
    padding: 0.625rem 0.5rem !important;
}

/* Nav Items - ensure minimum height on all screen sizes */
.main-nav-2026 .nav-menu-2026 a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Trust badge links */
.trust-badge-linked {
    min-height: 44px;
}

/* Form inputs - prevent iOS zoom on focus (requires min 16px font) */
.form-group input,
.form-group select,
.form-group textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    font-size: 1rem !important; /* 16px minimum to prevent iOS zoom */
}

/* ==========================================================================
   HIGH: Font Size Fixes - Ensure minimum readable sizes
   ========================================================================== */

/* Prevent body font reduction below 16px on mobile */
@media (max-width: 480px) {
    body {
        font-size: 1rem !important; /* Override 0.9375rem to maintain 16px */
    }
}

/* Ensure secondary text remains readable on mobile */
@media (max-width: 768px) {
    .trust-bar-label,
    .trust-badge-linked span,
    .stat-label,
    .review-author span,
    .footer-bottom-2026 p,
    .emergency-note,
    .method-note,
    .issues-list li,
    .service-card-compact p,
    .sidebar-note,
    .cost-disclaimer,
    .diy-note {
        font-size: 0.875rem !important; /* 14px minimum for secondary text */
    }

    /* Ensure main content text stays readable */
    .entry-content-2026,
    .faq-answer,
    .review-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   HIGH: Overflow Prevention - Prevent horizontal scrolling
   ========================================================================== */

/* Global overflow protection */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Footer grid early collapse to prevent overflow */
@media (max-width: 968px) {
    .footer-grid-v2 {
        grid-template-columns: repeat(2, 1fr) !important;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .footer-grid-v2 {
        grid-template-columns: 1fr !important;
    }
}

/* Hero height fix on mobile - allow content to determine height */
@media (max-width: 768px) {
    .hero-grid-2026 {
        min-height: auto !important;
    }
}

/* Ticker containment - prevent horizontal scroll */
.proof-ticker {
    overflow: hidden;
    max-width: 100vw;
}

/* Sidebar CTA button overflow fix - allow text to wrap on mobile */
.sidebar-cta-card .btn-primary-2026,
.sidebar-cta-card .btn-cta-urgent,
.sidebar-cta-card .btn-block,
.service-sidebar-2026 .sidebar-cta .btn-primary-2026,
.service-sidebar-2026 .sidebar-cta .btn-cta-urgent {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
    line-height: 1.3 !important;
    padding: 0.875rem 1rem !important;
}

/* ==========================================================================
   HIGH: Z-Index Fixes - Mobile menu conflicts
   ========================================================================== */

/* Hide sticky CTA when mobile menu is open */
body.menu-open .sticky-cta-2026 {
    z-index: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

/* ==========================================================================
   MEDIUM: Image Aspect Ratios (CLS prevention)
   ========================================================================== */

.service-featured-image img,
.hero-image-container img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card-img img {
    aspect-ratio: 4 / 3;
}

.area-card-bg {
    aspect-ratio: 3 / 2;
}

/* ==========================================================================
   MEDIUM: Mobile Sub-Menu Support (Accordion style)
   ========================================================================== */

@media (max-width: 968px) {
    .mobile-nav-2026 .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-nav-2026 .menu-item-has-children > a::after {
        content: '+';
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--hpp-gold, #b2aa7e);
        transition: transform 0.3s ease;
        margin-left: auto;
        padding-left: 1rem;
    }

    .mobile-nav-2026 .menu-item-has-children.is-open > a::after {
        transform: rotate(45deg);
    }

    .mobile-nav-2026 .sub-menu {
        display: none;
        padding-left: 1rem;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }

    .mobile-nav-2026 .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    .mobile-nav-2026 .sub-menu a {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
        color: rgba(255, 255, 255, 0.7);
        min-height: 44px;
    }

    .mobile-nav-2026 .sub-menu a:hover {
        color: var(--hpp-gold, #b2aa7e);
    }
}

/* ==========================================================================
   Landscape Phone Optimizations
   ========================================================================== */

@media (max-width: 896px) and (orientation: landscape) {
    .hero-2026 {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title-2026 {
        font-size: 1.75rem;
    }

    .hero-trust-signals,
    .hero-trust-2026 {
        display: none;
    }

    .section-padding,
    .services-section-2026,
    .why-choose-2026,
    .reviews-section-2026,
    .areas-section-2026 {
        padding: 2.5rem 0;
    }
}

/* ==========================================================================
   Safe Area Insets (iPhone X+ notch/home indicator support)
   ========================================================================== */

@supports (padding: max(0px)) {
    .sticky-cta-2026 {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }

    body.menu-open {
        padding-bottom: 0;
    }

    /* Mobile menu respects safe areas */
    .mobile-menu-2026 {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   Enhanced Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-bg-image,
    .area-card-bg,
    .service-card-img img {
        animation: none !important;
        transition: none !important;
    }

    .hero-card {
        animation: none !important;
    }

    .btn-glow,
    .btn-cta-urgent.btn-glow {
        animation: none !important;
    }

    .hero-review-card {
        animation: none !important;
    }

    .pulse-dot,
    .pulse-glow,
    .status-indicator {
        animation: none !important;
    }
}

/* ==========================================================================
   Tap-to-Call Phone Number Styling
   ========================================================================== */

/* Make phone numbers obvious tappable elements on mobile */
@media (max-width: 968px) {
    a[href^="tel:"] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        min-height: 44px;
        text-decoration: none;
    }

    /* Larger tap targets for primary phone CTAs */
    .sidebar-phone-number,
    .footer-phone a,
    .mobile-cta-phone,
    .header-phone-lg {
        min-height: 48px;
        padding: 0.75rem 1rem;
    }
}

/* ==========================================================================
   Additional Touch Target Improvements
   ========================================================================== */

@media (max-width: 768px) {
    /* Ensure all clickable cards have adequate touch targets */
    .service-card-2026,
    .area-card-2026,
    .neighborhood-card,
    .why-card,
    .value-card,
    .cert-badge,
    .contact-method-card,
    .related-service-card,
    .seasonal-card {
        min-height: 44px;
    }

    /* Post navigation links */
    .post-navigation-2026 a {
        min-height: 44px;
        padding: 1rem;
    }

    /* Pagination */
    .pagination-2026 .page-numbers {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Read more links */
    .read-more-link,
    .link-arrow,
    .card-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0.5rem 0;
    }
}

/* ==========================================================================
   Form Field Mobile Optimizations
   ========================================================================== */

@media (max-width: 768px) {
    /* Ensure form fields are properly sized for mobile keyboards */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem !important;
        font-size: 1rem !important;
        min-height: 48px;
    }

    /* Full-width form buttons */
    .form-group button,
    .form-group input[type="submit"],
    .contact-form-2026 .btn-primary-2026 {
        width: 100%;
        min-height: 48px;
    }

    /* Stack form rows on mobile */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION - February 2026
   Fixes identified from visual audit across 100+ pages
   ========================================================================== */

/* ---- 768px Tablet Breakpoint ---- */
@media (max-width: 768px) {
    /* Hero Grid: Stack to single column */
    .hero-grid-2026,
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem 0;
    }

    .hero-form-container {
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }

    /* Process Steps: Stack to single column */
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Service Features Grid: Single column */
    .service-features-grid {
        grid-template-columns: 1fr !important;
    }

    /* Sidebar: Stack below content */
    .service-layout-2026 {
        grid-template-columns: 1fr !important;
    }

    .service-sidebar-2026,
    .sidebar-2026 {
        position: static !important;
        width: 100% !important;
        margin-top: 2rem;
        max-width: 100%;
    }

    /* Contact Methods Grid: 2 columns then 1 */
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Neighborhood Cards: Single column */
    .neighborhood-cards-grid,
    .why-choose-grid,
    .seasonal-cards-grid,
    .call-vs-diy-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Section Padding: Reduce for mobile */
    .hero-2026,
    .service-hero-2026,
    .contact-hero-2026,
    .about-hero-2026 {
        padding: 2rem 0 !important;
    }

    .why-choose-section,
    .partners-section-2026 {
        padding: 3rem 0 !important;
    }

    /* Logo: Reduce size on tablet */
    .site-logo-2026,
    .site-logo-2026 img,
    .site-logo-2026 .custom-logo {
        height: 60px !important;
    }

    /* Tables: Add overflow scrolling */
    .hours-table,
    .cost-table,
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ---- 640px Small Tablet Breakpoint ---- */
@media (max-width: 640px) {
    /* Numbers Grid: 2 columns */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Proof Stats: 2 columns */
    .proof-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Gallery Grid: 2 columns */
    .gallery-grid-2026 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Solution Grid: Stack */
    .solution-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Contact Methods: Single column */
    .contact-methods-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---- 480px Mobile Phone Breakpoint ---- */
@media (max-width: 480px) {
    /* Numbers Grid: Single column */
    .numbers-grid {
        grid-template-columns: 1fr !important;
    }

    /* Proof Stats: Single column */
    .proof-stats {
        grid-template-columns: 1fr !important;
    }

    /* Gallery Grid: Single column */
    .gallery-grid-2026 {
        grid-template-columns: 1fr !important;
    }

    /* Logo: Further reduce */
    .site-logo-2026,
    .site-logo-2026 img,
    .site-logo-2026 .custom-logo {
        height: 45px !important;
    }

    /* Section Padding: Minimal */
    .hero-2026,
    .service-hero-2026,
    .contact-hero-2026,
    .about-hero-2026 {
        padding: 1.5rem 0 !important;
    }

    .why-choose-section,
    .partners-section-2026,
    .faq-section {
        padding: 2rem 0 !important;
    }

    /* Sidebar Cards: Reduce padding */
    .sidebar-cta-card,
    .sidebar-trust-card,
    .sidebar-services-card,
    .sidebar-areas-card {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }

    /* Sidebar Phone Number: Reduce size */
    .sidebar-phone-number {
        font-size: 1.25rem !important;
    }

    /* Button Text: Allow wrapping */
    .sidebar-cta .btn-primary-2026,
    .sidebar-cta .btn-secondary-2026 {
        white-space: normal !important;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.9rem !important;
    }

    /* Form Field Spacing */
    .form-group {
        margin-bottom: 1.5rem !important;
    }

    /* Hero Service Areas Text */
    .hero-service-areas {
        font-size: 0.85rem !important;
    }

    .hero-service-areas span {
        display: block;
        white-space: normal;
    }
}

/* ==========================================================================
   FONT SIZE FIXES - Ensure minimum 14px for secondary, 16px for primary
   ========================================================================== */

@media (max-width: 768px) {
    /* Fix stat labels - was 0.75rem (12px) */
    .stat-label,
    .proof-stat-label {
        font-size: 0.875rem !important; /* 14px minimum */
    }

    /* Fix ticker text - was 0.8rem (12.8px) */
    .ticker-content,
    .ticker-text,
    .proof-ticker-item {
        font-size: 0.9rem !important; /* 14.4px minimum */
    }

    /* Fix partner name - was 0.65rem (10.4px) */
    .partner-name,
    .partners-title {
        font-size: 0.875rem !important; /* 14px minimum */
    }

    /* Fix header top bar text */
    .top-info,
    .top-divider,
    .rating-text {
        font-size: 0.8rem !important; /* 12.8px - acceptable for utility bar */
    }

    /* Fix emergency badge */
    .emergency-badge,
    .emergency-services a {
        font-size: 0.875rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    /* Fix FAQ text */
    .faq-question {
        font-size: 1rem !important;
    }

    .faq-answer {
        font-size: 0.95rem !important;
    }
}

/* ==========================================================================
   TOUCH TARGET ENFORCEMENT - WCAG 2.1 AA (44x44px minimum)
   ========================================================================== */

@media (max-width: 768px) {
    /* All interactive elements */
    a:not(.site-logo-2026),
    button,
    input[type="submit"],
    input[type="button"],
    .btn,
    [role="button"] {
        min-height: 44px;
    }

    /* Nav links in mobile menu */
    .mobile-nav-2026 a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Mobile CTA buttons */
    .mobile-cta-phone {
        min-height: 48px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cta-book {
        min-height: 44px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Default buttons: Ensure 44px */
    .btn-primary-2026:not(.btn-lg):not(.btn-xl),
    .btn-secondary-2026:not(.btn-lg):not(.btn-xl) {
        padding: 1rem 1.75rem !important;
        min-height: 44px;
    }

    /* Sticky CTA */
    .sticky-cta-2026 a {
        min-height: 56px;
        min-width: 56px;
    }

    /* Footer Social Icons */
    .footer-social-icons a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================================================
   LETTER SPACING FIX - Reduce on mobile
   ========================================================================== */

@media (max-width: 480px) {
    /* Uppercase text with wide letter-spacing */
    [style*="letter-spacing"],
    .uppercase-text,
    .label-text {
        letter-spacing: 0.05em !important; /* Reduce from 0.15em */
    }
}

/* ==========================================================================
   GAP FIXES - Reduce large gaps on mobile
   ========================================================================== */

@media (max-width: 768px) {
    /* Trust logos: Reduce gap */
    .trust-logos {
        gap: clamp(1rem, 3vw, 40px) !important;
    }

    /* Partners track: Reduce gap */
    .partners-track {
        gap: 2rem !important;
    }

    /* Solution grid: Reduce gap */
    .solution-grid {
        gap: clamp(1.5rem, 4vw, 4rem) !important;
    }
}

@media (max-width: 480px) {
    .trust-logos {
        gap: 1rem !important;
        flex-wrap: wrap;
    }

    .partners-track {
        gap: 1.5rem !important;
    }
}

/* ==========================================================================
   CRITICAL MOBILE FIXES - Buttons, Sections, Visibility
   ========================================================================== */

/* Fix buttons that get cut off on mobile - allow text wrapping */
@media (max-width: 768px) {
    .btn-primary-2026,
    .btn-secondary-2026,
    .btn-cta-urgent,
    .btn-lg,
    .btn-xl {
        white-space: normal !important;
        word-wrap: break-word !important;
        min-height: 48px;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }

    /* Hero section - ensure content shows */
    .hero-2026,
    .hero-grid-2026 {
        min-height: auto !important;
        padding: 2rem 0 !important;
    }

    .hero-content-2026 {
        text-align: center;
        padding: 1rem;
    }

    .hero-title-2026 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle-2026 {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .hero-ctas-2026 {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100%;
    }

    .hero-ctas-2026 a {
        width: 100% !important;
        justify-content: center;
    }

    .hero-trust-signals {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }

    .hero-trust-signals span {
        font-size: 0.8rem !important;
    }

    .hero-service-areas {
        font-size: 0.85rem !important;
        padding: 0.5rem !important;
    }

    /* Service cards grid */
    .services-grid-2026 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Area cards grid */
    .areas-grid-2026 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Section padding reduction */
    section {
        padding: clamp(2rem, 5vw, 4rem) 0 !important;
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Section headers */
    .section-title-2026 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* Fix stats display */
    .stats-2026 {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1.5rem !important;
    }

    .stat-item-2026 {
        min-width: 120px;
        text-align: center;
    }

    .stat-number {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    }
}

@media (max-width: 480px) {
    .hero-title-2026 {
        font-size: 1.5rem !important;
    }

    .btn-primary-2026,
    .btn-secondary-2026,
    .btn-cta-urgent {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
    }

    .service-card-2026 {
        padding: 0 !important;
    }

    .service-card-body {
        padding: 1rem !important;
    }

    .service-card-body h3 {
        font-size: 1.1rem !important;
    }

    .area-card-2026 {
        min-height: 140px !important;
    }

    .stats-2026 {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .stat-item-2026 {
        width: 100%;
    }
}
