* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Core Colors */
    --primary: #F5A623;
    --secondary: #E85D3D;
    --accent: #F5A623;
    --dark: #1F3A3D;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Semantic Colors with Proper Contrast */
    --on-dark-text: rgba(255, 255, 255, 0.95);
    --on-dark-text-secondary: rgba(255, 255, 255, 0.7);
    
    /* Elevation Scale - Consistent Shadow System */
    --elevation-0: none;
    --elevation-1: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --elevation-2: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    --elevation-3: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.10);
    --elevation-4: 0 15px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
    
    /* Typography Scale - Modular 1.25 ratio */
    --font-scale-ratio: 1.25;
    --font-size-xs: 0.8rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-md: 1.25rem;
    --font-size-lg: 1.563rem;
    --font-size-xl: 1.953rem;
    --font-size-2xl: 2.441rem;
    --font-size-3xl: 3.052rem;
    --font-size-display: 3.815rem;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing Scale - 8pt Grid System */
    --space-1: 0.25rem;  /* 4px */
    --space-2: 0.5rem;   /* 8px */
    --space-3: 1rem;     /* 16px */
    --space-4: 1.5rem;   /* 24px */
    --space-5: 2rem;     /* 32px */
    --space-6: 3rem;     /* 48px */
    --space-8: 4rem;     /* 64px */
    --space-10: 5rem;    /* 80px */
    --space-12: 6rem;    /* 96px */
    --space-16: 8rem;    /* 128px */
    
    /* Animation Durations */
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 350ms;
    --duration-slower: 500ms;
    
    /* Transitions */
    --transition-base: all var(--duration-base) ease;
    --transition-fast: all var(--duration-fast) ease;
    --transition-slow: all var(--duration-slow) ease;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1F3A3D 0%, #2C5F5D 100%);
    min-height: 100vh;
    position: relative; /* Ensure children are contained */
    width: 100%; /* Explicit width */
}
/* Surface overlay removed - was causing global darkening and contrast issues */
/* Typography System - Global Heading Hierarchy */
h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}
h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    margin-bottom: var(--space-3);
}
h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
    margin-bottom: var(--space-3);
}
h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    margin-bottom: var(--space-2);
}
h5 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    margin-bottom: var(--space-2);
}
h6 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    margin-bottom: var(--space-2);
}
p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--space-3);
}
/* Progressive enhancement: hide JS-only elements by default */
.js-only {
    display: none !important;
}
/* Show JS-only elements when JavaScript is available */
body[data-app-ready="true"] .js-only {
    display: inline-block !important;
}
body[data-app-ready="true"] button.js-only {
    display: inline-block !important;
}
/* Animated background */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    overflow: hidden;
}
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
    will-change: transform; /* Optimize for animations */
    transform: translateZ(0); /* Force GPU acceleration */
}
@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(30px, -30px, 0) scale(1.1); }
    66% { transform: translate3d(-20px, 20px, 0) scale(0.9); }
}
/* Mobile-specific animation with reduced movement */
@keyframes floatMobile {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(10px, -10px, 0) scale(1.05); }
    66% { transform: translate3d(-10px, 10px, 0) scale(0.95); }
}
.circle1 { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
.circle2 { width: 200px; height: 200px; top: 50%; right: 10%; animation-delay: 5s; }
.circle3 { width: 250px; height: 250px; bottom: 10%; left: 50%; animation-delay: 10s; }
/* Use reduced animation on mobile devices */
@media (max-width: 768px) {
    .floating-circle {
        animation-name: floatMobile;
    }
}
/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
    /* Performance: removed backdrop-filter: blur(10px) */
}
nav.scrolled {
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--elevation-2);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
}
.logo {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--on-dark-text);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: var(--transition-base);
    cursor: pointer;
}
nav.scrolled .logo {
    color: var(--dark);
}
.logo-icon {
    width: 45px;
    height: 45px;
    position: relative;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes flow {
    0%, 100% { 
        stroke-dasharray: 0 150;
        stroke-dashoffset: 0;
    }
    50% { 
        stroke-dasharray: 150 150;
        stroke-dashoffset: -150;
    }
}
.logo-icon svg path {
    animation: flow 3s ease-in-out infinite;
}
.nav-links {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}
.nav-links a {
    color: var(--on-dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
nav.scrolled .nav-links a {
    color: var(--dark);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.cta-button {
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--elevation-2);
}
.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    /* Performance: box-shadow change removed, using transform scale instead */
}
/* Donate Button */
a.donate-button {
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--elevation-1);
    white-space: nowrap;
    text-decoration: none;
}
.donate-button:hover {
    transform: translateY(-2px) scale(1.02);
    /* Performance: box-shadow change removed, using transform scale instead */
}
nav.scrolled .donate-button {
    background: linear-gradient(135deg, #FFB700, #FF8C00);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-3) var(--space-6);
    position: relative;
}
.hero-content {
    max-width: 1200px;
    text-align: center;
    color: var(--on-dark-text);
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: clamp(var(--font-size-2xl), 8vw, var(--font-size-display));
    font-weight: var(--font-weight-light);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}
.hero p {
    font-size: clamp(var(--font-size-base), 3vw, var(--font-size-lg));
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-button {
    padding: var(--space-3) var(--space-5);
    font-size: var(--font-size-base);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}
.primary-button {
    background: var(--primary);
    color: white;
    box-shadow: var(--elevation-3);
    font-weight: 600;
}
.primary-button:hover {
    transform: translateY(-3px) scale(1.02);
    background: #F7B84B;
    /* Performance: box-shadow change removed, using transform scale instead */
}
.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary);
}
.secondary-button:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
/* Stats Section */
.stats {
    padding: var(--space-10) var(--space-3);
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
}
.stat-card {
    text-align: center;
    padding: var(--space-5);
    background: white;
    border-radius: 20px;
    box-shadow: var(--elevation-2);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-3);
}
.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
}
.stat-label {
    font-size: var(--font-size-base);
    color: #64748b;
}
/* How It Works */
.how-it-works {
    padding: var(--space-12) var(--space-3);
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f1 100%);
}
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-10);
}
.section-header h2 {
    font-size: clamp(var(--font-size-xl), 5vw, var(--font-size-2xl));
    font-weight: var(--font-weight-extrabold);
    color: var(--dark);
    margin-bottom: var(--space-3);
}
.section-header p {
    font-size: var(--font-size-md);
    color: #64748b;
}
.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}
.step-card {
    background: white;
    padding: var(--space-5);
    border-radius: 20px;
    box-shadow: var(--elevation-2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-3);
}
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}
.step-card h3 {
    font-size: var(--font-size-lg);
    color: var(--dark);
    margin-bottom: var(--space-3);
}
.step-card p {
    color: #64748b;
    line-height: 1.6;
}
/* Helpers Directory Section */
.helpers-directory {
    padding: var(--space-12) var(--space-3);
    background: #f8fafc;
    display: none;
}
.helpers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-4);
}
.helper-card {
    background: white;
    border-radius: 20px;
    padding: var(--space-4);
    box-shadow: var(--elevation-2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.helper-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-3);
}
.helper-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: var(--space-3);
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.helper-card h3 {
    font-size: var(--font-size-md);
    color: var(--dark);
    margin-bottom: var(--space-2);
}
.helper-card p {
    color: #64748b;
    margin-bottom: var(--space-3);
}
.karma-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: var(--space-3);
}
.book-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.book-button:hover {
    background: #F7B84B;
    transform: translateY(-2px);
}
/* Filter Buttons */
.filter-container {
    text-align: center;
    margin-bottom: var(--space-5);
}
.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: var(--space-2) var(--space-4);
    margin: 0 var(--space-1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
/* Booking Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-3);
}
.slot-button {
    padding: var(--space-3);
    border: 2px solid var(--primary);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slot-button:hover {
    background: var(--primary);
    color: white;
}
/* Dashboard Styles */
.dashboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.dashboard-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}
.close-dashboard {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}
.dashboard-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}
.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #64748b;
    position: relative;
}
.tab-btn.active {
    color: var(--primary);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/* Session Cards */
.session-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.session-card h4 {
    margin: 0 0 5px 0;
    color: var(--dark);
}
.session-card p {
    margin: 0;
    color: #64748b;
}
.session-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.status-pending { background: #fef3c7; color: #f59e0b; }
.status-accepted { background: #d1fae5; color: #10b981; }
.status-completed { background: #e0e7ff; color: #6366f1; }
/* Rating Stars */
.rating-stars {
    display: inline-flex;
    gap: 5px;
    font-size: 24px;
}
.star {
    color: #e5e7eb;
    cursor: pointer;
    transition: color 0.2s;
}
.star.filled {
    color: #f59e0b;
}
.star:hover,
.star.hover {
    color: #f59e0b;
}
/* Helper CTA Section */
.helper-cta {
    padding: var(--space-10) var(--space-3);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
    color: white;
}
.helper-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}
.helper-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}
.helper-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    max-width: 800px;
    margin: var(--space-5) auto;
}
.benefit-item {
    text-align: center;
}
.benefit-item .icon {
    font-size: 48px;
    margin-bottom: 10px;
}
.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.benefit-item p {
    font-size: 14px;
    opacity: 0.8;
}
/* Services Grid */
.services {
    padding: var(--space-12) var(--space-3);
    background: white;
}
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-8);
}
.service-card {
    padding: var(--space-4);
    border-radius: 15px;
    background: #f8fafc;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-3);
    background: white;
}
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-3);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.service-card h3 {
    font-size: var(--font-size-md);
    color: var(--dark);
    margin-bottom: var(--space-2);
}
.service-card p {
    color: #64748b;
    font-size: 14px;
}
/* Footer */
footer {
    padding: 60px 20px 30px;
    background: var(--dark);
    color: white;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
}
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 30px 0;
}
.footer-bottom {
    color: rgba(255,255,255,0.6);
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    overflow-y: auto;
}
.modal-content {
    background: white;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}
