/* Global Styles */
:root {
    --primary-color: #27ae60;
    --primary-dark: #219653;
    --primary-light: #6fcf97;
    --secondary-color: #4285f4;
    --accent-color: #9b51e0;
    --success-color: #e67e22;
    --dark-color: #1e1e2f;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --font-main: 'Inter', sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--primary-color);
}

/* Notification Banner */
.notification-banner {
    background-color: rgba(39, 174, 96, 0.12);
    color: var(--primary-dark);
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    backdrop-filter: blur(5px);
}

.notification-banner i {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background-color: #fff;
    background-image: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.03);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(66, 133, 244, 0.03);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--dark-color);
    line-height: 1.1;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray-color);
    font-weight: 400;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.25);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.3);
}

.cta-button i {
    font-size: 0.9em;
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(4px);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 30px;
}

/* Process Steps */
.process {
    background-color: var(--light-color);
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.step p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.5;
}

/* Trust Indicators */
.trust {
    text-align: center;
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(155, 81, 224, 0.03);
    z-index: 0;
}

.trust h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trust-text {
    max-width: 650px;
    margin: 0 auto 60px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}

.trust-item {
    flex: 1;
    padding: 30px 20px;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.trust-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.trust-icon.security {
    background-color: rgba(66, 133, 244, 0.12);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.15);
}

.trust-icon.claims {
    background-color: rgba(39, 174, 96, 0.12);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15);
}

.trust-icon.rating {
    background-color: rgba(155, 81, 224, 0.12);
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(155, 81, 224, 0.15);
}

.trust-icon.legitimate {
    background-color: rgba(230, 126, 34, 0.12);
    color: var(--success-color);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.15);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

.trust-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.trust-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 60px;
}

.stat {
    flex: 1;
    max-width: 280px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 700;
}

.stat-number.green {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(39, 174, 96, 0.2);
}

.stat-number.blue {
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(66, 133, 244, 0.2);
}

.stat-number.purple {
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(155, 81, 224, 0.2);
}

.stat p {
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Eligibility Form */
.eligibility-form {
    background-color: var(--light-color);
    background-image: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    display: none;
    position: relative;
    overflow: hidden;
}

.eligibility-form::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(66, 133, 244, 0.03);
    z-index: 0;
}

.eligibility-form.active {
    display: block;
}

.eligibility-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.eligibility-form > .container > p {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.form-container {
    max-width: 700px;
    margin: 50px auto 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 50px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.progress-bar {
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    width: 33%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.3);
}

.progress-text {
    text-align: right;
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 35px;
    font-weight: 500;
}

.question-slide {
    display: none;
}

.question-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.question-slide h3 {
    margin-bottom: 25px;
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.question p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.options {
    margin-bottom: 35px;
}

.option {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 18px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.option:hover {
    background-color: rgba(39, 174, 96, 0.05);
    border-color: rgba(39, 174, 96, 0.1);
    transform: translateX(5px);
}

.option input {
    display: none;
}

.option label {
    display: block;
    cursor: pointer;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    font-size: 1.05rem;
}

.option label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-color);
    border-radius: 50%;
    transition: var(--transition);
}

.option input:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 0.4s ease;
}

@keyframes pulse {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.option input:checked + label:before {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.option input:checked + label {
    color: var(--primary-dark);
}

.next-btn, .prev-btn, .submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.next-btn:hover, .submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(39, 174, 96, 0.25);
}

.prev-btn {
    background-color: transparent;
    color: var(--gray-color);
    margin-right: 15px;
    box-shadow: none;
    border: 1px solid var(--light-gray);
}

.prev-btn:hover {
    color: var(--dark-color);
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

.results {
    text-align: center;
    display: none;
    animation: fadeIn 0.8s ease;
}

.result-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.results h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.results p {
    color: var(--gray-color);
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    text-align: center;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.03);
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.faq > .container > p {
    max-width: 650px;
    margin: 0 auto 60px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: white;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: rgba(39, 174, 96, 0.03);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--gray-color);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-color);
    background-color: rgba(39, 174, 96, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    text-align: left;
    padding: 0 25px;
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
}

.more-questions {
    margin-top: 60px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.more-questions p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 30px;
    background-color: rgba(39, 174, 96, 0.05);
    transition: var(--transition);
}

.contact-option:hover {
    color: var(--primary-dark);
    background-color: rgba(39, 174, 96, 0.1);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.footer-column p {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-badge:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

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

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #bbb;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .steps, .trust-indicators {
        flex-direction: column;
        gap: 30px;
    }
    
    .step, .trust-item {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .stat {
        width: 100%;
        max-width: 550px;
    }
    
    .footer-columns {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-column {
        flex: 0 0 45%;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .form-container {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .trust h2, .faq h2, .eligibility-form h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .question p {
        font-size: 1.2rem;
    }
    
    .option label {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 20px;
    }
}
