/* ================================================
   ASTRAL ELECTRIC - Mobile-First Dark Theme
   Austin's Premier Electrical Experts
   ================================================ */

/* CSS Custom Properties */
:root {
    /* Colors */
    --black: #0a0a0a;
    --black-light: #111;
    --black-lighter: #161616;
    --gray-900: #1a1a1a;
    --gray-800: #252525;
    --gray-700: #333;
    --gray-600: #444;
    --gray-500: #666;
    --gray-400: #888;
    --gray-300: #aaa;
    --gray-200: #ccc;
    --gray-100: #e5e5e5;
    --white: #fff;

    /* Brand Colors */
    --yellow: #FFD300;
    --yellow-light: #FFE033;
    --yellow-dark: #E6BE00;
    --yellow-glow: rgba(255, 211, 0, 0.25);
    --yellow-subtle: rgba(255, 211, 0, 0.08);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Mobile Base */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Transitions - slow and smooth */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
    --transition: 300ms var(--ease);
    --transition-slow: 500ms var(--ease-out);
    --transition-slower: 700ms var(--ease-out);
}

/* Light Theme */
[data-theme="light"] {
    --black: #f5f5f5;
    --black-light: #ebebeb;
    --black-lighter: #e0e0e0;
    --gray-900: #d5d5d5;
    --gray-800: #c5c5c5;
    --gray-700: #b0b0b0;
    --gray-600: #999;
    --gray-500: #666;
    --gray-400: #444;
    --gray-300: #333;
    --gray-200: #222;
    --gray-100: #111;
    --white: #0a0a0a;
    --yellow: #D4A800;
    --yellow-light: #C99E00;
    --yellow-dark: #B38F00;
    --yellow-glow: rgba(180, 140, 0, 0.4);
    --yellow-subtle: rgba(180, 140, 0, 0.15);
}

/* Light theme navbar */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: #ddd;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Light theme logo - ASTRAL turns black */
[data-theme="light"] .logo-text {
    color: #0a0a0a;
}

[data-theme="light"] .logo-highlight {
    color: #D4A800;
}

/* Light theme nav links */
[data-theme="light"] .nav-link {
    color: #444;
}

[data-theme="light"] .nav-link:hover {
    color: #B38F00;
}

/* Light theme mobile menu */
[data-theme="light"] .mobile-menu {
    background: #fff;
}

[data-theme="light"] .mobile-nav-link {
    color: #333;
}

/* Light theme toggle buttons */
[data-theme="light"] .theme-toggle,
[data-theme="light"] .lang-toggle {
    background: #e8e8e8;
    border-color: #ccc;
    color: #444;
}

[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .lang-toggle:hover {
    background: #ddd;
    border-color: #B38F00;
    color: #B38F00;
}

/* Light theme hero grid - visible in center, flashlight reveals outskirts */
[data-theme="light"] .grid-overlay {
    background-image:
        linear-gradient(rgba(190, 150, 0, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 150, 0, 0.12) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at center, black 15%, transparent 50%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 50%);
}

[data-theme="light"] .hero-glow {
    background: radial-gradient(circle, rgba(255, 210, 0, 0.2) 0%, transparent 40%);
}

/* Yellow flashlight for light mode - reveals outer grid */
[data-theme="light"] .cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.4) 0%, transparent 70%);
    filter: blur(30px);
}

/* Light theme sticky CTA */
[data-theme="light"] .sticky-cta {
    background: #fff;
    border-top-color: #ddd;
}

[data-theme="light"] .sticky-phone,
[data-theme="light"] .sticky-text {
    background: #e5e5e5;
    border-color: #ccc;
}

[data-theme="light"] .sticky-text {
    background: #f0f0f0;
    border-color: #ccc;
}

/* Light theme modal */
[data-theme="light"] .modal {
    background: #fff;
}

[data-theme="light"] .modal-close {
    background: #e5e5e5;
    color: #444;
}

[data-theme="light"] .modal-close:hover {
    background: #ddd;
}

/* Light theme form elements */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
    background: #f5f5f5;
    border-color: #ccc;
    color: #222;
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: #888;
}

/* Light theme service/schedule cards */
[data-theme="light"] .schedule-service-btn,
[data-theme="light"] .service-option .option-content,
[data-theme="light"] .urgency-option .option-content,
[data-theme="light"] .property-option .option-content {
    background: #e8e8e8;
    border-color: #ccc;
}

[data-theme="light"] .schedule-service-btn:hover {
    background: #ddd;
    border-color: #aaa;
}

[data-theme="light"] .schedule-service-btn.selected {
    background: rgba(180, 140, 0, 0.15);
    border-color: #D4A800;
}

