 /* =====   ===== */

     .about-section {
        background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 40px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .about-feature h6 {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-feature p {
        font-size: 14px;
        opacity: 0.7;
        margin: 0;
    }
    
    
    
    /* ============================================
   CONTACT PAGE STYLES (No Form Version)
   Co-operative Hospital Kurunegala
   ============================================ */

   /* ===== PAGE BANNER (reuse from gallery) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}


/* ===== CONTACT STATS ===== */
.contact-stats {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
}

.c-stat-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
}

.c-stat-link {
    text-decoration: none;
    cursor: pointer;
}

.c-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.c-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.c-stat-card:hover .c-stat-icon {
    transform: scale(1.1);
}

.c-stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.c-stat-icon.amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.c-stat-icon.rose {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.c-stat-title {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2px;
}

.c-stat-value {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy-dark);
    line-height: 1.2;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0 60px;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(13, 148, 136, 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

/* Card Header */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg,
            rgba(13, 148, 136, 0.04),
            rgba(6, 182, 212, 0.02));
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.12));
    color: #8b5cf6;
}

.contact-card-icon.teal {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    color: var(--primary);
}

.contact-card-icon.amber-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(251, 191, 36, 0.12));
    color: #f59e0b;
}

.contact-card-header h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-dark);
    margin: 0;
    line-height: 1.3;
}

.contact-card-header h4::after {
    display: none;
}

.contact-card-header small {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* Card Body */
.contact-card-body {
    padding: 12px 16px;
}

/* ===== ADDRESS BLOCK ===== */
.address-block {
    padding: 8px 0;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.address-line:hover {
    background: rgba(13, 148, 136, 0.04);
}

.address-line i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.address-line div {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.address-line strong {
    color: var(--navy-dark);
}

.address-line a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

.address-line a:hover {
    color: var(--accent);
}

.label-sm {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== DIRECTORY ITEMS (Management) ===== */
.directory-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 12px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.directory-item:last-child {
    border-bottom: none;
}

.directory-item:hover {
    background: rgba(139, 92, 246, 0.04);
}

.directory-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.directory-info {
    flex: 1;
    min-width: 0;
}

.directory-info h6 {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-dark);
    margin: 0 0 6px;
}

.directory-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dir-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(13, 148, 136, 0.06);
    color: var(--primary);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.dir-contact:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}

.dir-contact.email {
    background: rgba(139, 92, 246, 0.06);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.1);
}

.dir-contact.email:hover {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    border-color: transparent;
}

.dir-contact i {
    font-size: 10px;
}

/* ===== DEPARTMENT ROWS ===== */
.dept-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dept-row:last-child {
    border-bottom: none;
}

.dept-row:hover {
    background: rgba(13, 148, 136, 0.04);
}

.dept-icon-sm {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.dept-icon-sm.emergency-bg {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    color: #ef4444;
}

.dept-icon-sm.blue-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    color: #3b82f6;
}

.dept-icon-sm.green-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #10b981;
}

.dept-icon-sm.amber-bg {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    color: #f59e0b;
}

.dept-icon-sm.purple-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    color: #8b5cf6;
}

.dept-icon-sm.rose-bg {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(251, 113, 133, 0.1));
    color: #f43f5e;
}

.dept-details {
    flex: 1;
    min-width: 0;
}

.dept-details h6 {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-dark);
    margin: 0 0 2px;
}

.dept-details span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.dept-numbers {
    flex-shrink: 0;
}

.dept-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(13, 148, 136, 0.06);
    color: var(--primary);
    border: 1px solid rgba(13, 148, 136, 0.1);
    font-family: 'Inter', sans-serif;
}

.dept-phone:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: scale(1.05);
}

.dept-phone.emergency-phone {
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.1);
}

.dept-phone.emergency-phone:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border-color: transparent;
}

.dept-phone i {
    font-size: 10px;
}

/* ===== INTERCOM GRID ===== */
.intercom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 4px 0;
}

.intercom-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.intercom-item:hover {
    background: rgba(245, 158, 11, 0.04);
}

.intercom-ext {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    color: #d97706;
    font-size: 12px;
    font-weight: 800;
    font-family: 'Inter', monospace;
    flex-shrink: 0;
}

.intercom-name {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    line-height: 1.3;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 80px 0;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.location-feature:hover {
    transform: translateX(6px);
}

.location-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-feature:hover .location-feature-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
    transform: scale(1.1);
}

