/* CONTACT PAGE — XtraCorporate Style */

/* Contact Wrapper */
.contact-wrapper {
    background: #FFFFFF;
}

/* ========================================
   CORP-CONTACT — XtraCorporate Layout
   ======================================== */
.corp-contact-section {
    padding: 80px 0 80px;
    background: #FFFFFF;
}

.corp-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* LEFT: Heading + Description + Form */
.corp-contact-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #1A1A2E;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.corp-contact-heading span {
    color: #002699;
}

.corp-contact-subtitle {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 1.75rem;
}

.corp-contact-desc {
    font-size: 15px;
    color: #636363;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Form */
.corp-contact-form {
    margin-top: 0;
}

.corp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.corp-form-input {
    width: 100%;
    padding: 14px 16px;
    background: #f5f7fa;
    border: 1.5px solid #eaeaea;
    border-radius: 3px;
    color: #1A1A2E;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.corp-form-input:focus {
    outline: none;
    border-color: #002699;
    box-shadow: 0 0 0 3px rgba(0, 38, 153, 0.1);
}

.corp-form-input::placeholder {
    color: #bbb;
}

select.corp-form-input {
    appearance: auto;
    color: #bbb;
}

select.corp-form-input:valid {
    color: #1A1A2E;
}

.corp-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.corp-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: #002699;
    border: none;
    border-radius: 3px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.corp-submit-btn:hover {
    background: #01131c;
    box-shadow: 0 6px 20px rgba(0, 38, 153, 0.3);
    transform: translateY(-2px);
}

/* RIGHT: Contact Info Cards */
.corp-contact-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.corp-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    text-decoration: none;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.corp-info-card:first-child {
    padding-top: 0;
}

.corp-info-card:last-child {
    border-bottom: none;
}

.corp-info-card:hover {
    transform: translateX(4px);
}

.corp-info-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border: 2px solid #002699;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #002699;
    transition: all 0.3s ease;
}

.corp-info-card:hover .corp-info-icon {
    background: #002699;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(0, 38, 153, 0.25);
}

.corp-info-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #1A1A2E;
    margin: 0 0 4px;
}

.corp-info-text p {
    font-size: 0.95rem;
    color: #636363;
    margin: 0;
}

/* Full-Width Map */
.corp-contact-map {
    margin-top: 60px;
    height: 350px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.corp-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .corp-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .corp-contact-right {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .corp-info-card {
        flex: 1 1 100%;
    }

    .corp-contact-map {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .corp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .corp-contact-section {
        padding: 60px 0 60px;
    }

    .corp-info-card {
        padding: 20px 0;
    }
}

@media (max-width: 600px) {
    .corp-contact-section {
        padding: 50px 0 0;
    }

    .corp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .corp-contact-heading {
        font-size: 1.5rem;
    }

    .corp-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.1rem;
    }

    .corp-submit-btn {
        width: 100%;
    }

    .corp-contact-map {
        height: 220px;
        margin-top: 40px;
    }
}