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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    font-size: 2rem;
}


.phone-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.phone-title {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.phone-title i {
    font-size: 0.9rem;
}

.phone-number-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.phone-number i {
    font-size: 1rem;
    animation: ring 1.5s infinite;
}

.contact-details {
    display: flex;
    gap: 0.5rem;
}

.tty-info {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tty-info i {
    color: #9ca3af;
    font-size: 0.8rem;
}

.availability {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.availability i {
    color: #059669;
    font-size: 0.8rem;
}

.hours {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.hours i {
    color: #6b7280;
    font-size: 0.8rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    background: #f9fafb;
    padding: 0.75rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: #9ca3af;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdf4 100%);
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    background-image:
        url('./assets/happy-doctor.webp'),
        linear-gradient(360deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(37, 99, 235, 0.2) 100%);
    background-size: cover;
    background-blend-mode: overlay;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #111827;
}

.highlight {
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Eligibility Form Section */
.eligibility-form {
    padding: 5rem 0;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.step {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    color: white;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.step.completed {
    background: #10b981;
    color: white;
}

.step-line {
    width: 2rem;
    height: 2px;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

.step-line.completed {
    background: #10b981;
}

.form-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    outline: 1px solid #e5e7eb;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.step-icon {
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 4rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-content>p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin: 0.25rem 0;
    display: block;
    animation: fadeIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input.large {
    font-size: 1.25rem;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto 1rem auto;
    display: block;
}

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

.option-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.option-btn.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.option-btn.selected.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.option-btn i {
    font-size: 1.5rem;
    color: #6b7280;
}

.option-btn.selected i {
    color: #2563eb;
}

.option-btn.selected.error i {
    color: #ef4444;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.condition-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.condition-item.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.condition-item.selected .checkbox {
    background: #2563eb;
    border-color: #2563eb;
}

.condition-item.selected .checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.field-group {
    text-align: left;
}

.field-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.info-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.info-box p {
    color: #1e40af;
    font-size: 0.9rem;
    line-height: 1.6;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.error-message i {
    color: #ef4444;
    margin-top: 0.25rem;
}

.error-message p {
    color: #dc2626;
    font-size: 0.9rem;
}

.consent-message {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.consent-message p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

.call-to-action {
    margin: 2rem 0;
}

.phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.3rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.phone-button i {
    font-size: 1.3rem;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% {
        transform: rotate(0deg) scale(1);
    }

    10% {
        transform: rotate(-5deg) scale(1.1);
    }

    20% {
        transform: rotate(5deg) scale(1.1);
    }

    30% {
        transform: rotate(-5deg) scale(1.1);
    }

    40% {
        transform: rotate(5deg) scale(1.1);
    }

    50% {
        transform: rotate(-3deg) scale(1.05);
    }

    60% {
        transform: rotate(3deg) scale(1.05);
    }

    70% {
        transform: rotate(-2deg) scale(1.02);
    }

    80% {
        transform: rotate(2deg) scale(1.02);
    }

    90% {
        transform: rotate(-1deg) scale(1.01);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.phone-number-form {
    font-size: 1.3rem;
    font-weight: 700;
}

.tty {
    font-size: 0.9rem;
    opacity: 0.9;
}

.agent-available {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 2rem;
}

.agent-available i {
    color: #10b981;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #111827;
}

.author-condition {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.9rem;
}

.author-location {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question span {
    font-weight: 600;
    color: #111827;
}

.faq-question i {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.contact-item i {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .phone-info {
        display: none;
    }

    .phone-details {
        text-align: center;
        gap: 0.75rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .hero {
        padding-top: 120px;
        min-height: 80vh;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .progress-bar {
        gap: 0.5rem;
    }

    .step {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .step-line {
        width: 1rem;
    }

    .option-buttons {
        max-width: 100%;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .form-navigation {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-button {
        padding: 1.5rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: none;
    }

    .btn-primary,
    .btn-secondary {
        display: inline;
    }

    .btn-large {
        width: 100%;
    }

    .form-container {
        padding: 1.5rem 1rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}