/* Light theme cards */
[data-theme="light"] .service-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .feature-item {
    background: #fff;
    border-color: #ddd;
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .blog-card:hover,
[data-theme="light"] .feature-item:hover {
    border-color: rgba(180, 140, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Light theme schedule modal */
[data-theme="light"] .schedule-calendar,
[data-theme="light"] .schedule-summary,
[data-theme="light"] .schedule-services {
    background: #f8f8f8;
}

[data-theme="light"] .calendar-header,
[data-theme="light"] .calendar-weekdays {
    background: #e8e8e8;
}

[data-theme="light"] .calendar-day:hover:not(:disabled) {
    background: #e5e5e5;
}

[data-theme="light"] .time-slot {
    background: #f5f5f5;
    border-color: #ccc;
}

[data-theme="light"] .time-slot:hover:not(:disabled) {
    background: #e8e8e8;
    border-color: #aaa;
}

/* ================================================
   RESET & BASE (Mobile-First)
   ================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-100);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for sticky CTA */
}

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

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

a:hover {
    text-shadow: 0 0 20px var(--yellow-glow);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul { list-style: none; }

input, textarea {
    font-family: inherit;
    font-size: 16px; /* Prevents iOS zoom */
}

/* ================================================
   THEME & LANGUAGE TOGGLES
   ================================================ */

.theme-toggle,
.lang-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    transition: all var(--transition);
    color: var(--gray-300);
    flex-shrink: 0;
    cursor: pointer;
}

.theme-toggle:hover,
.lang-toggle:hover {
    background: var(--gray-700);
    border-color: var(--yellow);
    color: var(--yellow);
}

.theme-icon {
    width: 18px;
    height: 18px;
    transition: opacity var(--transition), transform var(--transition);
}

.theme-icon-light {
    display: none;
}

[data-theme="light"] .theme-icon-dark {
    display: none;
}

[data-theme="light"] .theme-icon-light {
    display: block;
}

.lang-current {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Custom Tooltip */
.toggle-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    background: var(--gray-900);
    color: var(--gray-100);
    font-size: 0.6875rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-700);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    pointer-events: none;
    z-index: 1000;
}

.toggle-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--gray-700);
}

.theme-toggle:hover .toggle-tooltip,
.lang-toggle:hover .toggle-tooltip {
    opacity: 1;
    visibility: visible;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ================================================
   TYPOGRAPHY (Mobile-First with Fluid Sizing)
   ================================================ */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

/* Fluid typography using clamp() for seamless scaling */
h1 { font-size: clamp(1.875rem, 5vw + 0.5rem, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.0625rem, 1.5vw + 0.5rem, 1.375rem); }

/* ================================================
   BUTTONS (Mobile-First)
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
    white-space: nowrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 0 0 rgba(255, 211, 0, 0);
}

.btn-primary:active {
    transform: scale(0.98);
    background: var(--yellow-dark);
}

.btn-secondary {
    background: var(--gray-800);
    color: var(--white);
    border: 1px solid var(--gray-700);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--yellow);
    box-shadow: 0 0 0 rgba(255, 211, 0, 0);
}

.btn-large {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-arrow {
    transition: transform var(--transition);
}

/* ================================================
   NAVBAR (Mobile-First)
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-900);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}

.logo-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    stroke: var(--yellow);
}

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

/* Desktop nav - hidden on mobile */
.nav-links,
.nav-cta {
    display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.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);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 0.875rem;
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-nav-link {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gray-300);
    transition: color var(--transition-slow), text-shadow var(--transition-slow);
}

.mobile-nav-link:active {
    color: var(--yellow);
    text-shadow: 0 0 25px var(--yellow-glow);
}

.mobile-menu-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.mobile-toggle-row {
    display: flex;
    gap: 1rem;
}

.mobile-toggle-row .theme-toggle,
.mobile-toggle-row .lang-toggle {
    width: 48px;
    height: 48px;
}

.mobile-toggle-row .theme-icon {
    width: 22px;
    height: 22px;
}

.mobile-toggle-row .lang-current {
    font-size: 0.875rem;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
}

.mobile-phone-link .footer-icon {
    width: 14px;
    height: 14px;
}

/* Nav phone link (used on blog page) - hide on mobile */
.nav-phone {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.625rem;
}

.mobile-quote-btn {
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 320px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    background: var(--black);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.mobile-quote-btn:hover,
.mobile-quote-btn:active {
    background: var(--black);
    color: var(--yellow);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 5px rgba(255, 211, 0, 0.3),
            0 0 10px rgba(255, 211, 0, 0.2),
            0 0 20px rgba(255, 211, 0, 0.1);
        text-shadow: 0 0 5px rgba(255, 211, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 10px rgba(255, 211, 0, 0.6),
            0 0 25px rgba(255, 211, 0, 0.4),
            0 0 50px rgba(255, 211, 0, 0.2),
            0 0 80px rgba(255, 211, 0, 0.1);
        text-shadow:
            0 0 10px rgba(255, 211, 0, 0.8),
            0 0 20px rgba(255, 211, 0, 0.5);
    }
}

/* ================================================
   HERO (Mobile-First)
   ================================================ */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 6rem 1rem 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 211, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 211, 0, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.4;
}

