/* Custom Contact Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

.contact-section-bg {
    background: radial-gradient(circle at top right, #f8fbff 0%, #eef2f7 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 60px 0;
}

.contact-header .top-label {
    color: #d1002c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.contact-header .main-title {
    color: #092c5c;
    font-weight: 800;
    font-size: 2.8rem;
    margin-top: 10px;
}

.contact-header .main-title span {
    color: #d1002c;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #ffcc00;
    margin: 15px auto;
    border-radius: 10px;
}

/* Glass Card Styling */
.contact-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(9, 44, 92, 0.05);
}

.contact-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(9, 44, 92, 0.12);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #eef2f7;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #092c5c;
}

.card-header-icon {
    width: 60px;
    height: 60px;
    background: #ffcc00;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #092c5c;
    margin-bottom: 25px;
}

.school-name {
    font-weight: 800;
    font-size: 1.4rem;
    color: #092c5c;
    margin-bottom: 30px;
}

/* Info Grid Layout */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    color: #d1002c;
    font-size: 1.2rem;
    background: rgba(209, 0, 44, 0.08);
    padding: 10px;
    border-radius: 10px;
}

.info-item h6 {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 700;
}

.info-item p, .info-item a {
    margin: 0;
    font-size: 1rem;
    color: #092c5c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.info-item a:hover {
    color: #d1002c;
}

.card-footer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-overlay-text {
    padding: 15px 20px;
    font-weight: 700;
    color: #092c5c;
}