.modal-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}
/* Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 0;
    position: relative;
}
.form-progress::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e5e7eb;
}
.progress-step {
    position: relative;
    text-align: center;
    flex: 1;
}
.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.progress-step.active .progress-step-circle {
    background: var(--primary);
    color: white;
}
.progress-step.completed .progress-step-circle {
    background: var(--secondary);
    color: white;
}
.progress-step-label {
    font-size: 12px;
    color: #6b7280;
}
/* Form Sections */
.modal-body {
    padding: 40px;
}
.form-section h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 30px;
}
.modal .form-group {
    margin-bottom: 20px;
}
.modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}
.required {
    color: #ef4444;
}
.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark);
}
.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}
.modal .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Password visibility toggle */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: var(--transition-fast);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.password-toggle[aria-pressed="true"] .password-toggle-icon {
    opacity: 0.7;
}

/* Apply same form styles to dashboard */
.dashboard-content .form-group {
    margin-bottom: 20px;
}
.dashboard-content .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}
.dashboard-content .form-group input,
.dashboard-content .form-group select,
.dashboard-content .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark);
}
.dashboard-content .form-group input:focus,
.dashboard-content .form-group select:focus,
.dashboard-content .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}
.dashboard-content .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.helper-text {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.checkbox-item:hover {
    border-color: var(--primary);
    background: rgba(245, 166, 35, 0.05);
}
.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: auto;
}
.checkbox-item.selected {
    border-color: var(--primary);
    background: rgba(245, 166, 35, 0.1);
}
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}
.time-slot {
    padding: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.time-slot:hover {
    border-color: var(--primary);
}
.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}
.btn-secondary {
    padding: 14px 28px;
    background: #f3f4f6;
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: #e5e7eb;
}
.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-3);
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Error styling */
input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}
.checkbox-item.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}
/* Auth Modal */
.auth-form {
    padding: 40px;
}
.auth-toggle {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
}
.auth-toggle a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
nav.scrolled .mobile-menu-toggle span {
    background: var(--dark);
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
/* Mobile navigation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        color: var(--dark);
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    .nav-links .auth-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    .nav-links .auth-buttons button {
        width: 100%;
        margin: 10px 0;
    }
}
/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: clamp(48px, 8vw, 80px);
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .helpers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
/* Mobile styles */
@media (max-width: 768px) {
    /* Responsive floating circles */
    .floating-circle {
        animation: floatMobile 20s infinite ease-in-out;
    }
    .circle1 { 
        width: min(200px, 40vw); 
        height: min(200px, 40vw); 
        top: 10%; 
        left: 5%; 
    }
    .circle2 { 
        width: min(150px, 30vw); 
        height: min(150px, 30vw); 
        top: 50%; 
        right: 5%; 
    }
    .circle3 { 
        width: min(180px, 35vw); 
        height: min(180px, 35vw); 
        bottom: 10%; 
        left: 40%; 
    }
    nav {
        padding: 15px 20px;
    }
    a.donate-button {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        padding: 6px 16px;
        font-size: 13px;
    }
    .hero-content {
        padding: 20px;
    }
    /* Fix for hero taglines grid on mobile */
    .hero-content > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        gap: 30px !important;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-buttons button {
        width: 100%;
        margin: 10px 0;
    }
    .stats-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .steps-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .helpers-grid {
        padding: 20px;
        gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    /* Make filter buttons mobile-friendly */
    .filter-container {
        display: flex;
        overflow-x: auto;
        padding: 0 20px;
        margin-bottom: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .filter-container::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        flex-shrink: 0;
        margin: 0 4px;
        padding: 8px 20px;
        font-size: 14px;
    }
    .helper-card {
        padding: 20px;
    }
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    .modal-header {
        padding: 30px 20px;
    }
    .modal-body {
        padding: 20px;
    }
    .form-progress {
        padding: 20px 20px 0;
    }
    .progress-step-label {
        font-size: 10px;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .form-buttons {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        min-height: 44px; /* Better touch target */
    }
    /* Improve form inputs on mobile */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
}
/* Responsive circle sizes for mobile */
@media (max-width: 768px) {
    .circle1 { 
        width: 50vw; 
        height: 50vw; 
        max-width: 200px; 
        max-height: 200px;
    }
    .circle2 { 
        width: 40vw; 
        height: 40vw; 
        max-width: 150px;
        max-height: 150px;
        right: 5%; /* Adjusted for better mobile fit */
    }
    .circle3 { 
        width: 45vw; 
        height: 45vw; 
        max-width: 180px;
        max-height: 180px;
    }
    
    /* Reduced animation movement on mobile */
    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(15px, -15px) scale(1.05); }
        66% { transform: translate(-10px, 10px) scale(0.95); }
    }
}

/* Small phone styles */
@media (max-width: 480px) {
    /* Further reduce circle sizes on small phones */
    .circle1 { 
        width: min(150px, 35vw); 
        height: min(150px, 35vw); 
    }
    .circle2 { 
        width: min(120px, 25vw); 
        height: min(120px, 25vw); 
    }
    .circle3 { 
        width: min(140px, 30vw); 
        height: min(140px, 30vw); 
    }
    .hero-content h1 {
        font-size: clamp(36px, 10vw, 48px);
    }
    .logo {
        font-size: 18px;
    }
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    .section {
        padding: 60px 15px;
    }
    .stat-card h2 {
        font-size: 32px;
    }
    .helper-card {
        padding: 15px;
    }
    .helpers-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .filter-container {
        padding: 0 15px;
    }
    .filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    .modal-content {
        margin: 10px;
        border-radius: 15px;
    }
    .modal-header {
        padding: 20px 15px;
    }
    .modal-body {
        padding: 15px;
    }
}
/* Admin dashboard responsive styles */
@media (max-width: 768px) {
    /* Admin stats grid */
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Admin container */
    .admin-container {
        margin: 80px auto 30px;
        padding: 0 15px;
    }
    
    /* Admin table responsive wrapper */
    .applications-table {
        display: block;
        width: 100%;
    }
    
    .applications-table thead {
        display: none;
    }
    
    .applications-table tbody,
    .applications-table tr,
    .applications-table td {
        display: block;
        width: 100%;
    }
    
    .applications-table tr {
        margin-bottom: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 15px;
        background: white;
    }
    
    .applications-table td {
        padding: 8px 0;
        position: relative;
        padding-left: 35%;
        border: none;
    }
    
    .applications-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 30%;
        font-weight: 600;
        color: #64748b;
    }
    
    /* Admin filters */
    .application-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .application-filters input,
    .application-filters select {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10001;
    max-width: 400px;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: var(--elevation-2);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    position: relative;
    min-width: 300px;
}

.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #1f2937;
}

