/* ====================================
   ROOT VARIABLES & RESET
   ==================================== */
:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4680e5 100%);
    --background-gradient: linear-gradient(120deg, #0a0a1b 0%, #151530 100%);
    --text-primary: #ffffff;
    --text-secondary: #a5b4fc;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(150deg, 
        #0a0a1b 0%,
        #151530 25%,
        #1a1a3a 50%,
        #151530 75%,
        #0a0a1b 100%
    );
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.75rem 2rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    width: min(95%, 1000px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 40px
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--text-secondary);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    white-space: nowrap;
}

/* ====================================
   BUTTONS & INTERACTIVE ELEMENTS
   ==================================== */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Spots Left Component */
.spots-left {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(248, 248, 248, 0.5);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.spots-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse 1.5s infinite ease-in-out;
}

.spots-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar 2s infinite;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    min-height: 100vh;
    padding: 7rem 2rem 6rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.2em;
    background: rgb(113, 78, 255);
    border-radius: 4px;
    opacity: 1;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Images */
.hero-image {
    position: relative;
    width: 350px;
    height: 500px;
    margin-top: 0px;
}

.hero-image img {
    position: absolute;
    width: 300px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

.hero-image img:first-child {
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-image img:nth-child(2) {
    top: 60px;
    left: 100px;
    z-index: 1;
}

.hero-image img:hover {
    transform: rotate(5deg) scale(1.05);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    z-index: 3;
}

.hero-image img:nth-child(2):hover {
    transform: rotate(-5deg) scale(1.05);
}

/* ====================================
   FEATURES SECTION
   ==================================== */
.features {
    padding: 4rem 0 8rem;
    position: relative;
    overflow: hidden;
    margin-top: -4rem;
}


.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-header .highlight {
    position: relative;
    display: inline-block;
}

.features-header .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.2em;
    background: rgb(113, 78, 255);
    border-radius: 4px;
    opacity: 1;
    z-index: -1;
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes radar {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}


/* ====================================
   REVIEWS SECTION
   ==================================== */
   
.reviews {
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.reviews-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.reviews-header .highlight {
    position: relative;
    display: inline-block;
}

.reviews-header .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.2em;
    background: rgb(113, 78, 255);
    border-radius: 4px;
    opacity: 1;
    z-index: -1;
}

.reviews-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
     margin-top: 5px;
}

.review-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.review-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fbbf24;
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.reviewer-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}



/* ====================================
   ABOUT SECTION
   ==================================== */


.about {
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text .highlight {
    position: relative;
    display: inline-block;
}

.about-text .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.2em;
    background: rgb(113, 78, 255);
    border-radius: 4px;
    opacity: 1;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-10px);
}


/* ====================================
   FAQ SECTION
   ==================================== */
.faq {
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-header .highlight {
    position: relative;
    display: inline-block;
}

.faq-header .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.2em;
    background: rgb(113, 78, 255);
    border-radius: 4px;
    opacity: 1;
    z-index: -1;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.faq-question.active {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* ====================================
   FOOTER SECTION
   ==================================== */
.footer {
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.03;
    filter: blur(80px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    flex: 1;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ====================================
   MODAL STYLES
   ==================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    padding-top: 80px;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 48, 0.95) 0%, rgba(20, 20, 40, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow-x: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.close-modal {
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem 1.5rem;
}

.modal-body h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 8px 4px 8px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 3 - 6rem));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .logo-text {
        display: none;
    }

    /* Hero Section */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    /* Features Section */
    .features-header h2 {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Reviews Section */
    .reviews-header h2 {
        font-size: 2.25rem;
    }

    .review-card {
        flex: 0 0 300px;
    }

     /* About Section */
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.25rem;
    }

    .about-image {
        margin-top: 2rem;
    }

    /* FAQ Section */
    .faq-header h2 {
        font-size: 2.25rem;
    }

    .faq-grid {
        gap: 1rem;
    }

    /* Footer Section */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}
