/* ========================================
   RAPID RESCUE NASHVILLE
   Emergency Restoration Website
   ======================================== */

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

:root {
    --navy: #0B1D3A;
    --navy-light: #122B52;
    --navy-mid: #1A3A6B;
    --red: #E63946;
    --red-dark: #C62D39;
    --red-glow: rgba(230, 57, 70, 0.4);
    --white: #FFFFFF;
    --off-white: #F4F6F9;
    --silver: #B0B8C8;
    --gray: #6B7A90;
    --gray-light: #E2E6ED;
    --green: #22c55e;
    --gold: #f59e0b;
    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.08);
    --shadow-md: 0 4px 24px rgba(11, 29, 58, 0.12);
    --shadow-lg: 0 8px 40px rgba(11, 29, 58, 0.18);
    --shadow-glow: 0 0 30px var(--red-glow);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
}

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

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

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

/* === Reveal Animation === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.services-grid .reveal:nth-child(2),
.trust-badges-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3),
.trust-badges-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4),
.trust-badges-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.trust-badges-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.trust-badges-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.timeline-step.reveal:nth-child(3) { transition-delay: 0.1s; }
.timeline-step.reveal:nth-child(4) { transition-delay: 0.2s; }
.timeline-step.reveal:nth-child(5) { transition-delay: 0.3s; }

/* === Pulse / Glow Animations === */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--red-glow), 0 4px 15px rgba(230, 57, 70, 0.3);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(230, 57, 70, 0), 0 4px 20px rgba(230, 57, 70, 0.5);
    }
}

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

@keyframes beaconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes beaconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.4; }
}

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

@keyframes ringExpand {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(11, 29, 58, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    flex-shrink: 0;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35)) brightness(1.1);
    transition: var(--transition);
}

.logo:hover .nav-logo {
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45)) brightness(1.25);
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) brightness(1.05);
    opacity: 0.9;
}

.logo-icon {
    display: flex;
    align-items: center;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-heading);
    font-weight: 600;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--white);
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background: var(--red);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--red-dark);
    transform: scale(1.03);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--navy) 0%, #0D2240 40%, #14365E 100%);
    overflow: hidden;
    padding: 140px 24px 100px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 58, 107, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated background grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.emergency-beacon {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    animation: beaconSpin 8s linear infinite;
    pointer-events: none;
}

.emergency-beacon::before,
.emergency-beacon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.emergency-beacon::before {
    width: 120px;
    height: 120px;
    animation: ringExpand 3s ease-out infinite;
}

.emergency-beacon::after {
    width: 80px;
    height: 80px;
    animation: ringExpand 3s ease-out infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--red);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.beacon-dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    position: relative;
}

.beacon-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--red);
    animation: beaconPulse 1.5s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

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

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-emergency {
    background: var(--red);
    color: var(--white);
}

.btn-emergency:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-xl {
    padding: 20px 44px;
    font-size: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* === Section Shared Styles === */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === Services === */
.services {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-icon.water {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.service-icon.fire {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.service-icon.mold {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.service-icon.storm {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

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

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}

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

/* === How It Works / Timeline === */
.how-it-works {
    background: var(--white);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--red), var(--green));
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    gap: 28px;
    margin-bottom: 56px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--navy);
}

.step-content {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px;
    flex: 1;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.step-content:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === Why Choose Us === */
.why-us {
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.stat-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: var(--red);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--red);
    display: inline;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 8px;
}

/* Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.badge-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

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

.badge-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.badge-card:hover .badge-icon {
    background: rgba(230, 57, 70, 0.12);
    transform: scale(1.08);
}

.badge-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.badge-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === Service Areas === */
.areas {
    background: var(--white);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.area-tag {
    padding: 12px 28px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.area-tag.highlight {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    font-weight: 700;
}

.area-tag.highlight:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* === Testimonials === */
.testimonials {
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(230, 57, 70, 0.08);
    font-family: Georgia, serif;
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

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

/* === Emergency CTA Section === */
.emergency-cta {
    background: linear-gradient(165deg, var(--navy) 0%, #0D2240 40%, #14365E 100%);
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-beacon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(230, 57, 70, 0.1);
    animation: ringExpand 4s ease-out infinite;
    pointer-events: none;
}

.emergency-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.emergency-cta p {
    color: var(--silver);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem !important;
    margin-top: 24px !important;
}

/* === Footer === */
.site-footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-phone {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--red) !important;
}

.footer-phone:hover {
    color: #FF6B6B !important;
}

.footer-hours {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green);
    letter-spacing: 0.5px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 32px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* === Floating CTA === */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px var(--red-glow);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, background 0.3s ease;
}

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

.floating-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px) !important;
}

/* === Responsive === */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 16px;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 10px;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .nav-logo {
        height: 36px;
    }

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

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

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

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

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

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

    .stats-grid {
        margin-bottom: 56px;
    }

    .timeline-step {
        margin-bottom: 48px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 64px 0;
    }

    .hero {
        padding: 120px 20px 64px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px;
    }

    .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .btn-xl {
        padding: 18px 32px;
        font-size: 17px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .emergency-beacon {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 48px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-line {
        left: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .step-content {
        padding: 20px;
    }

    .timeline-step {
        gap: 20px;
        margin-bottom: 40px;
    }

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

    .floating-cta span {
        display: none;
    }

    .floating-cta {
        padding: 16px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .area-tag {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .areas-grid {
        gap: 12px;
    }

    .emergency-cta {
        padding: 64px 0;
    }

    .site-footer {
        padding: 48px 0 0;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .testimonials-grid {
        gap: 24px;
    }

    .services-grid {
        gap: 24px;
    }
}
