/* ========================================
   SLOSHR CSS STYLES
   ======================================== */

/* CSS Custom Properties (Variables) */
:root {
    --white: #FFFFFF;
    --soft-yellow: #FDE68A;
    --muted-orange: #FBBF24;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #767676;
    --primary-color: #FBBF24;
    --primary-dark: #F59E0B;
    --secondary-color: #FDE68A;
    --accent-color: #F97316;
    --bg-light: #F5F5F5;
    --border-color: #E5E5E5;
    --success-color: #10B981;
    --error-color: #EF4444;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient-primary: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    --gradient-secondary: linear-gradient(135deg, #FDE68A 0%, #FBBF24 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

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

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--primary-color);
    background: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../../../resources/img/sloshr/laundry.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: background-image 0.5s ease-in-out;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero.home-cleaning {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../../../resources/img/sloshr/home_cleaning.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero.corporate-cleaning {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../../../resources/img/sloshr/corporate_cleaning.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 191, 36, 0.1);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Hero Stats */
.hero-stats {
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.stat-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ========================================
   SERVICE SELECTOR & BOOKING FORM
   ======================================== */
.service-selector {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
}

.service-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 2rem;
    border: 2px solid rgba(251, 191, 36, 0.2);
}

.service-tab {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    background: transparent;
    border: none;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.service-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-tab:hover::before {
    left: 100%;
}

.service-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

.service-tab i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-tab-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Service Options */
.service-options {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-options.show {
    display: grid;
}

.service-option {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-option:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.service-option.selected {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.service-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.service-option-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ========================================
   INTEGRATED LAUNDRY INTAKE FORM STYLES
   ======================================== */

/* Step Indicator Styles */
.step-indicator {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.step {
    display: flex;
    align-items: center;
    margin: 0 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
}

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

.step.completed {
    color: var(--success-color);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
}

/* Step Content */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

/* Service Type Grid */
.service-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-type-card {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.service-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-type-card.selected {
    border-color: var(--primary-color);
    background: rgba(251, 191, 36, 0.05);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.1);
}

.service-type-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-type-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.service-type-text small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Weight Slider */
.weight-slider {
    margin: 1.5rem 0;
}

.weight-slider .form-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.weight-display {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.75rem 0;
}

.form-range {
    background: var(--bg-light);
    border-radius: 6px;
    height: 6px;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
    border: 2px solid white;
    box-shadow: var(--shadow-soft);
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
    border: 2px solid white;
    box-shadow: var(--shadow-soft);
}

/* Price Estimate */
.price-estimate {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.price-estimate h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-estimate .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0.5rem 0;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.payment-method {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method:hover {
    border-color: var(--primary-color);
}

.payment-method.selected {
    border-color: var(--primary-color);
    background: rgba(251, 191, 36, 0.05);
}

.payment-method i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    display: block;
}

.payment-method small {
    font-weight: 500;
    font-size: 0.75rem;
}

/* Step Navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.step-nav .btn {
    padding: 12px 24px;
    font-weight: 600;
}

/* Validation Styles */
.zipcode-validation {
    margin: 0.5rem 0;
}

.service-area-alert {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0;
    color: var(--success-color);
    font-size: 0.9rem;
}

.error-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0;
    color: var(--error-color);
    font-size: 0.9rem;
}

/* Form Container Toggle */
.intake-form-container {
    display: block;
}

.simple-form-container {
    display: none;
}

/* Booking Form */
.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-row-full {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
}

.form-group {
    position: relative;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    outline: none;
}

.floating-label {
    position: absolute;
    left: 16px;
    top: 16px;
    transition: all 0.3s ease;
    color: var(--text-light);
    pointer-events: none;
}

.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label {
    top: -8px;
    left: 12px;
    font-size: 0.75rem;
    background: var(--white);
    padding: 0 8px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 120px 0;
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--muted-orange);
    font-weight: bold;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #7f1d1d;
    border-left: 4px solid #ef4444;
}

.alert-warning {
    background: rgba(251, 191, 36, 0.1);
    color: #78350f;
    border-left: 4px solid var(--primary-color);
}

.form-control:valid {
    border-color: var(--accent-color);
}

.text-muted {
    color: var(--text-light) !important;
}

.text-success {
    color: #10b981 !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-selector {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row-full {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .service-tab {
        padding: 1rem;
    }
    
    .service-type-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
        padding-top: 70px; /* Smaller padding for mobile */
    }
    
    .hero.home-cleaning {
        background-attachment: scroll;
        padding-top: 70px; /* Smaller padding for mobile */
    }
    
    .hero.corporate-cleaning {
        background-attachment: scroll;
        padding-top: 70px; /* Smaller padding for mobile */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .hero-stats .row {
        justify-content: center;
    }

    .hero-stats .col-4 {
        flex: 0 0 auto;
        width: auto;
        margin: 0 0.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .stat-card {
        padding: 1rem 0.5rem;
    }

    .service-selector {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .how-it-works {
        padding: 80px 0;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .step {
        margin: 0 0.25rem;
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .hero {
        padding-top: 60px; /* Even smaller padding for small mobile */
    }
    
    .hero.home-cleaning {
        padding-top: 60px;
    }
    
    .hero.corporate-cleaning {
        padding-top: 60px;
    }

    .service-selector {
        padding: 1rem;
    }

    .service-tab {
        padding: 0.75rem 1rem;
    }

    .service-tab i {
        font-size: 1.25rem;
    }

    .service-tab-text {
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem 0.5rem;
    }
    
    .navbar-brand img {
        height: 32px !important;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .step-indicator {
        justify-content: space-around;
        padding: 0.75rem 0;
    }
    
    .step span {
        display: none !important;
    }
    
    .price-estimate .price {
        font-size: 1.5rem;
    }
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f8f9fa;
        --text-light: #adb5bd;
        --bg-light: #1a1a1a;
        --border-color: #343a40;
    }
    
    body {
        background-color: #121212;
        color: var(--text-dark);
    }
    
    .navbar {
        background: rgba(26, 26, 26, 0.95);
        border-bottom-color: #343a40;
    }
    
    .service-selector {
        background: rgba(26, 26, 26, 0.95);
    }
    
    .service-card {
        background: #1a1a1a;
        border-color: #343a40;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero.home-cleaning {
        background-attachment: scroll;
    }
    
    .hero.corporate-cleaning {
        background-attachment: scroll;
    }
}

/* Focus indicators for better accessibility */
.btn:focus,
.form-control:focus,
.service-tab:focus,
.service-option:focus,
.service-type-card:focus,
.payment-method:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-tab.active {
        border: 3px solid var(--white);
    }
    
    .btn-primary {
        border: 2px solid var(--primary-dark);
    }
    
    .service-option.selected,
    .service-type-card.selected,
    .payment-method.selected {
        border-width: 3px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .service-selector,
    .cta {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero h1,
    .hero p {
        color: #000;
    }
}