/* ==========================================================
    Section header — sizing matches aboutus.blade.php so the
    "Send Us A Message" / "Get In Touch" headers scale the
    same way across breakpoints as the rest of the site.
    ========================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header .sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(6, 80, 143, 0.12);
    border: 1px solid rgba(6, 80, 143, 0.22);
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.12;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: #667085;
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 1199.98px) {
    .section-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .section-header .sub-title {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }
}

@media (max-width: 479.98px) {
    .section-header h2 {
        font-size: 24px;
    }
}

.contact-form-section {
    background: #fffcf8;
    padding: clamp(32px, 20px + 4vw, 60px) 0;
}

.contact-card,
.info-card {
    position: relative;
    overflow: hidden;
}

.contact-card::before,
.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
}

.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05)
}

.contact-card h4,
.info-card h4 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.contact-card h4::after,
.info-card h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-form .contact-label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 14px;
    background: rgba(6, 80, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
    background: #fff;
    color: #232323
}

.input-with-icon .contact-input {
    padding-left: 52px;
    height: 44px;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 80, 143, 0.15);
    outline: none
}

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

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fafafa;
}

.info-icon {
    min-width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 6px 14px rgba(6, 80, 143, 0.25);
}

.info-icon i {
    font-size: 18px;
    line-height: 1;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    margin: 0;
    color: #232323
}

.info-title i {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.info-text {
    margin: 2px 0 0;
    color: #666;
    font-size: 14px
}

.info-table-item {
    align-items: flex-start;
}

.info-table-body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.info-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.info-table {
    width: 100%;
    max-width: 100%;
    min-width: 620px;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 8px 0;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
}

.info-table th:nth-child(1),
.info-table td:nth-child(1) {
    width: 24%;
}

.info-table th:nth-child(2),
.info-table td:nth-child(2) {
    width: 26%;
}

.info-table th:nth-child(3),
.info-table td:nth-child(3) {
    width: 50%;
}

.info-table th {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #232323;
    background: rgba(6, 80, 143, 0.12);
}

.info-table td {
    padding: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
    vertical-align: top;
    word-break: normal;
}

.info-table td:nth-child(2) {
    white-space: nowrap;
}

.info-table td:nth-child(3) {
    white-space: nowrap;
}

.info-table td a {
    color: #232323;
    font-weight: 700;
    text-decoration: none;
}

.info-table td a:hover {
    color: var(--primary);
}

.info-table .dept {
    font-weight: 800;
    color: #232323;
    white-space: nowrap;
}

/* Location / Map Section */
.location-section {
    background: #fffcf8;
    padding: clamp(32px, 20px + 4vw, 60px) 0;
}

.map-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: 100%;
    min-height: 380px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    border: 0;
}

.info-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-item:hover {
    transform: translateX(6px);
    border-color: rgba(6, 80, 143, 0.3);
    box-shadow: 0 8px 18px rgba(6, 80, 143, 0.08);
}

@media (max-width: 991.98px) {
    .map-card {
        min-height: 320px;
    }

    .map-card iframe {
        min-height: 320px;
    }

    .contact-card {
        padding: 30px;
    }

    .info-card {
        padding: 26px;
    }
}

@media (max-width: 767.98px) {
    .contact-card {
        padding: 24px;
    }

    .info-card {
        padding: 22px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-actions .site-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .map-card,
    .map-card iframe {
        min-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .contact-card,
    .info-card {
        padding: 18px;
    }

    .contact-card h4,
    .info-card h4 {
        font-size: 18px;
    }

    .input-with-icon .contact-input {
        padding-left: 44px;
        height: 42px;
    }

    .input-with-icon i {
        left: 10px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .contact-textarea {
        min-height: 130px;
    }

    .info-item {
        padding: 12px;
        gap: 10px;
    }

    .map-card,
    .map-card iframe {
        min-height: 220px;
    }
}
