/* CSS Custom Properties (Variables) */
:root {
    --font-primary: 'Inter', sans-serif;

    /* Deep, rich background */
    --color-bg: #030014;
    --color-bg-gradient-start: #030014;
    --color-bg-gradient-mid: #0f0529;
    --color-bg-gradient-end: #1a0b3c;

    /* Text Colors */
    --color-text: #ffffff;
    --color-text-subtle: #9ca3af;
    --color-text-highlight: #e2e8f0;

    /* Primary Brand Colors (Electric Violet/Purple) */
    --color-primary: #7c3aed;
    --color-primary-light: #8b5cf6;
    --color-primary-glow: #a78bfa;

    /* Accent Colors (Cyan/Teal for contrast) */
    --color-accent: #22d3ee;
    --color-accent-glow: #67e8f9;

    /* RGB Values for Glassmorphism */
    --color-primary-rgb: 124, 58, 237;
    --color-primary-dark-rgb: 76, 29, 149;
    --color-accent-rgb: 34, 211, 238;

    /* Glassmorphism Tokens */
    --glass-bg: rgba(17, 25, 40, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 16px;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Animation */
    --cta-transition-speed: 0.8s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* === PRELOADER STYLES === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.8),
        0 0 40px rgba(var(--color-primary-rgb), 0.6),
        0 0 60px rgba(var(--color-primary-rgb), 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === SITE HEADER & NAVBAR STYLES === */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 50;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 5, 41, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--glass-shadow);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--color-text-subtle);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-text);
    text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.6);
}

.nav-right .avail-btn {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
}

/* === HERO SECTION === */
.hero-section {
    background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, var(--color-bg) 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(var(--color-accent-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.neon-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(var(--color-primary-rgb), 0.5);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.8));
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--color-text-subtle);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.price-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.price-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.price-text i {
    color: var(--color-accent);
}

.time-text {
    font-size: 1.125rem;
    color: var(--color-text-subtle);
}

/* Avail Button */
.avail-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark-rgb));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.avail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(var(--color-primary-rgb), 0.6);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

/* === INFO SECTION (BENTO GRID) === */
.info-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--color-primary-rgb), 0.4);
    box-shadow: 0 10px 40px -10px rgba(var(--color-primary-rgb), 0.3);
}

/* Bento Spans */
.bento-span-2 {
    grid-column: span 2;
}

.bento-span-row-2 {
    grid-row: span 2;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    background: rgba(var(--color-accent-rgb), 0.1);
    padding: 1rem;
    border-radius: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.card-text {
    color: var(--color-text-subtle);
    line-height: 1.6;
}

/* === PRICING SECTION === */
.pricing-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px -10px rgba(var(--color-primary-rgb), 0.4);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(var(--color-primary-rgb), 0.15), rgba(var(--color-primary-rgb), 0.05));
    border-color: var(--color-primary);
}

.pricing-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-subtle);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.plan-duration {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    margin-bottom: 0.75rem;
    color: var(--color-text-subtle);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li i {
    color: var(--color-primary-light);
}

/* === TESTIMONIALS === */
.testimonial-section {
    padding: 6rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--color-text-highlight);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-grade {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* === CTA SECTION === */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--color-primary-rgb), 0.2) 100%);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-subtle);
    margin-bottom: 3rem;
}

/* === FOOTER === */
.footer {
    padding: 4rem 0 2rem;
    background: #020005;
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--color-text-subtle);
    max-width: 350px;
    line-height: 1.6;
}

.footer-column h3 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul a {
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-subtle);
    font-size: 0.875rem;
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #1a1625;
    border: 1px solid var(--color-primary);
    border-radius: 2rem;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(var(--color-primary-rgb), 0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-subtle);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.modal-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-subtle);
    margin-bottom: 2rem;
}

.modal-highlight {
    background: rgba(var(--color-primary-rgb), 0.1);
    border: 1px dashed var(--color-primary);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-highlight-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-light);
}

.modal-footer {
    text-align: center;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
        transform: translateY(90vh) scale(1);
    }

    to {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-transition {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.fade-transition.hidden {
    opacity: 0 !important;
}

/* === 404 PAGE STYLES === */
.hero-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-404-text {
    font-size: 1.25rem;
    color: var(--color-text-subtle);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .neon-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-span-2 {
        grid-column: auto;
    }

    .bento-span-row-2 {
        grid-row: auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}