/* ================= CONTACT HERO ================= */

.contact-hero {
    padding: 120px 20px 40px;
    background: #060b1a;
    position: relative;
    overflow: hidden;
}

.contact-hero-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */

.contact-hero-left {
    flex: 1;
}

.contact-hero-left h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-hero-left p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

/* BUTTON */

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #7b61ff, #a855f7);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 97, 255, 0.4);
}

/* RIGHT SIDE VISUAL */

.contact-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cosmic-glow {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(123,97,255,0.5), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatGlow 6s ease-in-out infinite;
}

/* subtle animation */

@keyframes floatGlow {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* TABLET */

@media (max-width: 992px) {
    .contact-hero-inner {
        gap: 40px;
    }

    .contact-hero-left h1 {
        font-size: 36px;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .contact-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero-left p {
        margin: 0 auto 30px;
    }

    /*HIDE GLOW COMPLETELY */
    .contact-hero-right {
        display: none;
    }
}



/* ================= CONTACT FORM ================= */

.contact-form-section {
    padding: 80px 20px;
    background: #070c20;
}

.contact-form-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

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

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #fff;
    font-size: 14px;
}

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

.contact-form select {
    color: #94a3b8;
}

.paid-note {
    font-size: 13px;
    color: #facc15;
    margin-bottom: 20px;
}

.friendly-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 20px;
    text-align: center;
}