/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-teal);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loader p {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

:root {
    /* August AI inspired color palette */
    --primary-teal: #1F9A88;
    --deep-green: #1C604D;
    --charcoal: #111111;
    --light-gray: #E7E7E7;
    --soft-green: #F6FFD5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-text: #666666;
    --border-light: #EEEEEE;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1F9A88 0%, #1C604D 100%);
    --gradient-soft: linear-gradient(180deg, #F6FFD5 0%, #FFFFFF 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* Navigation - Minimal & Modern */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    margin-right: 2rem;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

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

.cta-nav {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons - Modern & Clean */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section - Modern Gradient */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F6FFD5 0%, #E8FFF8 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(31, 154, 136, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle-urdu {
    font-style: italic;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.trust-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--gray-text);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-highlights span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-highlights span:before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--soft-green);
    color: var(--primary-teal);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.hero-image {
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 500px;
}

.hero-footer {
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.origin-story {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.origin-note {
    font-size: 0.95rem;
    color: var(--gray-text);
}

.why-matters {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-matters h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--off-white);
}

.how-it-works h2 {
    text-align: center;
}

.steps-illustration {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 4rem;
    height: auto;
    opacity: 0.8;
}

.steps {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-teal);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.step:hover::before {
    transform: scaleY(1);
}

.step-number {
    min-width: 48px;
    height: 48px;
    background: var(--soft-green);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step p {
    margin-bottom: 0;
}

.section-ctas {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Care Programs Section */
.care-programs {
    padding: 5rem 0;
    background: var(--white);
}

.care-programs h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--gray-text);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    min-height: 2em;
}

.program-desc {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

.program-tiers {
    margin-bottom: 1.5rem;
    flex: 1;
}

.tier {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 3px solid var(--primary-teal);
}

.tier h4 {
    font-size: 1rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tier p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-text);
}


/* App Section */
.app-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.app-section h2 {
    text-align: center;
}

.app-showcase {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.app-tagline {
    text-align: center;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--charcoal);
}

.app-features {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-group {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.feature-group h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    padding: 0.75rem 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-text);
}

.feature-group li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

.clinicians-strip,
.lab-image {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    height: 350px;
}

.freemium-note {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--soft-green);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.app-ctas {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--white);
}

.why-choose h2 {
    text-align: center;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reason {
    padding: 2rem;
    background: var(--off-white);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.reason:hover {
    background: var(--soft-green);
    transform: translateY(-4px);
}

.reason h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.reason p {
    margin-bottom: 0;
    font-size: 1rem;
}

.community-image {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* Employers Section */
.employers {
    padding: 5rem 0;
    background: var(--off-white);
}

.employers h2 {
    text-align: center;
}

.employers-image {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.tagline {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.benefits {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.benefits h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    padding: 0.75rem 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-text);
    font-size: 1.05rem;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--soft-green);
    border-radius: 50%;
    font-size: 0.8rem;
}

.employers .btn {
    display: inline-flex;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.pricing h2 {
    margin-bottom: 3rem;
}

.pricing-list {
    max-width: 700px;
    margin: 0 auto 3rem;
    list-style: none;
}

.pricing-list li {
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    background: var(--off-white);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.pricing-list li:hover {
    transform: translateX(8px);
    border-color: var(--primary-teal);
}

.pricing-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* FAQs Section */
.faqs {
    padding: 5rem 0;
    background: var(--off-white);
}

.faqs h2 {
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.social-proof h2 {
    margin-bottom: 3rem;
}

.testimonials-image {
    display: block;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.social-proof ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-proof li {
    padding: 2rem;
    font-size: 1.1rem;
    background: var(--off-white);
    border-radius: 16px;
    color: var(--gray-text);
}

.asani-reference {
    display: block;
    max-width: 200px;
    margin: 3rem auto 0;
    border-radius: 12px;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--off-white);
}

.about h2 {
    text-align: center;
}

.about-image {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    height: 400px;
}

.about-content {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-content div {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.about-content div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-content h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* Contact Page Hero */
.contact-hero {
    padding: 4rem 0;
    background: var(--gradient-soft);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.nav-links a.active {
    color: var(--primary-teal);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--gray-text);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--charcoal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(31, 154, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1.125rem 2rem;
}

.contact-info {
    display: block;
}

.info-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-teal);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--soft-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

.info-card h3 {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--primary-teal);
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

/* Contact Info Links */
.contact-info a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--deep-green);
    text-decoration: underline;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Social Links */
.social-links {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    width: 100%;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-teal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.social-icons a:hover {
    background: var(--charcoal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Contact FAQ Section */
.contact-faq {
    padding: 4rem 0;
    background: var(--off-white);
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq .faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-faq .faq-item h3 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-faq .faq-item p {
    margin: 0;
}

/* Coming Soon Page */
.coming-soon {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--white) 50%);
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

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

.coming-soon h1 {
    color: var(--primary-teal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon h2 {
    color: var(--charcoal);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.coming-soon-description {
    font-size: 1.25rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.features-preview {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.features-preview h3 {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.feature-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--soft-green);
    color: var(--primary-teal);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: var(--gray-text);
}

.waitlist-section {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.waitlist-section h3 {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waitlist-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 100px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.waitlist-input-group input:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(31, 154, 136, 0.1);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 1rem;
}

.meanwhile-section {
    margin-bottom: 3rem;
}

.meanwhile-section h3 {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.action-card h4 {
    color: var(--charcoal);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin: 0;
}

.back-home {
    margin-top: 2rem;
}

/* Medical Safety Section */
.medical-safety {
    padding: 4rem 0;
    background: var(--soft-green);
    border-top: 4px solid var(--primary-teal);
}

.medical-safety h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.medical-safety ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.medical-safety li {
    padding: 1rem 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.medical-safety li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    opacity: 0.05;
    object-fit: cover;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-teal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.footer-social a:hover {
    background: var(--charcoal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.copyright {
    opacity: 0.7;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }
    
    h2 {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
        text-align: center;
    }
    
    p {
        font-size: 1rem;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem 0;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-light);
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .trust-highlights {
        justify-content: center;
    }
    
    .steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .step:hover {
        transform: translateX(0) translateY(-4px);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        display: flex;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .section-intro {
        text-align: center;
        max-width: 100%;
    }
    
    /* Contact Form Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Coming Soon Responsive */
    .coming-soon {
        padding: 3rem 0;
    }
    
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .coming-soon-description {
        font-size: 1.1rem;
    }
    
    .features-preview {
        padding: 2rem;
    }
    
    .waitlist-section {
        padding: 2rem;
    }
    
    .waitlist-input-group {
        flex-direction: column;
    }
    
    .waitlist-input-group input {
        width: 100%;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    /* Additional mobile improvements */
    .hero-image {
        margin-top: 2rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-footer {
        text-align: center;
        margin-top: 3rem;
    }
    
    .why-matters {
        text-align: center;
        padding: 0 1rem;
    }
    
    .origin-story,
    .origin-note {
        text-align: center;
    }
    
    /* Trust highlights mobile */
    .trust-highlights {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .trust-highlights span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Program cards mobile */
    .program-card .btn {
        margin-top: 1.5rem;
    }
    
    /* Info cards mobile */
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Social proof mobile */
    .social-proof ul {
        padding: 0 1rem;
    }
    
    .social-proof li {
        text-align: left;
        font-size: 1rem;
    }
    
    /* About section mobile */
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission,
    .story,
    .team {
        text-align: left;
    }
    
    .mission h3,
    .story h3,
    .team h3 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .mission p,
    .story p,
    .team p {
        text-align: left;
    }
    
    /* Employers section mobile */
    .employers .tagline {
        text-align: center;
        padding: 0 1rem;
    }
    
    .benefits {
        padding: 0 1rem;
    }
    
    .benefits h3 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .benefits ul {
        text-align: left;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 32px;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-highlights span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Step cards on mobile */
    .step {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Program cards on mobile */
    .program-card {
        padding: 1.5rem 1rem;
    }
    
    .tier {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Info cards on mobile */
    .info-card {
        padding: 1.25rem;
    }
    
    /* Footer on mobile */
    .footer-social {
        gap: 1rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social a svg {
        width: 20px;
        height: 20px;
    }
    
    /* Contact page mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}