/* Cursor-following glow effect */
.cursor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 211, 0, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero:hover .cursor-glow {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: var(--yellow-subtle);
    border: 1px solid rgba(255, 211, 0, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 1.25rem;
}

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

.hero-title {
    font-size: clamp(2rem, 6vw + 0.5rem, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--yellow);
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.25rem);
    color: var(--gray-400);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.trust-icon {
    color: var(--yellow);
    font-weight: 700;
}

.scroll-indicator {
    display: none;
}

/* ================================================
   SECTION STYLES (Mobile-First with Fluid Spacing)
   ================================================ */

section {
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--yellow-subtle);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* ================================================
   SERVICES (Mobile-First)
   ================================================ */

.services {
    background: var(--black-light);
}

.services-category {
    color: var(--yellow);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-800);
}

.services-category:first-of-type {
    margin-top: 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-grid-single {
    max-width: 600px;
    margin: 0 auto;
}

.service-card-wide {
    text-align: center;
}

.service-card-wide .service-icon {
    margin: 0 auto 1rem;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.service-link {
    color: var(--yellow);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition);
}

.service-link:hover {
    color: var(--yellow-light);
    text-decoration: underline;
}

.service-card {
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-slow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    border-color: rgba(255, 211, 0, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 211, 0, 0.1);
    transform: translateY(-4px);
}

.service-card:active {
    border-color: var(--gray-700);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.8125rem;
    color: var(--gray-300);
}

.service-features li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.6875rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yellow);
    padding: 0;
}

.service-cta span {
    transition: transform var(--transition);
}

/* Emergency service card styling */
.service-card-emergency {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, var(--black) 100%);
}

.service-card-emergency .service-icon {
    color: #ef4444;
}

.service-card-emergency .service-cta {
    color: #ef4444;
}

.service-card-emergency:hover,
.service-card-emergency:active {
    border-color: rgba(239, 68, 68, 0.5);
}

/* Featured service card styling (e.g., Generac) */
.service-card-featured {
    border-color: rgba(255, 211, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 211, 0, 0.05) 0%, var(--black) 100%);
}

.service-card-featured:hover,
.service-card-featured:active {
    border-color: rgba(255, 211, 0, 0.5);
}

/* ================================================
   ABOUT (Mobile-First)
   ================================================ */

.about {
    background: var(--black);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    order: -1;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 280px;
    margin: 0 auto;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

.placeholder-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.image-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--yellow);
    color: var(--black);
    padding: 0.875rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.about-content .section-tag {
    margin-bottom: 1rem;
}

.about-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.about-text {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.75rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

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

.stat-number {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.about-cta {
    margin-top: 1.5rem;
}

/* ================================================
   WHY US (Mobile-First)
   ================================================ */

.why-us {
    background: var(--black-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--yellow);
}

.feature-icon-svg svg {
    width: 100%;
    height: 100%;
}

.feature-item h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--gray-500);
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* ================================================
   SERVICE AREAS (Mobile-First)
   ================================================ */

.areas {
    background: var(--black);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.area-tag {
    padding: 0.375rem 0.875rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--gray-400);
    transition: all var(--transition-slow);
    cursor: pointer;
}

/* All area tags light up on hover */
.area-tag:hover {
    background: rgba(255, 211, 0, 0.12);
    border-color: rgba(255, 211, 0, 0.4);
    color: var(--yellow);
    text-shadow: 0 0 20px var(--yellow-glow);
    box-shadow: 0 0 20px rgba(255, 211, 0, 0.15);
    transform: translateY(-2px);
}

.areas-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.travel-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    font-style: italic;
}

/* ================================================
   3 WAYS TO CONNECT
   ================================================ */

