/* Custom styles for My Look Is In */

:root {
    /* Pastel Teal & Soft Beige Color Palette */
    --primary-teal: #4ECDC4;
    --primary-teal-light: #8FE3DD;
    --primary-teal-dark: #36A69C;
    --soft-beige: #F7F3E9;
    --warm-beige: #E8D5B7;
    --cream: #FBF8F1;
    --navy-accent: #2C3E50;
    --text-dark: #2C3E50;
    --text-muted: #6C757D;
    --success-soft: #52C41A;
    --warning-soft: #FFA940;
    --danger-soft: #FF4D4F;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(78, 205, 196, 0.15);
    --shadow-hover: 0 8px 30px rgba(78, 205, 196, 0.25);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-beige) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.lead {
    color: var(--text-muted);
    font-weight: 400;
}

/* Layout */
.container-fluid {
    background: transparent;
    padding: 20px;
}

/* Buttons */
.btn {
    border-radius: var(--radius-xl);
    padding: 12px 28px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-teal-dark) 0%, var(--primary-teal) 100%);
    color: white;
}

.btn-success {
    background: var(--success-soft);
    color: white;
    box-shadow: 0 4px 20px rgba(82, 196, 26, 0.3);
}

.btn-success:hover {
    background: #389e0d;
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: var(--warm-beige);
    color: var(--text-dark);
    box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
    background: #d4c4a8;
    transform: translateY(-2px);
    color: var(--text-dark);
}

.btn-outline-primary {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

.btn:disabled {
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.card-header {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    color: white;
    border: none;
    padding: 20px 24px;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    padding: 24px;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-teal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-teal);
    stroke-width: 1.5;
}

.feature-icon-small {
    width: 32px;
    height: 32px;
    color: var(--primary-teal);
    stroke-width: 1.5;
}

/* Trust Signals */
.trust-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-teal);
    stroke-width: 1.5;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.testimonial-author {
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    padding-top: 16px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Camera Interface */
#camera-container {
    background: var(--soft-beige);
    border: 2px dashed var(--primary-teal);
    border-radius: var(--radius-lg);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#video, #captured-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* Loading Animation */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
    color: var(--primary-teal);
}

#analysis-progress {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--radius-md);
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(255, 77, 79, 0.1);
    color: var(--danger-soft);
    border-left-color: var(--danger-soft);
}

.alert-info {
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal-dark);
    border-left-color: var(--primary-teal);
}

/* Recommendations */
.border-start {
    border-left: 4px solid var(--primary-teal) !important;
}

.bg-light.bg-opacity-10 {
    background: rgba(78, 205, 196, 0.08) !important;
    border-radius: var(--radius-sm);
}

/* Badges */
.badge {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: var(--radius-xl);
    padding: 8px 12px;
    font-size: 0.75rem;
}

.bg-success {
    background: var(--success-soft) !important;
}

.text-success {
    color: var(--primary-teal) !important;
}

.text-primary {
    color: var(--primary-teal) !important;
}

/* Form Controls */
.form-control {
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
    background: white;
}

/* Icons */
[data-lucide] {
    stroke-width: 1.5;
}

/* Pricing Page Styles */
.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border-color: var(--primary-teal);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.2);
}

.pricing-amount {
    position: relative;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    vertical-align: top;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: 'Poppins', sans-serif;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.features-list .list-unstyled {
    margin: 0;
    padding: 0;
}

.features-list .list-unstyled li {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.features-list .list-unstyled li [data-lucide] {
    flex-shrink: 0;
    margin-top: 2px;
}

.savings-badge {
    margin-bottom: 1rem;
}

.benefit-item {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-teal);
    stroke-width: 1.5;
}

.benefit-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-item p.text-muted {
    color: var(--text-dark) !important;
}

/* Value Proposition Section */
.value-proposition-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 243, 233, 0.9) 100%);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.value-proposition-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.value-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.value-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.value-content .tagline {
    font-size: 1.3rem;
    color: var(--primary-teal);
    font-style: italic;
    font-weight: 600;
}

.value-content .cta-text {
    font-size: 1.2rem;
    color: var(--primary-teal-dark);
    font-weight: 700;
    margin-bottom: 0;
}

/* Privacy Page Styles */
.privacy-content p {
    color: var(--text-dark) !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content ul li {
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.privacy-content h5 {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-content .alert p {
    color: var(--text-dark) !important;
}

.privacy-content .text-muted {
    color: var(--text-dark) !important;
}

/* Cookie Consent Bar */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 233, 0.98) 100%);
    border-top: 2px solid var(--primary-teal);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1050;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1.5rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
}

.cookie-text i {
    color: var(--primary-teal);
    flex-shrink: 0;
}

.cookie-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
}

