/* ============================================
   RMR - Robins Mitigation & Restoration
   Professional Website Styles
   Domain: r-m-r.org
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Dark Premium Theme */
    --color-bg: #0a0b0d;
    --color-bg-elevated: #121418;
    --color-bg-card: #1a1c22;
    --color-surface: #252830;
    
    --color-text: #ffffff;
    --color-text-secondary: #b8bcc8;
    --color-text-muted: #8890a0;
    
    /* Brand accent - Silver/Steel to match logo */
    --color-accent: #a8b2c1;
    --color-accent-light: #c5cdd9;
    --color-accent-dark: #8892a2;
    --color-accent-glow: rgba(168, 178, 193, 0.25);
    
    /* Warm accent for CTAs and highlights */
    --color-warm: #e85a3c;
    --color-warm-light: #f07358;
    --color-warm-dark: #c94a30;
    --color-warm-glow: rgba(232, 90, 60, 0.3);
    
    /* Success/Error states */
    --color-success: #22c55e;
    --color-error: #ef4444;
    
    /* Metallic silver from logo */
    --color-silver: #9ca5b4;
    --color-silver-light: #bcc4d1;
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, var(--color-warm) 0%, var(--color-warm-dark) 100%);
    --gradient-silver: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
    --gradient-radial: radial-gradient(circle at 50% 50%, var(--color-surface) 0%, var(--color-bg) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--color-warm-glow);
    --shadow-glow-accent: 0 0 40px var(--color-accent-glow);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Global mobile overflow prevention */
@media (max-width: 768px) {
    *,
    *::before,
    *::after {
        max-width: 100%;
    }
    
    section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
}

body.loading {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-warm);
    color: var(--color-text);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: 10001;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-warm);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-warm);
    outline-offset: 2px;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

body:hover .cursor-glow {
    opacity: 0.3;
}

/* ============================================
   Loading Screen
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 100px;
    height: 100px;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.loader-logo .shield {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawShield 2s ease forwards;
}

.loader-logo .flame {
    opacity: 0;
    animation: flameAppear 0.5s ease 1.5s forwards;
}

@keyframes drawShield {
    to { stroke-dashoffset: 0; }
}

@keyframes flameAppear {
    to { opacity: 1; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-xs) var(--space-lg);
    transition: background-color var(--transition-base), backdrop-filter var(--transition-base), padding var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 0;
    padding-bottom: 0;
}

.nav.scrolled .nav-logo img {
    height: 70px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: 140px;
    width: auto;
    max-width: 500px;
    transition: height var(--transition-base);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-xs) 0;
}

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

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

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

.nav-link-cta {
    background: var(--gradient-accent);
    color: var(--color-text);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.nav-link-cta::after {
    display: none;
}

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

.nav-link-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-xs);
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition-base), opacity var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: var(--color-text);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-silver-light);
    transform: translateX(10px);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-warm);
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: rgba(232, 90, 60, 0.1);
    border: 1px solid rgba(232, 90, 60, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-cta:hover {
    background: rgba(232, 90, 60, 0.2);
    border-color: var(--color-warm);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(10, 11, 13, 0.3) 0%, rgba(10, 11, 13, 0.7) 100%),
        radial-gradient(ellipse at center bottom, transparent 0%, var(--color-bg) 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    margin-right: 0.15em;
}

.hero-title-word.accent {
    color: var(--color-warm);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: var(--color-text);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

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

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-silver), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    right: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    z-index: 2;
}

.hero-stat {
    text-align: right;
    padding-right: var(--space-md);
    border-right: 2px solid var(--color-warm);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-text);
    line-height: 1;
}

.hero-stat-plus,
.hero-stat-slash {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-warm);
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

/* ============================================
   Marquee Section
   ============================================ */
.marquee-section {
    padding: var(--space-lg) 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.marquee-dot {
    color: var(--color-silver) !important;
    font-size: 0.75rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Services Section - Clean Stacked Design
   ============================================ */
.services-section {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--color-bg);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-silver);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-silver);
}

.section-tag::before {
    right: calc(100% + 1rem);
}