.connect-section {
    background: var(--black);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.connect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.connect-card:hover {
    border-color: rgba(255, 211, 0, 0.3);
    transform: translateY(-4px);
}

.connect-icon {
    width: 48px;
    height: 48px;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.connect-icon svg {
    width: 100%;
    height: 100%;
}

.connect-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.connect-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.connect-action {
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .connect-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
    background: var(--black-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: rgba(255, 211, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-200);
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-item.active .faq-question {
    color: var(--yellow);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ================================================
   CTA SECTION (Mobile-First)
   ================================================ */

.cta-section {
    background: var(--black-light);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
}

/* CTA grid overlay */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 211, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 211, 0, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 60%);
}

/* CTA glow */
.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    margin-bottom: 0.625rem;
}

.cta-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

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

.cta-emergency {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ================================================
   EMERGENCY BANNER (Mobile-First) - REMOVED, merged with CTA
   ================================================ */

.emergency-banner {
    display: none; /* Hidden - merged with CTA section */
    padding: 1rem 0;
    background: var(--yellow);
    color: var(--black);
}

.emergency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.emergency-icon {
    font-size: 1.25rem;
}

.emergency-text strong {
    display: block;
    font-weight: 700;
    font-size: 0.9375rem;
}

.emergency-text span {
    font-size: 0.8125rem;
    opacity: 0.85;
}

.btn-emergency {
    background: var(--black);
    color: var(--yellow);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

/* ================================================
   FOOTER (Mobile-First)
   ================================================ */

.footer {
    padding: 2.5rem 0 1.5rem;
    background: var(--black);
    border-top: 1px solid var(--gray-900);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gray-600);
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.footer-contact a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--yellow);
    flex-shrink: 0;
}

.footer-contact247 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.footer-links h4,
.footer-hours h4 {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 0.875rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-hours p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-hours strong {
    color: var(--gray-300);
    display: block;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-900);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.375rem;
}

.footer-areas {
    font-size: 0.6875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.report-problem-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    color: var(--gray-600);
    transition: color var(--transition-slow);
}

.report-problem-link:hover {
    color: var(--gray-400);
}

/* Report Success */
.report-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
}

.report-success.active {
    display: block;
    animation: fadeInUp 0.6s var(--ease-out);
}

/* ================================================
   MODAL (Mobile-First)
   ================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-height: 85vh;
    max-height: calc(85vh - env(safe-area-inset-top, 0px));
    background: var(--gray-900);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform var(--transition-slower);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    font-size: 1.375rem;
    z-index: 10;
    transition: all var(--transition-slow);
}

.modal-content {
    position: relative;
    padding: 1.5rem;
    padding-top: 3.5rem;
    overflow-y: auto;
    max-height: 85vh;
    max-height: calc(85vh - env(safe-area-inset-top, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
}

.modal-subtitle {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Form Progress */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.step-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    transition: all var(--transition);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.step-label {
    font-size: 0.625rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label {
    color: var(--yellow);
}

.progress-line {
    width: 36px;
    height: 2px;
    background: var(--gray-800);
    margin-bottom: 18px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--gray-200);
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.5rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
}

.service-option input:checked + .option-content {
    background: var(--yellow-subtle);
    border-color: var(--yellow);
}

.option-icon {
    font-size: 1.5rem;
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--yellow);
}

.option-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
    text-align: center;
}

.service-option input:checked + .option-content .option-text {
    color: var(--yellow);
}

/* Urgency Options */
.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.urgency-option {
    cursor: pointer;
}

.urgency-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.urgency-option .option-content {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
}

.urgency-option input:checked + .option-content {
    background: var(--yellow-subtle);
    border-color: var(--yellow);
}

.urgency-option .option-icon {
    font-size: 1.25rem;
    color: var(--yellow);
}

.urgency-option .option-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.urgency-option .option-label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-200);
}

.urgency-option .option-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.urgency-option input:checked + .option-content .option-label {
    color: var(--yellow);
}

/* Property Options */
.property-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.property-option {
    cursor: pointer;
}

.property-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.property-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
}

.property-option input:checked + .option-content {
    background: var(--yellow-subtle);
    border-color: var(--yellow);
}

.property-option .option-icon {
    font-size: 1.5rem;
    color: var(--yellow);
}

.property-option .option-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.property-option .option-label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-200);
}

.property-option .option-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.property-option input:checked + .option-content .option-label {
    color: var(--yellow);
}

/* Ownership Options */
.ownership-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.ownership-option {
    cursor: pointer;
}

.ownership-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ownership-option .option-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
}

.ownership-option input:checked + .option-content {
    background: var(--yellow-subtle);
    border-color: var(--yellow);
}

.ownership-option .option-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-300);
}

.ownership-option input:checked + .option-content .option-text {
    color: var(--yellow);
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

/* Form validation error styling */
.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.375rem;
}

.form-group textarea {
    resize: none;
    min-height: 80px;
}

.form-group select {
    padding: 0.875rem 1rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-slow);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group-small {
    max-width: 100px;
}

.required {
    color: var(--yellow);
}

/* Collapsible Address Section */
.collapsible-section {
    margin: 0.5rem 0;
}

.collapsible-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gray-800);
    border: 1px dashed var(--gray-700);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.collapsible-toggle:hover {
    border-color: var(--gray-600);
    color: var(--gray-300);
}

.collapsible-toggle.active {
    border-color: var(--yellow);
    border-style: solid;
    color: var(--yellow);
}

.toggle-icon {
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform var(--transition-slow);
}

.collapsible-toggle.active .toggle-icon {
    transform: rotate(45deg);
}

.collapsible-content {
    display: none;
    padding: 1rem 0 0;
}

.collapsible-content.active {
    display: block;
    animation: fadeInUp 0.4s var(--ease-out);
}

/* Step Buttons */
.step-buttons {
    display: flex;
    gap: 0.625rem;
}

.step-buttons .btn {
    flex: 1;
}

.next-step:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Submit Button */
.btn-submit { width: 100%; }

