﻿/* 🔥 HERO */
.contact-hero {
    padding: 100px 0;
    background:  #0f172a;
    color: #fff;
}

    .contact-hero h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .contact-hero p {
        color: #cbd5e1;
        margin-top: 10px;
    }

/* 🔥 SECTION */
.contact-section {
    margin-top: 60px;
}

/* 🔥 LAYOUT */
.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* 🔥 LEFT */
.contact-left {
    flex: 1;
}

    .contact-left h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

.contact-desc {
    color: #64748b;
    margin-bottom: 25px;
}

/* 🔥 INFO */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
}

/* 🔥 FORM CARD */
.contact-form-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

    .contact-form-card h3 {
        margin-bottom: 20px;
    }

/* 🔥 SUCCESS */
.success-box {
    background: #ecfdf5;
    color: #166534;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* 🔥 INPUTS */
.form-group {
    margin-bottom: 15px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        font-size: 14px;
        transition: 0.3s;
    }

    .form-group textarea {
        height: 120px;
        resize: none;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
            outline: none;
        }

/* 🔥 BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .submit-btn:hover {
        transform: scale(1.05);
    }

/* 🔥 CTA */
.contact-cta {
    margin-top: 80px;
    padding: 70px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
}

    .contact-cta p {
        color: #cbd5e1;
    }

.cta-call {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #fff;
    text-decoration: none;
}

/* 🔥 MOBILE */
@media(max-width:768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}
