.contact-page-wrapper {
    max-width: 1300px;
    margin: 80px auto 60px;
    padding: 0 20px;
}

/* Hero Section */
.contact-hero {
    background-image: linear-gradient(135deg, rgba(7, 77, 120, 0.95), rgba(5, 58, 90, 0.98)), var(--contact-hero-image, none);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 16px 100px;
    color: #ffffff;
    text-align: center;
}

.contact-hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: system-ui, sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Layout */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 30px;
    margin-bottom: 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(26, 39, 70, 0.05);
    transition: all 0.3s ease;
}

.info-card {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    margin-bottom: 20px;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex-shrink: 0;
    background: #f0f7ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
}

.card-text label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.card-text p {
    color: #1a2746;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Map */
.map-card {
    padding: 10px;
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 18px;
    overflow: hidden;
}

/* Academic Table Section */
.managers-container {
    margin-top: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #1a2746;
}

.section-header > div > i,
.section-header > i {
    font-size: 1.8rem;
    color: #2563eb;
}

.section-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.custom-table-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee !important;
    border-left: none !important;
}

.academic-table {
    width: 100%;
    border-collapse: collapse;
    border-left: none !important;
}

.academic-table thead th:first-child,
.academic-table tbody td:first-child {
    border-left: none !important;
}

/* Header */
.academic-table thead th {
    background-color: #1a2746;
    color: #ffffff;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px dotted rgba(255, 255, 255, 0.3);
}

.academic-table thead th:last-child {
    border-right: none;
}

/* Body */
.academic-table tbody td {
    padding: 12px;
    color: #444;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    border-right: 1px dotted #ddd;
}

.academic-table tbody td:last-child {
    border-right: none;
}

.academic-table tbody tr:last-child td {
    border-bottom: none;
}

/* First Row Accent */
.academic-table tbody tr:first-child {
    background-color: #fdf6e3;
}

.academic-table tbody tr:first-child td {
    color: #a67c52;
    font-weight: 700;
}

/* Hover */
.academic-table tbody tr:hover {
    background-color: #f8fafc;
}

@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }

    .custom-table-wrapper {
        overflow-x: auto;
    }

    .academic-table {
        min-width: 700px;
    }
}