.btn-submit .btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: inline; }

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
}

.form-success.active {
    display: block;
    animation: fadeInUp 0.6s var(--ease-out);
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--yellow);
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.success-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.success-subtext {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.success-subtext a {
    color: var(--yellow);
}

/* ================================================
   STICKY CTA (Mobile)
   ================================================ */

.sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 1rem;
    padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
    background: var(--black);
    border-top: 1px solid var(--gray-800);
    z-index: 900;
    gap: 0.75rem;
}

.sticky-phone,
.sticky-text {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: all var(--transition-slow);
}

.sticky-text {
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
}

.sticky-icon {
    width: 24px;
    height: 24px;
    color: var(--yellow);
    stroke: var(--yellow);
}

.sticky-quote {
    flex: 1;
    height: 52px;
}

/* ================================================
   SMALL MOBILE BREAKPOINT (min-width: 375px)
   ================================================ */

@media (min-width: 375px) {
    .hero-badge {
        font-size: 0.8125rem;
    }

    .service-options {
        gap: 0.75rem;
    }

    .service-option .option-content {
        padding: 1.125rem 0.75rem;
    }

    .option-icon {
        font-size: 1.625rem;
    }

    .option-icon svg {
        width: 1.625rem;
        height: 1.625rem;
    }

    .option-text {
        font-size: 0.8125rem;
    }
}

/* ================================================
   LARGE MOBILE BREAKPOINT (min-width: 480px)
   ================================================ */

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta .btn {
        width: auto;
        min-width: 160px;
    }

    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-buttons .btn {
        width: auto;
        min-width: 160px;
    }

    .emergency-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .service-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================================================
   EXTRA SMALL SCREENS (max-width: 374px) - iPhone SE etc.
   ================================================ */