.toast-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #374151;
}

/* Toast variants */
.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success .toast-icon {
    background: #d1fae5;
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error .toast-icon {
    background: #fee2e2;
    color: #ef4444;
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-warning .toast-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info .toast-icon {
    background: #dbeafe;
    color: #3b82f6;
}

/* Mobile adjustments for toast */
@media (max-width: 480px) {
    .toast-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
    }
}

/* Very small screens (< 360px) */
@media (max-width: 360px) {
    .toast {
        min-width: calc(100vw - 40px);
    }
}

/* Loading States */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
}

.spinner-dark {
    border-color: rgba(31, 41, 45, 0.2);
    border-top-color: var(--dark);
}

.spinner-primary {
    border-color: rgba(245, 166, 35, 0.2);
    border-top-color: var(--primary);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
}

/* Skeleton loader for cards */
.skeleton-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--elevation-2);
    position: relative;
    overflow: hidden;
}

.skeleton-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.08), transparent);
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    100% {
        left: 100%;
    }
}

.skeleton-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f3f4f6;
    margin: 0 auto 20px;
}

.skeleton-text {
    height: 20px;
    background: #f3f4f6;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-text.skeleton-title {
    width: 60%;
    margin: 0 auto 12px;
}

.skeleton-text.skeleton-subtitle {
    width: 40%;
    margin: 0 auto 20px;
}

