/* ===================================
   FLOW TECH PLUMBING - Design System
   =================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Colors */
    --color-navy: #1a2744;
    --color-navy-light: #243352;
    --color-navy-dark: #0f1826;
    --color-slate: #4a5568;
    --color-slate-light: #718096;
    --color-slate-lighter: #a0aec0;
    --color-action-red: #dc2626;
    --color-action-red-dark: #b91c1c;
    --color-action-red-light: #ef4444;
    --color-safety-yellow: #f59e0b;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-success: #10b981;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-slate);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

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

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: var(--color-navy-dark);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.credentials {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.credentials .badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--color-gray-300);
    font-weight: 500;
}

.credentials .badge svg {
    color: var(--color-safety-yellow);
}

/* ===================================
   HEADER
   =================================== */
.header {
    background: var(--color-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-lg);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-action-red), var(--color-action-red-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-slate-lighter);
    letter-spacing: 0.2em;
}

/* Navigation */
.nav {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-300);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-action-red);
    transition: width var(--transition-base);
}

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

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

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.emergency-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-safety-yellow);
    padding: var(--space-sm) var(--space-md);
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--color-safety-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-action-red);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.phone-cta:hover {
    background: var(--color-action-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

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

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

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    overflow: hidden;
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-safety-yellow);
    background: rgba(245, 158, 11, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-slate-lighter);
    margin-bottom: var(--space-xl);
    max-width: 560px;
}

.hero-subtitle strong {
    color: var(--color-white);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-gray-300);
}

.trust-item svg {
    color: var(--color-success);
}

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 320px;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-action-red), var(--color-action-red-dark));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-glow);
}

.hero-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.hero-card p {
    font-size: 0.95rem;
    color: var(--color-slate-lighter);
    margin-bottom: var(--space-lg);
}

.hero-card-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-safety-yellow);
    transition: color var(--transition-fast);
}

.hero-card-link:hover {
    color: var(--color-white);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--color-action-red);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-action-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   SECTION STYLES
   =================================== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-action-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-slate-light);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-action-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: var(--color-action-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, var(--color-white) 100%);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-action-red);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-slate-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-action-red);
    transition: gap var(--transition-base);
}

.service-link:hover {
    gap: var(--space-sm);
}

/* ===================================
   STANDARD SECTION
   =================================== */
.standard {
    padding: var(--space-4xl) 0;
    background: var(--color-gray-50);
}

.standard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.standard-intro {
    font-size: 1.15rem;
    color: var(--color-slate);
    margin-bottom: var(--space-2xl);
}

.standard-intro strong {
    color: var(--color-navy);
}

.standard-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.feature {
    display: flex;
    gap: var(--space-lg);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-action-red);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-slate-light);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-action-red);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate);
}

/* ===================================
   LOCAL SECTION
   =================================== */
.local {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.map-placeholder {
    aspect-ratio: 1;
    max-width: 400px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    color: var(--color-white);
    box-shadow: var(--shadow-xl);
}

.map-placeholder svg {
    opacity: 0.8;
}

.map-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.local-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: var(--space-lg);
}

.local-text p {
    font-size: 1.05rem;
    color: var(--color-slate);
    margin-bottom: var(--space-lg);
}

.local-text p strong {
    color: var(--color-navy);
}

.local-areas {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.local-areas h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-slate);
    margin-bottom: var(--space-md);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.area {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-navy);
    background: var(--color-gray-100);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info .section-badge {
    color: var(--color-safety-yellow);
}

.contact-info h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--color-slate-lighter);
    margin-bottom: var(--space-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-action-red);
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-slate-lighter);
    margin-bottom: var(--space-xs);
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

a.method-value:hover {
    color: var(--color-action-red);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-navy);
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-action-red);
    background: var(--color-white);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: 20px;
    padding-right: 48px;
}

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

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-slate-light);
    margin-top: var(--space-lg);
}

.form-note svg {
    color: var(--color-success);
}

/* Form Success */
.form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.form-success h3 {
    font-size: 1.5rem;
}

.form-success p {
    color: var(--color-slate);
    max-width: 280px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-navy-dark);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--color-slate-lighter);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-slate-lighter);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.footer-phone:hover {
    color: var(--color-action-red);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-slate-lighter);
    margin-bottom: var(--space-lg);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-badges .badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-safety-yellow);
    background: rgba(245, 158, 11, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-slate-light);
    margin-bottom: var(--space-xs);
}

/* ===================================
   MOBILE CTA BAR
   =================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-navy-dark);
    padding: var(--space-md);
    gap: var(--space-md);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-action-red);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
}

.mobile-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

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

    .standard-content,
    .local-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .local-map {
        order: 2;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        padding: var(--space-sm);
    }

    .credentials {
        gap: var(--space-md);
    }

    .credentials .badge {
        font-size: 0.7rem;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-navy);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-phone,
    .footer-location {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .mobile-cta-bar {
        display: flex;
    }

    .footer {
        padding-bottom: calc(var(--space-xl) + 80px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: var(--space-2xl) 0;
    }

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

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

    .btn-lg {
        padding: var(--space-md) var(--space-xl);
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

    .stats-grid {
        gap: var(--space-md);
    }

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

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

    .map-placeholder {
        max-width: 100%;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.service-card,
.stat-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.3s; }