@media (max-width: 374px) {
    .modal {
        max-height: 90vh;
        max-height: calc(90vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    }

    .modal-content {
        padding: 1rem;
        padding-top: 3rem;
        max-height: 88vh;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .modal-title {
        font-size: 1.125rem;
    }

    .modal-subtitle {
        font-size: 0.8125rem;
    }

    .form-progress {
        margin-bottom: 1rem;
        gap: 0.125rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.6875rem;
    }

    .step-label {
        font-size: 0.5625rem;
    }

    .progress-line {
        width: 20px;
        margin-bottom: 14px;
    }

    .step-title {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .service-options {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .option-content {
        padding: 0.625rem !important;
        gap: 0.375rem !important;
    }

    .option-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .option-text {
        font-size: 0.6875rem !important;
    }

    .step-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
}

/* ================================================
   TABLET BREAKPOINT (min-width: 640px)
   ================================================ */

@media (min-width: 640px) {
    .services-grid {
        gap: 1.25rem;
    }

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

    .image-frame {
        max-width: 320px;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-brand .logo {
        justify-content: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact-link {
        justify-content: flex-start;
    }

    /* Modal centered on tablet */
    .modal-overlay {
        align-items: center;
        padding: 1.5rem;
    }

    .modal {
        max-width: 480px;
        border-radius: var(--radius-xl);
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }

    .modal-overlay.active .modal {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ================================================
   SMALL TABLET BREAKPOINT (min-width: 768px)
   ================================================ */

@media (min-width: 768px) {
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 2.5rem;
        align-items: center;
    }

    .about-image {
        order: 0;
    }

    .image-frame {
        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 1.5rem;
    }
}

/* ================================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   ================================================ */

@media (min-width: 1024px) {
    body {
        font-size: 16px;
        padding-bottom: 0;
    }

    /* Navbar - Desktop */
    .logo {
        font-size: 1.375rem;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.8125rem;
        font-weight: 500;
        color: var(--gray-400);
        position: relative;
        padding: 0.375rem 0;
        transition: color var(--transition-slow), text-shadow var(--transition-slow);
        white-space: nowrap;
    }

    .nav-link:hover {
        color: var(--yellow);
        text-shadow: 0 0 25px var(--yellow-glow);
    }

    .nav-cta {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .phone-link,
    .nav-phone {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        font-size: 0.9375rem;
        color: var(--white);
    }

    .phone-link:hover,
    .nav-phone:hover {
        color: var(--yellow);
    }

    .phone-icon-svg {
        width: 18px;
        height: 18px;
        color: var(--yellow);
    }

    .nav-quote-btn {
        padding: 0.625rem 1.25rem;
    }

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

    .mobile-menu {
        display: none !important;
    }

    /* Hero - Desktop */
    .hero {
        min-height: 100vh;
    }

    .hero-glow {
        width: 500px;
        height: 500px;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .scroll-indicator {
        display: flex;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.6875rem;
        color: var(--gray-600);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .scroll-arrow {
        width: 20px;
        height: 32px;
        border: 2px solid var(--gray-700);
        border-radius: 10px;
        position: relative;
    }

    .scroll-arrow::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: var(--yellow);
        border-radius: 2px;
        animation: scroll-dot 1.5s ease-in-out infinite;
    }

    @keyframes scroll-dot {
        0%, 100% { opacity: 1; top: 6px; }
        50% { opacity: 0.3; top: 14px; }
    }

    /* Services - Desktop */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        padding: clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 1.5vw, 1.5rem);
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 211, 0, 0.2);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 211, 0, 0.08);
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    /* About - Desktop */
    .about-grid {
        gap: 4rem;
    }

    .image-frame {
        aspect-ratio: 4/5;
    }

    .image-badge {
        bottom: -15px;
        right: -15px;
        padding: 1.25rem;
    }

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

    /* Features - Desktop */
    .feature-item {
        padding: 1.5rem;
    }

    .feature-item:hover {
        border-color: rgba(255, 211, 0, 0.2);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 211, 0, 0.05);
    }

    /* Areas - Desktop */
    .areas-list {
        gap: 0.75rem;
    }

    .area-tag {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }

    .area-tag:hover {
        background: var(--gray-800);
        border-color: rgba(255, 211, 0, 0.3);
        color: var(--yellow);
        cursor: pointer;
        text-shadow: 0 0 15px var(--yellow-glow);
    }

    /* CTA - Desktop */
    .cta-section::before {
        width: 600px;
        height: 600px;
    }

    /* Footer - Desktop */
    .footer-grid {
        gap: 2rem;
    }

    .footer-contact a:hover {
        color: var(--yellow);
    }

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

    /* Modal - Desktop */
    .modal {
        max-width: 500px;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-close:hover {
        background: var(--gray-700);
        color: var(--white);
    }

    /* Hide mobile sticky */
    .sticky-cta {
        display: none;
    }

    /* Button hover effects */
    .btn-primary:hover {
        background: var(--black);
        color: var(--yellow);
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(255, 211, 0, 0.15);
    }

    .btn-secondary:hover {
        background: var(--gray-700);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    }

    .btn-outline:hover {
        background: var(--black);
        color: var(--yellow);
        box-shadow: 0 0 20px rgba(255, 211, 0, 0.15);
    }

    .btn:hover .btn-arrow {
        transform: translateX(4px);
    }

    .service-cta:hover {
        color: var(--yellow-light);
        text-shadow: 0 0 20px var(--yellow-glow);
    }

    .service-cta:hover span {
        transform: translateX(4px);
    }
}

/* ================================================
   LARGE DESKTOP (min-width: 1280px)
   ================================================ */

@media (min-width: 1280px) {
    h1 { font-size: 3.75rem; }

    .hero-title {
        font-size: 4rem;
    }

    .hero-glow {
        width: 600px;
        height: 600px;
    }
}

/* ================================================
   LANGUAGE TOGGLE
   ================================================ */

.lang-toggle {
    background: transparent;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition);
    margin-right: 0.75rem;
}

.lang-toggle:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.lang-toggle.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.mobile-lang-toggle {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
}

/* ================================================
   BLOG PAGE
   ================================================ */

.blog-header {
    background: var(--black);
    padding: 8rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Blog header grid overlay */
.blog-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 211, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 211, 0, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
}

/* Blog header glow */
.blog-header::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, var(--yellow-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.blog-header .container {
    position: relative;
    z-index: 1;
}

.blog-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

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

.blog-categories {
    background: var(--black);
    padding: 0 0 2rem;
    position: sticky;
    top: 70px;
    z-index: 50;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-tab {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition);
}

.category-tab:hover {
    border-color: var(--gray-600);
    color: var(--white);
}

.category-tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.blog-section {
    background: var(--black-light);
    padding: var(--space-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: var(--gray-700);
}

.blog-card.expanded {
    grid-column: 1 / -1;
}

.blog-card-image {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-icon {
    width: 64px;
    height: 64px;
    color: var(--yellow);
    opacity: 0.8;
}

.blog-card-icon svg {
    width: 100%;
    height: 100%;
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 211, 0, 0.1);
    border: 1px solid rgba(255, 211, 0, 0.3);
    color: var(--yellow);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.read-time {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.blog-card-expand {
    padding: 0 1.5rem 1.5rem;
}

.blog-full-content {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-800);
    margin-bottom: 1rem;
}

.blog-card.expanded .blog-full-content {
    display: block;
}

.blog-full-content h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--yellow);
}

.blog-full-content h3:first-child {
    margin-top: 0;
}

.blog-full-content h4 {
    font-size: 1rem;
    margin: 1.25rem 0 0.5rem;
}

.blog-full-content p {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-full-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-full-content li {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.blog-full-content li strong {
    color: var(--white);
}

.blog-cta {
    background: var(--black-lighter);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.blog-cta p {
    margin: 0;
    color: var(--gray-300);
}

.blog-cta a {
    color: var(--yellow);
    font-weight: 600;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    border: none;
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.blog-read-more:hover {
    gap: 0.625rem;
}

.blog-read-more span {
    transition: transform var(--transition);
}

.blog-card.expanded .blog-read-more span {
    transform: rotate(180deg);
}

/* ================================================
   UTILITIES
   ================================================ */

:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-800);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-700);
}

/* Scroll Reveal Animations */
/* Enhanced Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Different reveal directions */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Staggered reveals for grid items */
.services-grid .service-card.reveal {
    transition-delay: calc(var(--i, 0) * 100ms);
}

.features-grid .feature-item.reveal {
    transition-delay: calc(var(--i, 0) * 80ms);
}

.areas-list .area-tag {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease,
                background 0.3s ease, border-color 0.3s ease,
                color 0.3s ease, box-shadow 0.3s ease;
}

.areas-list.revealed .area-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered area tag reveal */
.areas-list .area-tag:nth-child(1) { transition-delay: 0.02s; }
.areas-list .area-tag:nth-child(2) { transition-delay: 0.04s; }
.areas-list .area-tag:nth-child(3) { transition-delay: 0.06s; }
.areas-list .area-tag:nth-child(4) { transition-delay: 0.08s; }
.areas-list .area-tag:nth-child(5) { transition-delay: 0.1s; }
.areas-list .area-tag:nth-child(6) { transition-delay: 0.12s; }
.areas-list .area-tag:nth-child(7) { transition-delay: 0.14s; }
.areas-list .area-tag:nth-child(8) { transition-delay: 0.16s; }
.areas-list .area-tag:nth-child(9) { transition-delay: 0.18s; }
.areas-list .area-tag:nth-child(10) { transition-delay: 0.2s; }
.areas-list .area-tag:nth-child(11) { transition-delay: 0.22s; }
.areas-list .area-tag:nth-child(12) { transition-delay: 0.24s; }
.areas-list .area-tag:nth-child(13) { transition-delay: 0.26s; }
.areas-list .area-tag:nth-child(14) { transition-delay: 0.28s; }
.areas-list .area-tag:nth-child(15) { transition-delay: 0.3s; }
.areas-list .area-tag:nth-child(16) { transition-delay: 0.32s; }
.areas-list .area-tag:nth-child(17) { transition-delay: 0.34s; }
.areas-list .area-tag:nth-child(18) { transition-delay: 0.36s; }
.areas-list .area-tag:nth-child(19) { transition-delay: 0.38s; }
.areas-list .area-tag:nth-child(20) { transition-delay: 0.4s; }
.areas-list .area-tag:nth-child(21) { transition-delay: 0.42s; }
.areas-list .area-tag:nth-child(22) { transition-delay: 0.44s; }
.areas-list .area-tag:nth-child(23) { transition-delay: 0.46s; }
.areas-list .area-tag:nth-child(24) { transition-delay: 0.48s; }
.areas-list .area-tag:nth-child(25) { transition-delay: 0.5s; }

/* ================================================
   TEXT/MESSAGE MODAL (iMessage-like)
   ================================================ */

.text-modal {
    max-width: 360px !important;
}

.text-modal-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-800);
}

.text-recipient {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.recipient-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: var(--radius-full);
    color: var(--black);
}

.recipient-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

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

.recipient-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}

.recipient-status {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.text-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.text-form-fields .form-group {
    margin: 0;
}

.text-form-fields input {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.text-form-fields input::placeholder {
    color: var(--gray-500);
}

.text-form-fields input:focus {
    outline: none;
    border-color: var(--yellow);
}

.text-input-container {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    transition: border-color var(--transition);
}

.text-input-container:focus-within {
    border-color: var(--yellow);
}

.text-input-container textarea {
    flex: 1;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.9375rem;
    resize: none;
    min-height: 40px;
    max-height: 120px;
}

.text-input-container textarea::placeholder {
    color: var(--gray-500);
}

.text-input-container textarea:focus {
    outline: none;
}

.text-send-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.text-send-btn:hover {
    background: var(--yellow-light);
    transform: scale(1.05);
}

.text-send-btn:active {
    transform: scale(0.95);
}

.send-icon {
    color: var(--black);
    font-size: 1rem;
    transform: rotate(-45deg);
}

.text-send-btn.loading .send-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(-45deg); }
    to { transform: rotate(315deg); }
}

.text-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
}

.text-success.active {
    display: block;
    animation: fadeInUp 0.4s var(--ease-out);
}

.success-bubble {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    font-size: 1rem;
}

.text-success-note {
    color: var(--gray-500);
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.reply-method {
    padding: 0.25rem 0;
}

.reply-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.reply-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--yellow);
    cursor: pointer;
}

.reply-toggle:hover .toggle-label {
    color: var(--gray-300);
}

.email-field {
    animation: fadeInUp 0.3s var(--ease-out);
}

/* Make sure small modal works on mobile */
.modal-small .modal {
    max-height: 85vh;
}

.modal-small .modal-content {
    max-height: 85vh;
}

/* ================================================
   EMERGENCY BANNER
   ================================================ */

.emergency-banner {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    padding: 1.5rem 0;
}

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

.emergency-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-icon {
    font-size: 2rem;
    color: var(--yellow);
}

.emergency-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.emergency-text p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--yellow);
    color: var(--black);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.btn-emergency:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
}

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