.section-tag::after {
    left: calc(100% + 1rem);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.section-title .accent {
    color: var(--color-warm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: min(600px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
}

/* Services List */
.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.service-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item:hover {
    padding-left: var(--space-md);
    background: linear-gradient(90deg, rgba(232, 90, 60, 0.05) 0%, transparent 50%);
}

.service-item-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-silver);
    line-height: 1;
    opacity: 0.3;
    transition: opacity var(--transition-base);
    min-width: 100px;
}

.service-item:hover .service-item-number {
    opacity: 1;
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.service-item:hover .service-item-title {
    color: var(--color-silver-light);
}

.service-item-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.service-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.service-item-tags span {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.service-item:hover .service-item-tags span {
    background: rgba(232, 90, 60, 0.1);
    border-color: rgba(232, 90, 60, 0.3);
    color: var(--color-accent-light);
}

.service-item-icon {
    width: 80px;
    height: 80px;
    color: var(--color-silver);
    opacity: 0.3;
    transition: all var(--transition-base);
}

.service-item:hover .service-item-icon {
    opacity: 1;
    color: var(--color-warm);
    transform: scale(1.1);
}

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

/* ============================================
   About Section
   ============================================ */
.about {
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
    overflow: hidden;
}

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

.about-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(232, 90, 60, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(232, 90, 60, 0.05) 0%, transparent 40%);
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-features {
    display: grid;
    gap: var(--space-lg);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 90, 60, 0.3);
    transform: translateX(8px);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: var(--space-sm);
    background: rgba(232, 90, 60, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-warm);
}

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

.about-feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.about-feature-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 600px;
}

.about-image {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-1 {
    width: 350px;
    height: 450px;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-image-2 {
    width: 320px;
    height: 400px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    z-index: 3;
    background: var(--gradient-accent);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--color-bg-elevated);
}

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

.process-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.process-line {
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-silver), var(--color-surface));
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    position: relative;
}

.process-step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.process-step-marker span {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.process-step-content {
    flex: 1;
    padding-top: var(--space-xs);
}

.process-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
}

.process-step-content p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

/* ============================================
   Service Area Section
   ============================================ */
.service-area {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--color-bg);
    overflow-x: hidden;
}

.service-area-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    box-sizing: border-box;
}

.service-area-content {
    max-width: 600px;
    width: 100%;
}

.service-area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    max-width: 100%;
}

.city {
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.city-primary,
.city:first-child {
    background: var(--gradient-accent);
    color: var(--color-text);
    border-color: transparent;
}

.city:hover:not(.city-primary):not(:first-child) {
    border-color: var(--color-silver);
    color: var(--color-text);
}

/* Map Placeholder */
.service-area-map {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    position: relative;
    z-index: 3;
    width: 60px;
    height: 60px;
    color: var(--color-warm);
    animation: bounce 2s ease infinite;
}

.map-pin svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px var(--color-warm-glow));
}

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

