/* ===== HERO ===== */

.hero-contact {
    height: 60vh;
    background: url('../images/about-hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-contact .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 40, 0.8);
}

.hero-contact .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 1rem;
}


/* ===== CONTACT INFO ===== */

.contact-info-section {
    background: linear-gradient(135deg, #0d0d1a, #141432);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.info-item i {
    color: #b794f4;
    font-size: 1.5rem;
}


/* ===== CONTACT FORM ===== */

.contact-form-section {
    background: linear-gradient(135deg, #0E0E2F, #1A1A40);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #b9a8ff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(90deg, #7b61ff, #b794f4);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .contact-details {
        align-items: flex-start;
    }
    .info-item {
        font-size: 1rem;
    }
}