@media (max-width: 640px) {
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .emergency-text {
        flex-direction: column;
    }

    .btn-emergency {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   SCHEDULING MODAL STYLES
   ================================================ */

.schedule-modal {
    max-width: 520px;
}

.schedule-modal .modal-content {
    padding: 0;
}

.schedule-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-800);
}

.schedule-header .modal-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.schedule-header .modal-subtitle {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Schedule Steps */
.schedule-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-800);
    background: var(--gray-900);
}

.schedule-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.schedule-step.active {
    color: var(--yellow);
}

.schedule-step.completed {
    color: var(--gray-400);
}

.schedule-step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.schedule-step.active .schedule-step-number {
    background: var(--yellow);
    color: var(--black);
}

.schedule-step.completed .schedule-step-number {
    background: var(--gray-700);
}

.schedule-step.completed .schedule-step-number::before {
    content: "✓";
}

.schedule-step.completed .schedule-step-num {
    display: none;
}

/* Schedule Body */
.schedule-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.schedule-section {
    display: none;
}

.schedule-section.active {
    display: block;
    animation: fadeInUp 0.3s var(--ease-out);
}

.schedule-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Service Selection Grid */
.schedule-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.schedule-service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    text-align: center;
}

.schedule-service-btn:hover {
    border-color: var(--gray-600);
    background: var(--gray-800);
}

