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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn--primary {
    background-color: #007BFF;
    color: white;
}

.btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.btn--secondary:hover {
    background-color: #007BFF;
    color: white;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.section__description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav__brand:hover {
    opacity: 0.8;
}

.nav__logo {
    width: 80px;
    height: 80px;
}

.nav__brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007BFF;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #007BFF;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #555;
}

.hero__tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #007BFF;
    font-weight: 600;
}

.hero__buttons {
    display: flex;
    gap: 20px;
}

.hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card__number {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 10px;
}

.stat-card__label {
    font-weight: 500;
    color: #555;
}

/* How It Works */
.how-it-works {
    background-color: #f8f9fa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step__icon i {
    font-size: 2rem;
    color: white;
}

.step__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.step__description {
    color: #555;
}

/* Why Choose */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
}

.feature__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature__icon i {
    font-size: 2rem;
    color: white;
}

.feature__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.feature__description {
    color: #555;
}

/* Package Section */
.package {
    background-color: #f8f9fa;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card--featured {
    border: 3px solid #007BFF;
    transform: scale(1.05);
}

.package-name {
    background: #007BFF;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.most-popular {
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}

.package-card__price {
    font-size: 3rem;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 10px;
}

.package-card__subtitle {
    color: #555;
    margin-bottom: 30px;
}

.package-features {
    margin-bottom: 30px;
    text-align: left;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.package-features .feature-item i {
    color: #007BFF;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.package-card__btn {
    width: 100%;
}

.shared-features {
    text-align: center;
}

.shared-features__title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #000;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #007BFF;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: calc(50% - 15px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    border-left: 4px solid #007BFF;
}

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

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav--prev {
    left: 0;
}

.testimonial-nav--next {
    right: 0;
}

.testimonial__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial__author {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.testimonial__name {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}

.testimonial__role {
    font-size: 0.9rem;
    color: #007BFF;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
    font-size: 1.1rem;
    color: #000;
    margin: 0;
}

.faq-icon {
    color: #007BFF;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

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

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 15px 0 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 5px;
}

.contact-details p {
    color: #555;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007BFF;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007BFF;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #007BFF;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: #007BFF;
}

.footer-section ul li i {
    color: #007BFF;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

.modal-title {
    text-align: center;
    color: #000;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.form-disclaimer {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #007BFF;
}

.form-disclaimer p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.legal-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    color: #555;
    line-height: 1.6;
}

.legal-content h3 {
    color: #000;
    margin: 20px 0 10px 0;
}

.legal-content h4 {
    color: #007BFF;
    margin: 15px 0 8px 0;
}

.legal-content p {
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 10px 0 10px 20px;
}

.legal-content li {
    margin-bottom: 5px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-slider {
        padding: 0 20px;
    }
    
    .testimonial {
        width: 100%;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
    
    .packages {
        grid-template-columns: 1fr;
    }
    
    .package-card--featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* reCAPTCHA positioning */
.grecaptcha-badge {
    visibility: visible !important;
    z-index: 9999 !important;
}

/* Custom reCAPTCHA badge positioning */
@media (max-width: 768px) {
    .grecaptcha-badge {
        bottom: 10px !important;
        right: 10px !important;
        transform: scale(0.8);
    }
}
