/* ============================================
   CONTACT PAGE - MOBILE-FIRST CSS
   HelpfulMoving Inc - Orange County Movers
   ============================================ */

/* ===================
   CSS VARIABLES
   =================== */
:root {
    /* Colors */
    --primary-blue: #1e3a8a;
    --primary-orange: #f97316;
    --dark-blue: #0f172a;
    --light-blue: #dbeafe;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --success: #10b981;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-fast: 0.15s ease;
}

/* ===================
   RESET & BASE STYLES
   =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

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

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

button {
    font-family: inherit;
}

/* ===================
   CONTAINER
   =================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Mobile: 375px+ */
@media (min-width: 375px) {
    .container {
        padding: 0 var(--space-5);
    }
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* ===================
   TOP BANNER
   =================== */
.geo-facts-banner {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-3) 0;
    text-align: center;
    font-size: var(--font-xs);
    font-weight: 500;
    box-shadow: var(--shadow-md);
    line-height: 1.5;
}

.geo-facts-banner strong {
    font-weight: 700;
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .geo-facts-banner {
        font-size: var(--font-sm);
        padding: var(--space-4) 0;
    }
}

/* ===================
   HERO SECTION - MOBILE FIRST
   Critical: CTA visible without scrolling
   =================== */
.contact-hero {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-8) 0 var(--space-10);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: var(--space-4);
    font-size: var(--font-xs);
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* Hero Title - Mobile */
.hero-title {
    font-size: var(--font-2xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Subtitle - Mobile */
.hero-subtitle {
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-5);
    opacity: 0.95;
}

/* Special Offer - Mobile Priority */
.special-offer {
    background: var(--gradient-orange);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.offer-badge {
    background: white;
    color: var(--primary-orange);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-sm);
    display: inline-block;
    margin-bottom: var(--space-2);
}

.offer-text {
    font-size: var(--font-base);
    font-weight: 600;
    display: block;
}

/* Primary CTA Buttons - ABOVE THE FOLD */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    font-size: var(--font-lg);
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    min-height: 56px;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--gradient-orange);
    color: white;
    border: none;
}

.cta-button.secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Stats Grid - Compact on Mobile */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-3xl);
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-1);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-xs);
    font-weight: 500;
    line-height: 1.3;
}

/* Review Badges - Mobile */
.review-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.review-badge {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all var(--transition-base);
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .hero-title {
        font-size: var(--font-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-lg);
    }
    
    .special-offer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-4);
        text-align: left;
    }
    
    .offer-badge {
        margin-bottom: 0;
    }
    
    .offer-text {
        font-size: var(--font-lg);
    }
    
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-button {
        min-width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-5);
    }
    
    .stat-number {
        font-size: var(--font-4xl);
    }
    
    .stat-label {
        font-size: var(--font-sm);
    }
    
    .review-badge {
        height: 60px;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .contact-hero {
        padding: var(--space-16) 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-xl);
    }
    
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
    }
    
    .review-badge:hover {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ===================
   MAIN CONTACT SECTION
   =================== */
.contact-section {
    padding: var(--space-10) 0;
    background: var(--gray-50);
}

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

.section-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--font-base);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.5;
}

/* Tablet: 768px+ */
@media (min-width: 768px) {
    .contact-section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: var(--font-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-lg);
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-12);
    }
}

/* ===================
   CONTACT METHODS
   =================== */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-method {
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    transition: all var(--transition-base);
}

.contact-method:active {
    transform: scale(0.98);
}

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

.method-content {
    flex: 1;
}

.method-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: var(--space-2);
}

.method-link {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-2);
    word-break: break-word;
}

.method-link:active {
    opacity: 0.8;
}

.method-description {
    font-size: var(--font-sm);
    color: var(--gray-600);
    line-height: 1.5;
}

.hours-list {
    margin: var(--space-2) 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--font-sm);
    gap: var(--space-2);
}

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

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .contact-method:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-2px);
    }
    
    .method-link:hover {
        color: var(--primary-blue);
    }
}

/* ===================
   STATS HIGHLIGHT BOX
   =================== */
.stats-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.stats-highlight h3 {
    color: var(--primary-blue);
    font-size: var(--font-lg);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.stats-highlight ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.stats-highlight li {
    font-size: var(--font-sm);
    color: var(--gray-700);
    margin-bottom: var(--space-1);
}

.stats-highlight strong {
    color: var(--dark-blue);
    font-weight: 700;
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .stats-highlight {
        padding: var(--space-6);
    }
    
    .stats-highlight h3 {
        font-size: var(--font-xl);
    }
    
    .stats-highlight li {
        font-size: var(--font-base);
    }
}

/* ===================
   SERVICE AREAS
   =================== */
.service-areas {
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-6);
}