.schedule-service-btn.selected {
    border-color: var(--yellow);
    background: var(--yellow-subtle);
}

.schedule-service-btn .service-icon {
    font-size: 1.5rem;
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-service-btn .service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--yellow);
}

.schedule-service-btn .service-name {
    font-size: 0.875rem;
    color: var(--gray-200);
}

.schedule-service-btn.selected .service-name {
    color: var(--yellow);
}

/* Calendar */
.schedule-calendar {
    background: var(--gray-900);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-800);
}

.calendar-nav {
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.calendar-nav:hover {
    color: var(--yellow);
}

.calendar-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-month {
    font-weight: 600;
    color: var(--white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0.5rem;
    background: var(--gray-800);
}

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    padding: 0.25rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.calendar-day:hover:not(:disabled) {
    background: var(--gray-800);
}

.calendar-day.today {
    color: var(--yellow);
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--yellow);
    color: var(--black);
    font-weight: 600;
}

.calendar-day:disabled {
    color: var(--gray-700);
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: var(--gray-700);
}

/* Time Slots */
.time-slots-container {
    margin-top: 1rem;
}

.time-slots-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem 0.5rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    text-align: center;
}

.time-slot:hover:not(:disabled) {
    border-color: var(--gray-600);
    background: var(--gray-800);
}

.time-slot.selected {
    border-color: var(--yellow);
    background: var(--yellow-subtle);
    color: var(--yellow);
}

.time-slot:disabled {
    color: var(--gray-700);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Contact Form in Schedule Modal */
.schedule-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-form-fields .form-group {
    margin-bottom: 0;
}

.schedule-form-fields label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.schedule-form-fields input,
.schedule-form-fields textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
}

.schedule-form-fields input:focus,
.schedule-form-fields textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.schedule-form-fields input::placeholder,
.schedule-form-fields textarea::placeholder {
    color: var(--gray-500);
}

/* Summary Section */
.schedule-summary {
    background: var(--gray-900);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
}

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

.summary-label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.summary-value {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Schedule Footer */
.schedule-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    gap: 1rem;
}

.schedule-footer .btn {
    flex: 1;
}

.schedule-back-btn {
    background: var(--gray-800);
    color: var(--gray-300);
}

.schedule-back-btn:hover {
    background: var(--gray-700);
}

/* Schedule Success */
.schedule-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.schedule-success.active {
    display: block;
    animation: fadeInUp 0.3s var(--ease-out);
}

.schedule-success .success-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.schedule-success .success-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.schedule-success .success-text {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.schedule-success .appointment-details {
    background: var(--gray-900);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-success .appointment-details p {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
    font-size: 0.875rem;
}

.schedule-success .appointment-details p:last-child {
    border-bottom: none;
}

.schedule-success .appointment-details .label {
    color: var(--gray-400);
}

.schedule-success .appointment-details .value {
    color: var(--white);
    font-weight: 500;
}

/* Mobile responsiveness for schedule modal */
@media (max-width: 480px) {
    .schedule-services {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .schedule-steps {
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .schedule-step-label {
        display: none;
    }

    .schedule-body {
        padding: 1rem;
    }

    .schedule-footer {
        padding: 1rem;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
