﻿/* ================= HERO ================= */
.contact-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg,#eef2ff,#f8fafc);
}

    .contact-hero h1 {
        font-size: 34px;
        font-weight: 900;
        color: #0f172a;
    }

    .contact-hero p {
        margin-top: 12px;
        color: #475569;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

/* ================= SECTION ================= */
.contact-section {
    padding: 60px 0;
}

/* ================= INFO CARD ================= */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .contact-info-card h4 {
        font-weight: 800;
        margin-bottom: 10px;
    }

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #334155;
}

    .contact-item i {
        width: 36px;
        height: 36px;
        background: #eff6ff;
        color: #2563eb;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

/* ================= FORM CARD ================= */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .contact-form-card h4 {
        font-weight: 800;
        margin-bottom: 20px;
    }

/* INPUT */
.custom-input {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px;
    font-size: 14px;
}

    .custom-input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
    }

/* BUTTON */
.btn-send {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
    transition: 0.3s;
}

    .btn-send:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(37,99,235,0.4);
    }

/* ================= CTA ================= */
.contact-cta {
    padding: 70px 20px;
    background: #0f172a;
    color: #fff;
}

    .contact-cta h2 {
        font-weight: 800;
    }

    .contact-cta p {
        color: #cbd5e1;
        margin-top: 10px;
    }

.cta-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    font-weight: 700;
}

    .cta-btn:hover {
        transform: translateY(-2px);
    }

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .contact-hero h1 {
        font-size: 26px;
    }

    .contact-section {
        padding: 40px 15px;
    }
}
