/* =========================================================
   CONTACT PAGE
========================================================= */

:root {
    --breadcrumb-bg: #EDF2F5;
}

/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

/* IMAGE */

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

/* HERO CONTENT */

.contact-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* HERO TITLE */

.contact-hero-title {
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 40;
    line-height: 1.1;    
    margin: 0;
    max-width: 1000px;
    letter-spacing: -1px;
    text-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #f8f9fb;
}

/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    background: #ffffff;
    /* border-radius: 20px; */
    padding: 44px 48px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.07);
}

/* FORM TITLE */

.contact-form-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ED6A18;
    position: relative;
    padding-bottom: 14px;
}

.contact-form-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: #ED6A18;
    /* border-radius: 2px; */
}

/* LABELS */

.contact-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

/* INPUTS */

.contact-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    /* border-radius: 10px; */
    padding: 11px 16px;
    font-size: 0.94rem;
    color: #111827;
    background: #fafafa;
    outline: none;
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        background 0.25s;
}

.contact-input:focus {
    border-color: #005FAC;
    background: #ffffff;
    box-shadow:
        0 0 0 3px rgba(0, 95, 172, 0.10);
}

/* TEXTAREA */

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

/* PHONE GROUP */

.contact-phone-group {
    display: flex;
    gap: 8px;
}

/* SELECT */

.contact-select {
    border: 1.5px solid #e5e7eb;
    /* border-radius: 10px; */
    padding: 11px 10px;
    font-size: 0.88rem;
    background: #fafafa;
    color: #374151;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.25s;
}

.contact-select:focus {
    border-color: #005FAC;
}

/* =========================================================
   FILE UPLOAD
========================================================= */

.contact-file-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    border: 1.5px dashed #d1d5db;
    /* border-radius: 10px; */
    padding: 10px 18px;
    cursor: pointer;
    transition:
        border-color 0.25s,
        background 0.25s;
    margin-bottom: 0;
}

.contact-file-label:hover {
    border-color: #005FAC;
    background: rgba(0, 95, 172, 0.04);
    color: #005FAC;
}

.contact-file-name {
    display: block;
    font-size: 0.80rem;
    color: #9ca3af;
    margin-top: 6px;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #005FAC;
    color: #ffffff;
    border: none;
    /* border-radius: 50px; */
    padding: 14px 36px;
    font-size: 0.96rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.25s,
        transform 0.2s,
        box-shadow 0.25s;
}

.btn-contact-submit:hover {
    background: #004a89;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 95, 172, 0.30);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* =========================================================
   INFO CARD
========================================================= */

.contact-info-card {

    background: #005FAC;

    /* border-radius: 20px; */

    padding: 44px 40px;

    color: #ffffff;
}

/* INFO TITLE */

.contact-info-heading {

    font-size: 1.4rem;

    font-weight: 700;

    color: #ffffff;
}

/* INFO LIST */

.contact-info-list {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 24px;
}

/* INFO ITEM */

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;
}

/* ICON */

.contact-info-icon {

    width: 42px;

    height: 42px;

    /* border-radius: 12px; */

    background: rgba(255, 255, 255, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.1rem;

    flex-shrink: 0;

    color: #ffffff;
}

/* LABEL */

.contact-info-label {

    font-size: 0.78rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.65);

    font-weight: 600;

    margin-bottom: 3px;
}

/* VALUE */

.contact-info-value {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
}

.contact-info-value:hover {
    color: rgba(255, 255, 255, 0.80);
}

/* =========================================================
   SOCIAL
========================================================= */

.contact-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    /* border-radius: 10px; */
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.2s;
}

.contact-social-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {
    .contact-hero {
        height: 420px;
    }

    .contact-hero-content {
        padding: 0 20px;
    }

    .contact-hero-title {
        font-size: 2.3rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 30px 24px;
    }
}

