/* Contact Numbers Page Specific Styles - Premium Redesign */

:root {
    --tel-primary: #10b981; /* Emerald Green */
    --tel-secondary: #1e3a8a; /* Deep Navy */
    --tel-accent: #f59e0b; /* Amber */
    --tel-bg: #f0fdf4;
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(16, 185, 129, 0.45), rgba(30, 58, 138, 0.9)), url('../images/contact_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Directory Grid */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
    border-color: var(--tel-primary);
}

.dept-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #ecfdf5;
    color: var(--tel-primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.dept-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--tel-secondary);
    margin-bottom: 15px;
}

.dept-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tel-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.tel-link:hover {
    color: var(--tel-primary);
}

.tel-link i {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.call-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--tel-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.call-btn:hover {
    background: var(--tel-secondary);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

/* Quick Support Section */
.support-banner {
    background: var(--tel-secondary);
    border-radius: 30px;
    padding: 60px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
}

.support-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.support-content p {
    font-size: 18px;
    opacity: 0.8;
}

.emergency-tag {
    background: var(--tel-accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .support-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .banner-title { font-size: 42px; }
    .directory-grid { grid-template-columns: 1fr; }
}