.location-feature h6 {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.location-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* Location Buttons */
.location-btns {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
    color: #fff;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    color: #fff;
}

/* ===== MAP CARD ===== */
.map-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.map-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.map-info {
    padding: 20px 24px;
}

.map-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.map-info-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.map-info-row i {
    color: var(--accent-light);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* ===== SOCIAL CARD DARK ===== */
.social-card-dark {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.social-card-dark:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.social-card-dark h5 {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-card-dark h5::after {
    display: none;
}

.social-card-dark h5 i {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    color: #fff;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #010101, #333);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .contact-stats {
        margin-top: -40px;
    }

    .contact-section {
        padding: 60px 0 50px;
    }

    .contact-card-header {
        padding: 20px 22px;
    }

    .contact-card-body {
        padding: 8px 12px;
    }

    .intercom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-btns {
        justify-content: flex-start;
    }

    .map-container iframe {
        height: 280px;
    }

    .directory-contacts {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 767px) {
    .contact-stats {
        margin-top: -35px;
    }

    .c-stat-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .c-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .c-stat-value {
        font-size: 0.95rem;
    }

    .c-stat-title {
        font-size: 11px;
    }

    .contact-card-header {
        padding: 18px;
        gap: 12px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .contact-card-header h4 {
        font-size: 16px;
    }

    .contact-card-body {
        padding: 6px 8px;
    }

    .address-line {
        padding: 12px 8px;
        gap: 12px;
    }

    .address-line div {
        font-size: 13px;
    }

    .directory-item {
        padding: 14px 8px;
        gap: 12px;
    }

    .directory-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
        border-radius: 10px;
    }

    .directory-info h6 {
        font-size: 13px;
    }

    .dir-contact {
        font-size: 11px;
        padding: 3px 10px;
    }

    .dept-row {
        padding: 12px 8px;
        gap: 10px;
    }

    .dept-icon-sm {
        width: 34px;
        height: 34px;
        font-size: 13px;
        border-radius: 8px;
    }

    .dept-details h6 {
        font-size: 13px;
    }

    .dept-details span {
        font-size: 11px;
    }

    .dept-phone {
        padding: 5px 10px;
        font-size: 12px;
    }

    .intercom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .intercom-item {
        padding: 10px;
        gap: 8px;
    }

    .intercom-ext {
        min-width: 36px;
        height: 26px;
        font-size: 11px;
    }

    .intercom-name {
        font-size: 12px;
    }

    .location-feature {
        gap: 12px;
        margin-bottom: 18px;
    }

    .location-feature-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 12px;
    }

    .location-feature h6 {
        font-size: 14px;
    }

    .location-feature p {
        font-size: 12px;
    }

    .location-btns {
        flex-direction: column;
    }

    .btn-directions,
    .btn-call-now {
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }

    .map-container iframe {
        height: 250px;
    }

    .map-info {
        padding: 16px 18px;
    }

    .map-info-row {
        font-size: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .c-stat-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .c-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .c-stat-value {
        font-size: 0.85rem;
    }

    .c-stat-title {
        font-size: 10px;
    }

    .contact-card {
        border-radius: 18px;
    }

    .contact-card::before {
        width: 100%;
        height: 3px;
        left: 0;
        top: 0;
    }

    .contact-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 10px;
    }

    .contact-card-header h4 {
        font-size: 15px;
    }

    .contact-card-header small {
        font-size: 12px;
    }

    .contact-card-body {
        padding: 4px 8px;
    }

    .directory-item {
        flex-direction: column;
        gap: 10px;
        padding: 14px 10px;
    }

    .directory-avatar {
        width: 36px;
        height: 36px;
    }

    .directory-contacts {
        width: 100%;
    }

    .dir-contact {
        width: 100%;
        justify-content: center;
        padding: 6px 12px;
    }

    .dept-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .dept-numbers {
        width: 100%;
    }

    .dept-phone {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
    }

    .intercom-grid {
        grid-template-columns: 1fr;
    }

    .intercom-item {
        padding: 10px 8px;
    }

    .social-card-dark {
        padding: 20px;
        border-radius: 18px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .map-card {
        border-radius: 18px;
    }

    .map-container iframe {
        height: 220px;
    }

    .map-info {
        padding: 14px 16px;
    }
}