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

/* Contact Hero */
.contact-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 30px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9ff 100%
        );
    border-bottom: 1px solid #edf1f7;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-label {
    color: #0866d5;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 22px;
}

.contact-hero h1 {
    margin: 0 0 25px;
    color: #071a3a;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

.contact-hero h1 span {
    color: #0866d5;
}

.contact-hero-content > p:last-child {
    max-width: 680px;
    margin: 0 auto;
    color: #5b6982;
    font-size: 18px;
    line-height: 1.7;
}


/* General */
.contact-section {
    padding: 90px 30px;
    background: #ffffff;
}

.contact-section-soft {
    background: #f7faff;
}

.contact-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-intro {
    max-width: 760px;
    margin-bottom: 45px;
}

.section-label {
    color: #0866d5;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 22px;
}

.section-intro h2,
.contact-message-intro h2 {
    margin: 0;
    color: #071a3a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}


/* Contact Information */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-info-card {
    min-height: 175px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 27px 23px;
    background: #ffffff;
    border: 1px solid #e5edf8;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(7, 26, 58, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #b9d5f8;
    box-shadow: 0 15px 35px rgba(7, 26, 58, 0.09);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf3ff;
    font-size: 25px;
}

.contact-info-label {
    margin: 2px 0 8px;
    color: #0866d5;
    font-size: 10px;
    letter-spacing: 1.8px;
    font-weight: 700;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    color: #071a3a;
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
}

.contact-info-card > div:last-child > span {
    color: #65738b;
    font-size: 12px;
}

.contact-address {
    margin: 0;
    color: #65738b;
    font-size: 13px;
    line-height: 1.65;
}

.address-card {
    cursor: default;
}

.address-card:hover {
    transform: none;
}


/* Message Layout */
.contact-message-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.contact-message-intro {
    padding-top: 8px;
}

.contact-message-intro > p:not(.section-label) {
    margin: 25px 0 0;
    color: #5b6982;
    font-size: 16px;
    line-height: 1.8;
}

.contact-direct-link {
    margin-top: 30px;
    padding: 18px;
    border-left: 3px solid #0866d5;
    background: #ffffff;
}

.contact-direct-link span {
    display: block;
    margin-bottom: 5px;
    color: #65738b;
    font-size: 12px;
}

.contact-direct-link a {
    color: #0866d5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

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


/* Form */
.contact-form {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5edf8;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(7, 26, 58, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #10213f;
    font-size: 13px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    color: #10213f;
    background: #fbfdff;
    border: 1px solid #dce6f3;
    border-radius: 9px;
    outline: none;
    font: inherit;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input {
    height: 47px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa7b9;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: #86b9ef;
    box-shadow: 0 0 0 3px rgba(8, 102, 213, 0.08);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    color: #ffffff;
    background: #0866d5;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit:hover {
    background: #0758b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 102, 213, 0.20);
}

.contact-submit span {
    font-size: 18px;
}

.form-note {
    margin: 15px 0 0;
    color: #8995a7;
    font-size: 11px;
    line-height: 1.5;
}


/* Explore */
.contact-explore {
    padding: 85px 30px 95px;
    background: #ffffff;
}

.contact-explore h2 {
    margin: 0 0 38px;
    color: #071a3a;
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -1.5px;
}

.contact-explore h2 span {
    color: #0866d5;
}

.contact-explore-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
}

.contact-explore-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    color: inherit;
    background: #f7faff;
    border: 1px solid #e5edf8;
    border-radius: 16px;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-explore-links a:hover {
    transform: translateY(-4px);
    border-color: #b9d5f8;
    box-shadow: 0 12px 30px rgba(7, 26, 58, 0.08);
}

.contact-explore-links strong {
    display: block;
    margin-bottom: 6px;
    color: #071a3a;
    font-size: 16px;
}

.contact-explore-links p {
    margin: 0;
    color: #65738b;
    font-size: 13px;
    line-height: 1.5;
}

.contact-explore-links a > span {
    color: #0866d5;
    font-size: 21px;
    transition: transform 0.3s ease;
}

.contact-explore-links a:hover > span {
    transform: translateX(4px);
}


/* =====================================================
   CONTACT PAGE — RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-message-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-explore-links {
        max-width: none;
    }
}

@media (max-width: 700px) {

    .contact-hero {
        min-height: 360px;
        padding: 60px 20px;
    }

    .contact-label,
    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .contact-hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .contact-hero-content > p:last-child {
        font-size: 15px;
    }

    .contact-section,
    .contact-explore {
        padding: 60px 20px;
    }

    .section-intro h2,
    .contact-message-intro h2,
    .contact-explore h2 {
        font-size: 34px;
    }

    .contact-info-card {
        min-height: auto;
        padding: 23px 20px;
    }

    .contact-message-intro > p:not(.section-label) {
        font-size: 15px;
    }

    .contact-form {
        padding: 23px 19px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-explore-links {
        grid-template-columns: 1fr;
    }
}
