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

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #6366f1; /* Indigo */
    --secondary-color: #a855f7; /* Purple */
    --accent-color: #3b82f6; /* Blue */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(20, 20, 30, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #1e2328;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu Active State (Hamburger Animation) */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    opacity: 0.8;
    position: relative;
}

nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(99, 102, 241, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), var(--bg-color));
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 300;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 15px 40px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #f1f5f9;
}

.btn-secondary {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* Features/Services */
.features {
    padding: 100px 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    display: inline-block;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(
        circle at center,
        rgba(99, 102, 241, 0.1) 0%,
        transparent 70%
    );
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.price-card {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    width: 350px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.price-card:hover {
    transform: scale(1.02);
}

.plan-name {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.features-list {
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.check {
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-price {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-price.outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: #fff;
}

.btn-price.outline:hover {
    border-color: #fff;
}

.btn-price.filled {
    background: linear-gradient(
        90deg,
        var(--secondary-color),
        var(--primary-color)
    );
    color: #fff;
}

.btn-price.filled:hover {
    opacity: 0.9;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Process Section */
.process {
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.container-timeline {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container-timeline::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 3px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 18px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--glass-border);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 18px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--glass-border) transparent transparent;
}

.right::after {
    left: -10px;
}

.content-timeline {
    padding: 20px 30px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    border-radius: 15px;
    transition: 0.3s;
}

.content-timeline:hover {
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.content-timeline h2 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(to top, #000 0%, rgba(20,20,30,0.5) 100%);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(5,5,5,0.5);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(5,5,5,0.8);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

/* Footer */
footer {
    padding: 50px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    background-color: #000;
}

/* Floating Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    background: #25d366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.fab img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.fab:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .container-timeline {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .container-timeline::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--glass-border) transparent transparent;
    }

    .left::after, .right::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    header {
        padding: 20px 30px;
    }

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

    nav {
        display: flex; /* Override previous display:none */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999; /* Below the toggle button */
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    nav a {
        font-size: 2rem;
        font-weight: 700;
    }
    
    /* Hide desktop CTA in header, might want to add inside menu if needed */
    header .cta-btn {
        display: none;
    }
}
