@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #050511;
    --card-bg: #0f1020;
    --primary-color: #4a6cf7;
    --secondary-color: #8549f7;
    --accent-color: #00d2ff;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --nav-bg: rgba(5, 5, 17, 0.85);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-effect: blur(12px) saturate(180%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 30px;
    /* More side padding */
}

.section-title {
    font-size: 3rem;
    /* Larger title */
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 3rem;
    /* More space below title */
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    /* More header padding */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--heading-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Header height */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.2) 0%, rgba(5, 5, 17, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(133, 73, 247, 0.15) 0%, rgba(5, 5, 17, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-tagline {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    /* Replace with actual image or shape later */
    background: url('hero-bg.svg') no-repeat center center;
    /* Placeholder */
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    width: 300px;
    height: 300px;
    filter: blur(80px);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.3;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(140% at 100% 0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        text-align: center;
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    /* About Section */
    .about {
        padding: 120px 0;
        /* Increased padding */
        background: var(--bg-color);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        /* Much larger gap */
        align-items: center;
    }

    .about-text h2 {
        font-size: 2.8rem;
        margin-bottom: 25px;
        color: var(--heading-color);
        line-height: 1.2;
    }

    .about-text p {
        color: #b0b0b0;
        margin-bottom: 25px;
        font-size: 1.1rem;
        /* Larger text */
        line-height: 1.8;
    }

    .about-stats {
        display: flex;
        gap: 50px;
        /* More space between stats */
        margin-top: 40px;
    }

    /* Services Section */
    .services {
        padding: 120px 0;
        background: #08081a;
        /* slightly lighter than bg */
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        /* Wider cards */
        gap: 40px;
        /* Larger gap */
        margin-top: 60px;
    }

    .service-card {
        background: var(--card-bg);
        padding: 50px 40px;
        /* More internal padding */
        border-radius: 20px;
        transition: var(--transition);
        border: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .service-card p {
        color: #a0a0a0;
        margin-bottom: 20px;
    }

    /* Fancy Numbers Showcase */
    .fancy-numbers {
        padding: 120px 0;
        background: var(--bg-color);
        position: relative;
    }

    .numbers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        /* Wider cards */
        gap: 30px;
        margin-top: 60px;
    }

    .number-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        padding: 30px;
        /* More padding */
        border-radius: 15px;
        text-align: center;
        transition: var(--transition);
        cursor: pointer;
    }

    .number-card:hover {
        background: rgba(74, 108, 247, 0.1);
        border-color: var(--primary-color);
        transform: scale(1.05);
    }

    .vip-badge {
        position: absolute;
        top: -10px;
        right: -10px;
        background: var(--accent-color);
        color: #000;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 4px;
        text-transform: uppercase;
    }

    .number-card h3 {
        font-size: 1.8rem;
        color: var(--heading-color);
        letter-spacing: 2px;
        margin: 10px 0;
    }

    .number-price {
        font-size: 1.1rem;
        color: var(--secondary-color);
        font-weight: 600;
    }

    .number-card .status {
        font-size: 0.8rem;
        color: #00ff88;
        margin-top: 5px;
    }

    @media (max-width: 768px) {
        .about-content {
            grid-template-columns: 1fr;
        }
    }
}

/* Closing any potential open block from messed up copy-paste */

/* Process Section (How It Works) */
.process {
    padding: 120px 0;
    background: #08081a;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    flex-wrap: wrap;
    gap: 50px;
    /* More gap */
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(74, 108, 247, 0.5);
}

.step h3 {
    margin-bottom: 10px;
    color: var(--heading-color);
}

.step p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    /* More padding */
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #333;
}

.client-details h4 {
    color: var(--heading-color);
    font-size: 1rem;
}

.client-details span {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.testimonial-text {
    color: #ccc;
    font-style: italic;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: #08081a;
}

.faq-container {
    max-width: 900px;
    /* Wider FAQ */
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    /* More touch area */
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #a0a0a0;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* More gap */
    margin-top: 60px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 50px;
    /* More padding */
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
    /* More space between inputs */
}

.form-group label {
    display: block;
    color: #bbb;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    /* Comfier inputs */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.4;
    cursor: pointer;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: #02020a;
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}