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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Fade animation */
.fade {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 1s ease forwards;
}

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

/* Stagger */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }

/* Glow orbs */
@keyframes floatGlow {
    0% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-15px); opacity: 1; }
    100% { transform: translateY(0px); opacity: 0.5; }
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155,92,255,0.4), transparent 70%);
    filter: blur(60px);
    animation: floatGlow 6s ease-in-out infinite;
    z-index: -1;
}

/* Header */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    margin-left: 25px;
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #ffffff;
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    background: radial-gradient(circle at top left, #1a1028, #050505);
    position: relative;
    overflow: hidden;
}

.parallax-hero {
    background-attachment: fixed;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}

.hero p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #cfcfcf;
    max-width: 600px;
}

/* CTA */
.cta-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffffff10, #ffffff05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #ffffff20, #ffffff10);
}

/* Divider */
.divider {
    height: 1px;
    margin: 0 40px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0.6;
}

/* Sections */
.section {
    padding: 100px 40px;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Services */
.services-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(155, 92, 255, 0.25);
}

/* Pricing */
.pricing-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    text-align: center;
    line-height: 1.7;
}

/* Why */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.why-item {
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Included and FAQ */
.included-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.included-list {
    line-height: 2;
    padding-left: 20px;
}

.faq-box {
    line-height: 1.8;
}

/* Image preview — fixed */
.image-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    transform: scale(0.85);
    opacity: 0;
    transition: all 1.2s ease;
}

.image-container.visible {
    transform: scale(1);
    opacity: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Floating contact button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #9b5cff;
    padding: 14px 22px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(155,92,255,0.4);
    transition: 0.3s;
    z-index: 20;
}

.floating-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(155,92,255,0.6);
}

/* Mobile contact bar */
.mobile-contact-bar {
    display: none;
}

/* Contact section glow */
.contact-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(155,92,255,0.4), transparent 70%);
    filter: blur(60px);
    opacity: 0.7;
    z-index: -1;
}

/* Contact intro */
.contact-intro {
    max-width: 650px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1.2rem;
    color: #dcdcdc;
    line-height: 1.7;
}

/* Contact reasons */
.contact-reasons {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.contact-reasons h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.contact-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
    text-align: center;
    color: #cfcfcf;
}

.contact-reasons li {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.8s ease forwards;
}

/* Contact email */
.contact-email {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact button icon */
.contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

/* Divider above form */
.form-divider {
    width: 100%;
    height: 1px;
    margin: 40px auto;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    resize: none;
    transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b8b8b8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input:hover,
.contact-form textarea:hover {
    outline: none;
    border-color: rgba(155,92,255,0.8);
    box-shadow: 0 0 15px rgba(155,92,255,0.4);
    background: rgba(255,255,255,0.08);
}

.contact-form textarea {
    height: 140px;
}

.contact-form button {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #9b5cff;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #b48aff;
    transform: translateY(-3px);
}

/* Success message */
.success-message {
    max-width: 600px;
    margin: 20px auto 0 auto;
    text-align: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(0, 180, 120, 0.15);
    border: 1px solid rgba(0, 200, 140, 0.6);
    color: #aef7d7;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 40px 40px;
    text-align: center;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
    background: radial-gradient(circle, rgba(155,92,255,0.5), transparent 70%);
    filter: blur(30px);
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 0 20px;
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 70px 20px;
    }

    .divider {
        margin: 0 20px;
    }

    .included-faq-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        display: none;
    }

    .mobile-contact-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #9b5cff;
        padding: 15px;
        text-align: center;
        z-index: 30;
    }

    .mobile-contact-bar a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-reasons {
        padding: 20px;
    }

    .contact-reasons h3 {
        font-size: 1.2rem;
    }

    .contact-reasons ul {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        max-width: 600px;
        margin: 40px auto;
    }
    
}
