/* ================= VARIABLES ================= */
:root {
    --primary: #e53935;
    --dark: #0e0e0e;
    --light: #ffffff;
    --muted: #9c9c9c;
    --radius: 12px;
    --transition: 0.35s ease;
}

/* ================= HERO ================= */
.contact-hero {
    background: url('../images/background.png') center/cover no-repeat;
    height: 320px;
    position: relative;
    color: #fff;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-hero .content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ================= SECTION ================= */
.contact-section {
    min-height: 100vh;
}

/* ================= LEFT PANEL ================= */
.contact-content {
    background: var(--dark);
    color: var(--light);
    padding: 70px;
    display: flex;
    align-items: center;
}

.content-box {
    max-width: 420px;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h6 {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ================= BUTTON ================= */
.send-btn {
    background: var(--light);
    color: #000;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.send-btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

/* ================= RIGHT IMAGE ================= */
.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
}

/* ================= INFO BOXES ================= */
.info-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.info-box i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ================= CONTACT FORM ================= */
.contact-form {
    background: var(--primary);
    padding: 36px;
    border-radius: var(--radius);
}

.contact-form input,
.contact-form textarea {
    border-radius: 6px;
    border: none;
    padding: 12px;
}

.contact-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-form button:hover {
    opacity: 0.85;
}

/* ================= HELP SECTION ================= */
.section-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}

.help-card {
    background: #111;
    color: #fff;
    padding: 32px;
    height: 100%;
    border-radius: var(--radius);
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-6px);
}

.help-card h5 {
    font-weight: 600;
    margin-bottom: 14px;
}

.help-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.btn-custom {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
}

/* ================= MAP ================= */
.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: var(--radius);
    border: none;
}

/* ================= IMAGE BOX ================= */
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .contact-content {
        padding: 45px 28px;
    }

    .contact-image img {
        min-height: 420px;
    }
}