@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #a855f7;
    --accent: #ec4899;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --grad: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

[data-stagger] {
    opacity: 0;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.mobile-menu-btn {
    display: none;
}

.login-btn {
    padding: 0.7rem 1.6rem !important;
    font-size: 0.9rem;
    white-space: nowrap;
}

.mobile-only {
    display: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-primary {
    background: var(--grad);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Badge */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fdf2f8;
    color: var(--accent);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 10;
}

.top-card {
    top: 10%;
    left: -10%;
}

.bottom-card {
    bottom: 10%;
    right: -10%;
}

/* Background Blobs */
.blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: var(--grad);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -1;
    animation: moveBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -200px;
    left: -200px;
}

.blob-2 {
    bottom: -200px;
    right: -200px;
    animation-delay: -12s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(150px, 150px) scale(1.2);
    }
}

/* Statistics */
.stats-badges {
    display: flex;
    gap: 2rem;
}

.stat-badge {
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: 0.3s;
}

.stat-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

.stat-info span {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

.stat-info p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--gray);
}

/* Latest Update Section */
.latest-update-section {
    padding: 2rem 0;
}

.latest-update-card {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid var(--glass-border);
}

.update-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.update-sub {
    color: var(--gray);
}

.update-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    padding: 1rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Learning Resources */
.learning-resources {
    padding: 8rem 0;
}

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

.lr-card-link {
    text-decoration: none;
    color: inherit;
}

.lr-card {
    height: 100%;
    padding: 2.5rem;
    position: relative;
    transition: 0.4s;
}

.lr-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.coming-soon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--dark);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.lr-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.lr-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Courses Section */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .sub-header {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 2.5rem;
}

.course-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(99, 102, 241, 0.2);
}

.course-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.course-card:hover .course-img img {
    transform: scale(1.1);
}

.course-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--grad);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.course-content {
    padding: 2.5rem;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    height: 3.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.1rem;
}

.course-footer {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.btn-buy {
    background: var(--grad);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    flex-grow: 1;
    text-align: center;
    transition: 0.3s;
}

.btn-buy:hover {
    filter: brightness(1.1);
}

.btn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 12px;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

.btn-icon:hover {
    background: var(--primary);
    color: white;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 4rem 2.5rem;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary);
    font-size: 2rem;
}

/* Test Section */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
}

.test-card {
    padding: 3rem;
    transition: 0.3s;
}

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

.test-type {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.test-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    color: var(--gray);
}

.test-meta span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-test {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: #f1f5f9;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: 0.3s;
}

.btn-test:hover {
    background: var(--dark);
    color: white;
}

/* App Section */
.app-section {
    background: var(--dark);
    border-radius: 64px;
    padding: 80px;
    color: white;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 4rem;
    align-items: center;
}

.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 9/18;
    border: 14px solid #222;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.app-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.app-btns {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.app-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 2.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn-text span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    padding: 120px 0 60px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-about p {
    margin: 2rem 0;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.footer-links h4 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-links p {
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links i {
    color: var(--primary);
    margin-top: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
    color: var(--gray);
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .container {
        padding: 0 4rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-badges {
        justify-content: center;
    }

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

    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-btns {
        justify-content: center;
    }

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

    .floating-card {
        display: none;
        /* Hide overflow-causing elements */
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .nav-auth {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        gap: 2.5rem;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-actions .btn-primary {
        display: none; /* Hide login button on small mobile nav if preferred, or keep it */
    }

    .container {
        padding: 0 1.5rem;
    }

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

    .app-section {
        padding: 60px 1.5rem;
        border-radius: 40px;
    }

    .app-content h2 {
        font-size: 2rem;
        line-height: 1.1;
        word-wrap: break-word;
    }

    .app-btns {
        flex-direction: column;
        gap: 1.2rem;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-badges {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .stat-badge {
        flex: 1;
        padding: 1.2rem;
        gap: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-badge i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .stat-info span {
        font-size: 1.3rem;
    }

    .stat-info p {
        font-size: 0.8rem;
    }

    .current-price {
        font-size: 1.6rem;
    }
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 480px;
    padding: 3rem;
    position: relative;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.auth-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 0.5rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

.auth-tab {
    flex: 1;
    border: none;
    background: none;
    padding: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.auth-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.auth-form h3 {
    margin-bottom: 0.5rem;
}

.auth-form p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.full-width {
    width: 100%;
}

/* Checkout */
.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 18px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-item.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed #e2e8f0;
    font-weight: 800;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    flex: 1;
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.method-box {
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.method-box i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.payment-method input:checked+.method-box {
    border-color: var(--primary);
    background: #f5f3ff;
    color: var(--primary);
}

/* Payment Status Overlay */
.payment-status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    z-index: 10;
}

.payment-status-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

/* Slider Section for Results */
.slider-section {
    padding: 6rem 0;
    background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.05), transparent);
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.slider-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
}

.slider-card img {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 16px;
}

.slider-card h3 {
    margin: 12px 0 6px 0;
    font-size: 20px;
    font-weight: 700;
}

.slider-card p {
    margin: 0;
    font-size: 16px;
    color: #64748b;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-btn:hover {
    background: #818cf8;
}

@media (max-width: 768px) {
    .slider-card {
        min-width: 220px;
    }

    .slider-card img {
        width: 140px;
        height: 140px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128C7E;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-popup {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 9998;
    border: 1px solid #e2e8f0;
    animation: bounceIn 1s ease 2s both;
    max-width: 250px;
}

.whatsapp-popup::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent;
    display: block;
    width: 0;
}

.whatsapp-popup p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    60% { opacity: 1; transform: translateY(-5px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}