/* ================= CONTACT HERO ================= */
.contact-hero {
    background: linear-gradient(90deg, #131921, #232f3e);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.contact-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* ================= MAIN WRAPPER ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 80px;
    background: #f5f5f5;
}

/* ================= LEFT : CONTACT INFO ================= */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    margin-bottom: 25px;
    font-size: 22px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 22px;
    color: #f0c14b;
    min-width: 30px;
    margin-top: 4px;
}

.contact-item h4 {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.contact-item a {
    display: block;
    color: #0066c0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 4px;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ================= RIGHT : CONTACT FORM ================= */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* SUCCESS MESSAGE */
.success-msg {
    background: #e7f6ec;
    color: #067d3b;
    border: 1px solid #b6e2c6;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f0c14b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(240,193,75,0.25);
}

/* BUTTON */
.contact-form button {
    background: #f0c14b;
    border: 1px solid #a88734;
    padding: 12px;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ddb347;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

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