.map-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-ring {
    position: absolute;
    border: 1px solid rgba(232, 90, 60, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-out infinite;
}

.map-ring:nth-child(1) {
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.map-ring:nth-child(2) {
    width: 250px;
    height: 250px;
    animation-delay: 1s;
}

.map-ring:nth-child(3) {
    width: 350px;
    height: 350px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.map-label {
    position: absolute;
    bottom: 50px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    background: var(--color-bg-elevated);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--color-bg-elevated);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial {
    background: var(--color-bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.testimonial:hover {
    border-color: rgba(232, 90, 60, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--color-warm);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

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

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
    font-style: normal;
}

.testimonial-location {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   Contact / Form Section
   ============================================ */
.contact-section {
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.contact-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(232, 90, 60, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 70%);
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

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

.contact-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 90, 60, 0.3);
    transform: translateX(8px);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 90, 60, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-warm);
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method-content {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-method-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

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

.form-card {
    background: var(--gradient-card);
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.form-header p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-label .required {
    color: var(--color-warm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-warm);
    background: rgba(232, 90, 60, 0.05);
    box-shadow: 0 0 0 3px rgba(232, 90, 60, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238890a0' stroke-width='2'%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;
    padding-right: 48px;
}

.form-select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

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

/* Urgency Options */
.urgency-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.urgency-option {
    cursor: pointer;
}

.urgency-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.urgency-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: 0.875rem;
    font-weight: 500;
}

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

.urgency-option input:checked + .urgency-btn {
    border-color: var(--color-warm);
    background: rgba(232, 90, 60, 0.1);
}

.urgency-option input:focus-visible + .urgency-btn {
    outline: 2px solid var(--color-warm);
    outline-offset: 2px;
}

.urgency-emergency {
    border-color: rgba(239, 68, 68, 0.3);
}

.urgency-option input:checked + .urgency-emergency {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--color-error);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    margin-top: var(--space-sm);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .btn-icon {
    transition: transform var(--transition-fast);
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px) translateY(-4px);
}

/* Form Disclaimer */
.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-text);
    margin: 0 auto var(--space-lg);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg);
    padding: var(--space-3xl) var(--space-lg) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 320px;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-warm);
    color: var(--color-text);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.footer-column a,
.footer-column p {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-warm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer-certifications {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Staggered delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }
[data-delay="900"] { transition-delay: 0.9s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-stats {
        display: none;
    }
    
    .about-container,
    .service-area-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-image-stack {
        height: 400px;
        display: flex;
        justify-content: center;
    }
    
    .about-image-1 {
        position: relative;
        width: 100%;
        max-width: 400px;
    }
    
    .about-image-2 {
        display: none;
    }
    
    .about-badge {
        transform: translate(-50%, 100%);
        bottom: -20px;
        top: auto;
        left: 50%;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .contact-method {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }
    
    /* Mobile Nav */
    .nav {
        padding: var(--space-sm) var(--space-md);
    }
    
    .nav-logo img {
        height: 60px;
        max-width: 200px;
    }
    
    .nav.scrolled .nav-logo img {
        height: 45px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile Hero */
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: var(--space-lg);
    }
    
    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Mobile marquee */
    .marquee-section {
        padding: var(--space-md) 0;
    }
    
    .marquee-content span {
        font-size: 0.875rem;
    }
    
    .marquee-content {
        gap: var(--space-md);
    }
    
    /* Mobile Services */
    .services-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .services-intro {
        margin-bottom: var(--space-xl);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 3rem);
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .service-item-number {
        font-size: 2.5rem;
        min-width: auto;
    }
    
    .service-item-icon {
        display: none;
    }
    
    .service-item-tags {
        justify-content: center;
    }
    
    .service-item-desc {
        max-width: 100%;
    }
    
    /* Mobile About */
    .about {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-md);
        display: inline-block;
        transform: none;
        left: auto;
    }
    
    .about-image-stack {
        justify-content: center;
    }
    
    /* Mobile Process */
    .process {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .process-timeline {
        gap: var(--space-lg);
    }
    
    .process-step-marker {
        width: 40px;
        height: 40px;
    }
    
    .process-step-marker span {
        font-size: 1.25rem;
    }
    
    .process-line {
        left: 19px;
    }
    
    /* Mobile Service Area */
    .service-area {
        padding: var(--space-2xl) var(--space-sm);
        overflow-x: hidden;
    }
    
    .service-area-container {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: var(--space-xl);
    }
    
    .service-area-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .service-area-content .section-subtitle {
        padding: 0;
        word-wrap: break-word;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-area-cities {
        justify-content: center;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        padding: 0;
        box-sizing: border-box;
    }
    
    .service-area-map {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Mobile Testimonials */
    .testimonials {
        padding: var(--space-2xl) var(--space-md);
    }
    
    /* Mobile Contact */
    .contact-section {
        padding: var(--space-2xl) var(--space-md);
        min-height: auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-options {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        gap: var(--space-sm);
    }
    
    .contact-method {
        padding: var(--space-sm);
    }
    
    .contact-method-value {
        font-size: 1rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: var(--space-xl) var(--space-md);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 180px;
        margin: 0 auto var(--space-md);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-certifications {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badges {
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    /* Extra small nav */
    .nav-logo img {
        height: 50px;
        max-width: 160px;
    }
    
    .nav.scrolled .nav-logo img {
        height: 40px;
    }
    
    /* Extra small hero */
    .hero-title {
        font-size: clamp(1.75rem, 11vw, 3rem);
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Extra small sections */
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .section-tag {
        font-size: 0.65rem;
    }
    
    .section-tag::before,
    .section-tag::after {
        width: 15px;
    }
    
    /* Extra small services */
    .service-item-number {
        font-size: 2rem;
    }
    
    .service-item-title {
        font-size: 1.25rem;
    }
    
    /* Extra small footer */
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .city {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }
    
    .service-area {
        padding: var(--space-xl) var(--space-xs);
    }
    
    .service-area-cities {
        gap: 0.3rem;
    }
    
    .service-area-content .section-subtitle {
        font-size: 0.875rem;
    }
    
    /* Extra small contact */
    .form-card {
        padding: var(--space-md);
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .urgency-btn {
        padding: var(--space-sm);
        font-size: 0.75rem;
    }
    
    .urgency-icon {
        font-size: 1.25rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-video {
        animation: none;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* Print Styles */
@media print {
    .nav,
    .mobile-menu,
    .hero-video-container,
    .cursor-glow,
    .loader,
    .hero-scroll,
    .contact-video {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        position: relative;
    }
}