.areas-title {
    font-size: var(--font-lg);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.area-tag {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
}

.area-tag:active {
    transform: scale(0.95);
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .service-areas {
        padding: var(--space-6);
    }
    
    .areas-title {
        font-size: var(--font-xl);
    }
    
    .area-tag {
        font-size: var(--font-sm);
        padding: var(--space-2) var(--space-5);
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .area-tag:hover {
        background: var(--gradient-orange);
        transform: scale(1.05);
    }
}

/* ===================
   CONTACT FORM
   =================== */
.contact-form-container {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.form-subtitle {
    font-size: var(--font-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: var(--space-2);
    font-size: var(--font-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-base);
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-base);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-size: var(--font-sm);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--font-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-2);
    min-height: 56px;
}

.submit-btn:active {
    transform: scale(0.98);
}

.error-message {
    color: #ef4444;
    font-size: var(--font-xs);
    margin-top: var(--space-1);
    display: block;
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .contact-form-container {
        padding: var(--space-8);
    }
    
    .form-title {
        font-size: var(--font-3xl);
    }
    
    .form-subtitle {
        font-size: var(--font-base);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
    }
}

/* ===================
   WHY CHOOSE SECTION
   =================== */
.why-choose-section {
    background: white;
    padding: var(--space-10) 0;
}

.benefit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.benefit-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.benefit-card:active {
    transform: scale(0.98);
}

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--font-sm);
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .why-choose-section {
        padding: var(--space-16) 0;
    }
    
    .benefit-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .benefit-card {
        padding: var(--space-6);
    }
    
    .benefit-card h3 {
        font-size: var(--font-xl);
    }
    
    .benefit-card p {
        font-size: var(--font-base);
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .benefit-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefit-card:hover {
        border-color: var(--primary-blue);
        box-shadow: var(--shadow-xl);
        transform: translateY(-5px);
    }
}

/* ===================
   TESTIMONIALS
   =================== */
.testimonials-section {
    background: var(--gray-50);
    padding: var(--space-10) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.testimonial-card {
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-orange);
}

.stars {
    color: var(--primary-orange);
    font-size: var(--font-2xl);
    margin-bottom: var(--space-3);
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-3);
    font-style: italic;
    font-size: var(--font-sm);
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: var(--font-sm);
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .testimonials-section {
        padding: var(--space-16) 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .testimonial-card {
        padding: var(--space-6);
    }
    
    .testimonial-text {
        font-size: var(--font-base);
    }
    
    .testimonial-author {
        font-size: var(--font-base);
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================
   EMERGENCY BANNER
   =================== */
.emergency-banner {
    background: var(--gradient-dark);
    color: white;
    padding: var(--space-8) 0;
}

.emergency-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    text-align: center;
}

.emergency-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.emergency-description {
    font-size: var(--font-base);
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.emergency-btn {
    padding: var(--space-4) var(--space-6);
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: all var(--transition-base);
    text-align: center;
    font-size: var(--font-base);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-btn:active {
    transform: scale(0.98);
}

.emergency-btn.secondary {
    background: transparent;
    border: 2px solid white;
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .emergency-title {
        font-size: var(--font-3xl);
    }
    
    .emergency-description {
        font-size: var(--font-lg);
    }
    
    .emergency-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .emergency-btn {
        min-width: 200px;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .emergency-banner {
        padding: var(--space-12) 0;
    }
    
    .emergency-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .emergency-btn:hover {
        background: var(--primary-blue);
        transform: translateY(-2px);
    }
    
    .emergency-btn.secondary:hover {
        background: white;
        color: var(--dark-blue);
    }
}

/* ===================
   FOOTER
   =================== */
.page-footer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-8) 0;
}

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

.footer-content h3 {
    font-size: var(--font-xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.footer-content p {
    line-height: 1.8;
    font-size: var(--font-sm);
    opacity: 0.95;
}

.footer-links {
    margin: var(--space-5) 0;
    padding: var(--space-5) 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-content strong {
    font-weight: 700;
}

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .page-footer {
        padding: var(--space-10) 0;
    }
    
    .footer-content h3 {
        font-size: var(--font-2xl);
    }
    
    .footer-content p {
        font-size: var(--font-base);
    }
}

/* ===================
   UTILITY CLASSES
   =================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ===================
   PRINT STYLES
   =================== */
@media print {
    .geo-facts-banner,
    .special-offer,
    .hero-cta-buttons,
    .review-badges,
    .emergency-banner {
        display: none;
    }
    
    .contact-hero {
        background: white;
        color: black;
        padding: var(--space-4) 0;
    }
    
    .hero-title,
    .section-title {
        color: black;
    }
}