.cookie-link:hover {
    color: var(--primary-teal-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-actions .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
}

.cookie-actions .btn-outline-secondary {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.cookie-actions .btn-outline-secondary:hover {
    background-color: var(--text-muted);
    border-color: var(--text-muted);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .cookie-text {
        justify-content: center;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-actions .btn-sm {
        flex: 1;
        max-width: 120px;
    }
}

/* Contact Page Text Visibility */
.contact-card .text-muted,
.contact-card .small {
    color: var(--text-dark) !important;
}

.contact-card p.text-muted {
    color: var(--text-dark) !important;
}

.contact-card .small.text-muted {
    color: var(--text-dark) !important;
}

.form-check-label {
    color: var(--text-dark) !important;
}

/* Form labels in contact form */
.form-label {
    color: var(--text-dark) !important;
    font-weight: 500;
}

/* Card form labels specifically */
.card-body .form-label {
    color: var(--text-dark) !important;
}

/* All labels in contact form */
label {
    color: var(--text-dark) !important;
}

address {
    color: var(--text-dark) !important;
}

address strong {
    color: var(--text-dark) !important;
}

.card-body p {
    color: var(--text-dark) !important;
}

.card-body .list-unstyled li {
    color: var(--text-dark) !important;
}

.card-body .list-unstyled li strong {
    color: var(--text-dark) !important;
}

/* Business hours and address specific styling */
.card-body p.mb-0 {
    color: var(--text-dark) !important;
}

.card-body p.mb-0 strong {
    color: var(--text-dark) !important;
}

/* Clock icon and business hours text */
.card-body p i.text-muted {
    color: var(--primary-teal) !important;
}

/* Address styling */
address br + strong,
address strong + br {
    color: var(--text-dark) !important;
}

/* All paragraph text in cards */
.card-body p,
.card-body address {
    color: var(--text-dark) !important;
    line-height: 1.5;
}

/* Text following icons */
.card-body p i + strong,
.card-body p strong {
    color: var(--text-dark) !important;
}

/* Terms and Conditions Page Styling */
.terms-content {
    color: var(--text-dark);
    line-height: 1.6;
}

.terms-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-teal);
}

.terms-content h5 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.terms-content p {
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
}

.terms-content ul li {
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem;
}

.terms-content .alert h5 {
    color: var(--text-dark) !important;
}

.terms-content .alert p {
    color: var(--text-dark) !important;
}

.terms-content .contact-info {
    background-color: rgba(78, 205, 196, 0.1);
    border-color: var(--primary-teal) !important;
}

.terms-content .contact-info p {
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem;
}

.terms-content .contact-info strong {
    color: var(--text-dark) !important;
}

.terms-content section {
    margin-bottom: 2.5rem;
}
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    #camera-container {
        min-height: 280px;
    }
    
    #video, #captured-image {
        max-height: 300px;
    }
    
    .feature-card, .trust-card, .testimonial-card {
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .me-2 {
        margin-right: 8px !important;
    }
    
    .btn {
        font-size: 0.8rem;
    }
    
    .testimonial-card, .trust-card {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .btn {
        display: none !important;
    }
    
    .alert {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .brand-text {
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-teal-dark);
}

/* Social sharing buttons */
.social-share-buttons .btn {
    min-width: 160px;
    margin: 4px;
}

/* Style Partners section */
.partner-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(78, 205, 196, 0.2);
    border-color: var(--primary-teal);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0.05) 100%);
    margin: -24px -24px 24px -24px;
    position: relative;
}

.partner-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-teal);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(78, 205, 196, 0.2));
}

.partner-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.partner-card .text-muted {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.partner-card .btn-outline-primary {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl);
    background: transparent;
}

.partner-card .btn-outline-primary:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* Share success alert styling */
#share-success {
    border-radius: var(--radius-md);
    border: none;
    background: rgba(82, 196, 26, 0.1);
    color: var(--success-soft);
    border-left: 4px solid var(--success-soft);
}

/* Pricing page specific styles */
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-teal);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: top;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.savings-badge .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-teal);
    stroke-width: 1.5;
}

.benefit-item {
    padding: 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(78, 205, 196, 0.05);
    transform: translateY(-3px);
}

/* Contact page specific styles */
.contact-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon-large {
    width: 64px;
    height: 64px;
    color: var(--primary-teal);
    stroke-width: 1.5;
}

/* Privacy page specific styles */
.privacy-content section {
    scroll-margin-top: 100px;
}

.security-item {
    background: rgba(78, 205, 196, 0.05);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
}

.rights-item {
    transition: all 0.3s ease;
}

.rights-item:hover {
    background: rgba(78, 205, 196, 0.15) !important;
    transform: translateY(-2px);
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-teal: #2C7A7B;
        --text-dark: #000000;
        --text-muted: #4A5568;
    }
}

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