.skeleton-button {
    height: 44px;
    background: #f3f4f6;
    border-radius: 25px;
    width: 80%;
    margin: 20px auto 0;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--elevation-4);
}

.loading-card .spinner {
    width: 50px;
    height: 50px;
    border-width: 4px;
    margin: 0 auto 20px;
}

.loading-card p {
    margin: 0;
    color: var(--dark);
    font-size: 16px;
}

/* Email Verification Card */
.email-verification-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--elevation-3);
    max-width: 380px;
    z-index: 1000;
    animation: slideInRight 0.4s ease;
    border-left: 4px solid var(--primary);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.email-verification-card .dismiss-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    color: #9ca3af;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.email-verification-card .dismiss-btn:hover {
    background: #f3f4f6;
    color: #4b5563;
}

.email-verification-card .verification-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.email-verification-card .verification-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px 0;
}

.email-verification-card .verification-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.email-verification-card .verification-actions {
    display: flex;
    gap: 12px;
}

.email-verification-card .btn-resend,
.email-verification-card .btn-check {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.email-verification-card .btn-resend {
    background: var(--primary);
    color: white;
}

.email-verification-card .btn-resend:hover {
    background: #f7b84b;
    transform: translateY(-1px);
}

.email-verification-card .btn-check {
    background: #f3f4f6;
    color: #4b5563;
}

.email-verification-card .btn-check:hover {
    background: #e5e7eb;
}

/* Mobile adjustments for email verification */
@media (max-width: 480px) {
    .email-verification-card {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* Accessibility - Skip Navigation */
.skip-nav-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    z-index: 10002;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-nav-link:focus {
    top: 20px;
}

/* Accessibility - Enhanced Focus States */
*:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Better keyboard navigation indicators */
.nav-links a:focus {
    background: rgba(245, 166, 35, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    margin: -8px -16px;
}

/* Focus visible only for keyboard users */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* Improve color contrast for better accessibility */
.helper-card p,
.step-card p,
.service-card p {
    color: #4b5563; /* Darker gray for better contrast */
}

.stat-label {
    color: #4b5563; /* Darker gray for better contrast */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .modal-content {
        border: 2px solid var(--dark);
    }
    
    .helper-card,
    .step-card,
    .service-card {
        border: 2px solid var(--dark);
    }
    
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
}

/* Enhanced Form Validation */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.05);
}

.validation-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-group label + .validation-icon {
    top: calc(50% + 16px); /* Adjust for label height */
}

.form-group.has-error .validation-icon,
.form-group.has-success .validation-icon {
    opacity: 1;
}

.form-group.has-error .validation-icon {
    color: #ef4444;
}

.form-group.has-success .validation-icon {
    color: #10b981;
}

.validation-message {
    font-size: 13px;
    margin-top: 4px;
    display: none;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group.has-error .validation-message {
    display: block;
    color: #ef4444;
}

.form-group.has-success .validation-message {
    display: none; /* Don't show success messages, just the icon */
}

/* Adjust for textareas */
.form-group textarea ~ .validation-icon {
    top: 32px;
}

/* Character counter for textareas */
.character-counter {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 12px;
    color: #9ca3af;
}

.character-counter.warning {
    color: #f59e0b;
}

.character-counter.error {
    color: #ef4444;
}

/* Better Interaction Feedback */
/* Button hover animations */
.cta-button,
.btn-primary,
.btn-secondary,
.book-button,
.hero-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.btn-primary::before,
.book-button::before,
.hero-button.primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.btn-primary:hover::before,
.book-button:hover::before,
.hero-button.primary-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Card hover effects with lift */
.helper-card,
.step-card,
.service-card,
.stat-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.helper-card:hover,
.step-card:hover,
.service-card:hover,
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Input focus animations */
input,
select,
textarea {
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    transform: translateY(-1px);
    box-shadow: var(--elevation-1);
}

/* Link hover underline animation */
a {
    position: relative;
    transition: color 0.3s ease;
}

/* Modal entry animations */
.modal-content {
    animation: modalBounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Star rating hover effect */
.star {
    transition: all 0.2s ease;
}

.star:hover {
    transform: scale(1.2);
}

/* Progress indication for file uploads */
.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0;
    transition: width 0.3s ease;
    border-radius: 0 0 10px 10px;
}

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

/* Interactive feedback for clickable elements */
.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable:active {
    transform: scale(0.95);
}

/* Loading skeleton pulse animation improvement */
@keyframes skeleton-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/* Success animation for form submissions */
@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.form-group.has-success input {
    animation: successPulse 1s ease-out;
}

/* Navbar items hover effect */
.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Filter button active state animation */
.filter-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.filter-btn.active {
    animation: filterActive 0.3s ease;
}

@keyframes filterActive {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Why We Built This Section - Extract from inline styles */
.why-section {
    position: relative;
    overflow: hidden;
}

.why-container {
    padding: var(--space-12) var(--space-3);
    background: linear-gradient(135deg, #1F3A3D 0%, #2C5F5D 100%);
    color: var(--on-dark-text);
    width: 100%;
    position: relative;
}

/* Background decoration */
.why-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.why-bg-circle-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #F5A623 0%, transparent 70%);
    border-radius: 50%;
}

.why-bg-circle-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #E85D3D 0%, transparent 70%);
    border-radius: 50%;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-title {
    font-size: clamp(var(--font-size-xl), 5vw, var(--font-size-3xl));
    color: var(--on-dark-text);
    margin-bottom: var(--space-10);
    font-weight: var(--font-weight-light);
    display: block;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F5A623, #E85D3D);
    margin: var(--space-3) auto var(--space-5);
    border-radius: 2px;
}

.why-text-content {
    max-width: 700px;
    margin: 0 auto;
}

.why-paragraph {
    font-size: clamp(var(--font-size-base), 2.5vw, var(--font-size-md));
    line-height: 1.8;
    margin-bottom: var(--space-5);
    color: var(--on-dark-text);
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.why-paragraph:nth-child(1) { animation-delay: 0.2s; }
.why-paragraph:nth-child(2) { animation-delay: 0.3s; }
.why-paragraph:nth-child(3) { animation-delay: 0.4s; }
.why-paragraph:nth-child(4) { animation-delay: 0.5s; }
.why-paragraph:nth-child(5) { animation-delay: 0.6s; }
.why-paragraph:nth-child(6) { animation-delay: 0.7s; }
.why-paragraph:nth-child(7) { animation-delay: 0.8s; }
.why-paragraph:nth-child(8) { animation-delay: 0.9s; }
.why-paragraph:nth-child(9) { animation-delay: 1s; }
.why-paragraph:nth-child(10) { animation-delay: 1.1s; }
.why-paragraph:nth-child(11) { animation-delay: 1.2s; }
.why-paragraph:nth-child(12) { animation-delay: 1.3s; }
.why-paragraph:nth-child(13) { animation-delay: 1.4s; }

.why-highlight-container {
    margin: var(--space-8) auto;
    position: relative;
}

.why-highlight-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
    transform: translateY(-50%);
}

.why-highlight-text {
    font-size: clamp(var(--font-size-md), 3vw, var(--font-size-lg));
    line-height: 1.8;
    color: var(--primary);
    font-weight: var(--font-weight-regular);
    display: inline-block;
    background: linear-gradient(135deg, #1F3A3D 0%, #2C5F5D 100%);
    padding: 0 var(--space-4);
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: var(--space-6) var(--space-5);
    margin: var(--space-10) auto;
    max-width: 450px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
    box-shadow: var(--elevation-3);
}

.why-card-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F5A623, #E85D3D);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-card-text {
    font-size: clamp(var(--font-size-lg), 3vw, var(--font-size-xl));
    margin-bottom: var(--space-4);
    color: var(--on-dark-text-secondary);
    display: block;
    font-weight: var(--font-weight-light);
}

.why-card-highlight {
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
    background: linear-gradient(135deg, #F5A623, #E85D3D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--font-weight-regular);
    display: block;
    margin: 0;
    text-shadow: 0 0 30px rgba(245,166,35,0.3);
}

.why-cycle-graphic {
    margin: var(--space-8) 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.why-cycle-graphic svg {
    animation: rotate 20s linear infinite;
}

.why-cta-container {
    opacity: 0;
    animation: fadeInUp 1s ease 1.6s forwards;
}

.why-cta-text {
    font-size: clamp(var(--font-size-base), 2.5vw, var(--font-size-md));
    color: var(--on-dark-text-secondary);
    margin-bottom: var(--space-5);
    display: block;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.5px;
}

.why-cta-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: var(--space-6);
}

.services-cta-text {
    font-size: var(--font-size-base);
    color: #64748b;
    margin-bottom: var(--space-3);
}

/* Helper CTA specific styles */
.helper-cta-button {
    background: white !important;
    color: var(--primary) !important;
    box-shadow: var(--elevation-3);
}

.helper-cta-button:hover {
    background: #f8f9fa !important;
}

.helper-cta-subtext {
    margin-top: var(--space-3);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* Helpers Loading */
.helpers-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-8) var(--space-3);
    color: #64748b;
}

/* Auth Form Styles */
.auth-name-group {
    display: none;
}

.auth-submit-button {
    width: 100%;
    margin-top: var(--space-3);
}

/* Admin Panel Styles */
.admin-error-message {
    text-align: center;
    color: #ef4444;
}

.admin-empty-message {
    text-align: center;
    color: #64748b;
}

.admin-link-primary {
    color: var(--primary);
    text-decoration: none;
}

.admin-link-primary:hover {
    text-decoration: underline;
}

.admin-text-wrap {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.6;
}

/* Application Detail Styles */
.detail-field p {
    margin: 0;
    white-space: pre-wrap;
}

.detail-field a {
    color: var(--primary);
}

/* Hide legacy booking widgets - using Cal.com now (2025-07-04) */
#pending-requests,
#upcoming-sessions {
    display: none !important;
}

/*# sourceMappingURL=676.b4d8d2ea5907b81fc497.css.map*/