/* ==========================================================================
   SMA Global Darussalam Academy - Corporate Academic Stylesheet (ITB Style)
   Theme: #012169 (Oxford Navy) & #FEDD72 (Gold)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@700&display=swap');

:root {
    --gda-primary: #012169;
    --gda-primary-dark: #001040;
    --gda-primary-soft: #eaf1fb;
    --gda-gold: #FEDD72;
    --gda-gold-dark: #e5c455;
    --gda-dark: #212529;
    --gda-light: #f8f9fa;
    --gda-white: #ffffff;
    --gda-text: #333333;
    --gda-muted: #6c757d;
    --gda-border: #e2e8f0;
    --gda-radius-sm: 6px;
    --gda-radius-md: 10px;
    --gda-radius-lg: 14px;
    --gda-radius-pill: 50px;
    --gda-shadow-sm: 0 2px 8px rgba(1, 33, 105, 0.08);
    --gda-shadow-md: 0 4px 18px rgba(1, 33, 105, 0.1);
    --gda-shadow-lg: 0 10px 30px rgba(1, 33, 105, 0.14);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gda-text);
    background-color: var(--gda-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Merriweather', serif;
    color: var(--gda-primary);
    font-weight: 700;
}

/* Utilities */
.bg-navy { background-color: var(--gda-primary) !important; color: var(--gda-white); }
.text-navy { color: var(--gda-primary) !important; }
.bg-gold { background-color: var(--gda-gold) !important; color: var(--gda-dark); }
.text-gold { color: var(--gda-gold) !important; }

a { color: var(--gda-primary); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--gda-gold-dark); }

/* ==========================================================================
   BUTTONS (ROUNDED & SHADOWS)
   ========================================================================== */
.btn {
    border-radius: var(--gda-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.4rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--gda-primary);
    border-color: var(--gda-primary);
    color: var(--gda-white);
    box-shadow: var(--gda-shadow-sm);
}
.btn-primary:hover {
    background-color: var(--gda-primary-dark);
    border-color: var(--gda-primary-dark);
    color: var(--gda-white);
    box-shadow: var(--gda-shadow-md);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--gda-primary);
    border-color: var(--gda-primary);
    background-color: transparent;
}
.btn-outline-primary:hover {
    background-color: var(--gda-primary);
    border-color: var(--gda-primary);
    color: var(--gda-white);
    box-shadow: var(--gda-shadow-sm);
    transform: translateY(-1px);
}

/* Badges */
.badge {
    border-radius: var(--gda-radius-sm);
    font-weight: 700;
}

/* Cards & Containers */
.card {
    border-radius: var(--gda-radius-md);
    border: 1px solid var(--gda-border);
    box-shadow: var(--gda-shadow-sm);
}

/* Form Controls */
.form-control, .form-select {
    border-radius: var(--gda-radius-sm);
    border-color: var(--gda-border);
}
.form-control:focus, .form-select:focus {
    border-color: var(--gda-primary);
    box-shadow: 0 0 0 0.2rem rgba(1, 33, 105, 0.15);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: #f1f3f6;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}
.top-bar a { color: #555; }
.top-bar a:hover { color: var(--gda-primary); }

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.navbar {
    background-color: var(--gda-white);
    border-bottom: 4px solid var(--gda-primary);
    padding: 0.75rem 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand img { height: 55px; }
.navbar-brand-text {
    color: var(--gda-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    font-size: 1.12rem;
    text-transform: capitalize;
}
.navbar-brand-subtext {
    color: #777;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--gda-primary) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.85rem !important;
    text-transform: capitalize;
    position: relative;
    letter-spacing: 0.2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gda-primary) !important;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0.85rem;
    right: 0.85rem;
    height: 3px;
    background-color: var(--gda-gold);
    border-radius: var(--gda-radius-pill);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Navbar Language Switcher Pill (Right of News, Left of Hamburger) */
.nav-lang-switch {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3px 6px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
}
.nav-lang-btn {
    color: #64748b;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 14px;
    transition: all 0.2s ease;
}
.nav-lang-btn.active {
    background: var(--gda-primary);
    color: #ffffff !important;
    box-shadow: 0 1px 4px rgba(1, 33, 105, 0.25);
}
.nav-lang-btn:hover:not(.active) {
    color: var(--gda-primary);
}
.nav-lang-sep {
    color: #cbd5e1;
    font-size: 0.7rem;
    margin: 0 2px;
}

/* ==========================================================================
   MEGA MENU TOGGLE BUTTON (Solid Navy & Gold Icon)
   ========================================================================== */
.btn-mega-menu {
    background-color: var(--gda-primary) !important;
    color: var(--gda-white) !important;
    border: 1px solid var(--gda-primary) !important;
    border-radius: var(--gda-radius-sm);
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gda-shadow-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-mega-menu:hover,
.btn-mega-menu:focus,
.btn-mega-menu:active,
.btn-mega-menu.active {
    background-color: var(--gda-primary-dark) !important;
    color: var(--gda-gold) !important;
    border-color: var(--gda-primary-dark) !important;
    box-shadow: var(--gda-shadow-md);
}
.btn-mega-menu i {
    color: inherit !important;
}

/* ==========================================================================
   MEGA MENU SLIDE-DOWN PANEL (Dropdown Below Navbar)
   ========================================================================== */
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 4px solid var(--gda-primary);
    box-shadow: 0 16px 40px rgba(1, 33, 105, 0.15);
    z-index: 1030;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}
.mega-menu-dropdown.show {
    display: block;
    animation: slideDownMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-group-title {
    color: var(--gda-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0 !important;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-menu-links li {
    margin-bottom: 0;
}
.mega-menu-links a {
    display: block;
    color: #4a5568;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    font-weight: 400;
    transition: all 0.2s ease;
}
.mega-menu-links a:hover {
    color: var(--gda-primary);
    font-weight: 500;
    padding-left: 0.4rem;
}

/* Sub-Sub Menu Nested Dropdowns */
.sub-chevron {
    font-size: 0.65rem;
    color: var(--gda-primary);
    transition: transform 0.25s ease;
}
[aria-expanded="true"] .sub-chevron {
    transform: rotate(180deg);
}
.mega-sub-links {
    border-color: #cbd5e1 !important;
}
.mega-sub-links a {
    color: #64748b;
    font-size: 0.86rem;
    padding: 0.25rem 0;
}
.mega-sub-links a:hover {
    color: var(--gda-primary);
    padding-left: 0.35rem;
}

/* ==========================================================================
   HERO SLIDER (JUMBOTRON)
   ========================================================================== */
.hero-slider {
    position: relative;
    background-color: #000;
}
.hero-slider .carousel-item {
    height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Gradient Overlay variants */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-overlay.overlay-left {
    background: linear-gradient(
        90deg,
        rgba(0, 16, 64, 0.88) 0%,
        rgba(1, 33, 105, 0.55) 45%,
        rgba(0, 16, 64, 0.08) 100%
    );
}
.hero-overlay.overlay-right {
    background: linear-gradient(
        270deg,
        rgba(0, 16, 64, 0.88) 0%,
        rgba(1, 33, 105, 0.55) 45%,
        rgba(0, 16, 64, 0.08) 100%
    );
}
.hero-overlay.overlay-center {
    background: linear-gradient(
        180deg,
        rgba(1, 33, 105, 0.2) 0%,
        rgba(1, 33, 105, 0.45) 50%,
        rgba(0, 16, 64, 0.8) 100%
    );
}

/* Hero Content Box (Compact & Elegant) */
.hero-content {
    max-width: 520px;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 2;
}
.hero-content.text-start .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
}
.hero-content.text-end .hero-subtitle {
    margin-left: auto;
    margin-right: 0;
}
.hero-content.text-center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--gda-gold);
    color: var(--gda-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.25rem 0.85rem;
    border-radius: var(--gda-radius-pill);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.25rem, 2.1vw, 1.85rem);
    font-weight: 700;
    color: var(--gda-white);
    line-height: 1.28;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 0.95vw, 0.88rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 460px;
    margin-bottom: 1.25rem;
    line-height: 1.55;
    font-weight: 400;
}

.hero-btn {
    background-color: transparent;
    color: var(--gda-white);
    border: 2px solid var(--gda-gold);
    border-radius: var(--gda-radius-sm);
    padding: 0.45rem 1.25rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--gda-shadow-sm);
    transition: all 0.3s ease;
}
.hero-btn:hover {
    background-color: var(--gda-gold);
    color: var(--gda-dark);
    border-color: var(--gda-gold);
    box-shadow: var(--gda-shadow-md);
    transform: translateY(-2px);
}

.carousel-indicators [data-bs-target] {
    width: 35px;
    height: 4px;
    border-radius: var(--gda-radius-pill);
    background-color: rgba(255,255,255,0.4);
    border: none;
    transition: all 0.3s ease;
}
.carousel-indicators .active {
    background-color: var(--gda-gold);
    width: 48px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* ==========================================================================
   SECTION TITLE (WITH ROUNDED UNDERLINE)
   ========================================================================== */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.85rem;
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--gda-primary);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 4px;
    background-color: var(--gda-primary);
    border-radius: var(--gda-radius-pill);
}

/* ==========================================================================
   BERITA TERBARU (ITB STYLE 4-COLUMN CARDS WITH SHADOW)
   ========================================================================== */
.news-itb-card {
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
}
.news-itb-card:hover {
    box-shadow: var(--gda-shadow-md) !important;
    transform: translateY(-3px);
}

.news-itb-img-box {
    height: 180px;
    width: 100%;
    border-radius: var(--gda-radius-sm);
    overflow: hidden;
    background-color: #e2e8f0;
}

.news-itb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-itb-card:hover .news-itb-img {
    transform: scale(1.05);
}

.news-itb-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    min-height: 4.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-itb-title a {
    color: var(--gda-dark);
}
.news-itb-title a:hover {
    color: var(--gda-primary);
}

.news-itb-badge {
    background-color: var(--gda-gold);
    color: var(--gda-dark);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--gda-radius-sm);
    letter-spacing: 0.3px;
}

.news-itb-date {
    color: var(--gda-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==========================================================================
   KEUNGGULAN (COMPACT BOXES WITH MUTED BLUE/GREY TONES)
   ========================================================================== */
.highlight-compact-card {
    background-color: #eef4fb;
    border: 1px solid #d8e4f2;
    border-radius: var(--gda-radius-md);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(1, 33, 105, 0.05);
    transition: all 0.25s ease;
}
.highlight-compact-card:hover {
    background-color: #e2ecf9;
    border-color: #c4d6ee;
    box-shadow: var(--gda-shadow-md);
    transform: translateY(-3px);
}
.highlight-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--gda-radius-md);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(1, 33, 105, 0.08);
}
.highlight-card-title {
    color: var(--gda-primary);
    font-size: 1rem;
    line-height: 1.35;
}
.highlight-card-desc {
    line-height: 1.55;
}

/* ==========================================================================
   SEKILAS GDA (TYPOGRAPHY STATS - NO BOXES)
   ========================================================================== */
.glance-stat-item {
    transition: all 0.2s ease;
}
.glance-stat-item:hover {
    transform: translateY(-2px);
}
.glance-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gda-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.glance-label {
    font-size: 0.92rem;
    color: var(--gda-dark);
    letter-spacing: 0.8px;
}

/* ==========================================================================
   FOOTER (ITB STYLE - CLEAN WHITE/LIGHT COLUMNS)
   ========================================================================== */
.main-footer-itb {
    background-color: #ffffff;
    color: #4a5568;
}

.footer-itb-heading {
    color: var(--gda-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0 !important;
}
.footer-chevron {
    font-size: 0.75rem;
    color: var(--gda-primary);
    transition: transform 0.3s ease;
}
.footer-itb-heading[aria-expanded="true"] .footer-chevron {
    transform: rotate(180deg);
}

.footer-itb-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-itb-links li {
    margin-bottom: 0.55rem;
}
.footer-itb-links a {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.footer-itb-links a:hover {
    color: var(--gda-primary);
    font-weight: 600;
    padding-left: 0.25rem;
}

/* Circular Social Buttons */
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e8f1fa;
    color: var(--gda-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.footer-social-btn:hover {
    background-color: var(--gda-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 33, 105, 0.18);
}

/* Footer Pill Tags */
.footer-pill-tag {
    background-color: #e8f1fa;
    color: var(--gda-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: var(--gda-radius-pill);
    border: 1px solid #d0e2f5;
    transition: all 0.2s ease;
}
.footer-pill-tag:hover {
    background-color: var(--gda-primary);
    color: #ffffff;
    border-color: var(--gda-primary);
    transform: translateY(-1px);
}

/* Floating WA Button */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.floating-wa-btn:hover {
    background-color: #20ba5a;
    color: #ffffff;
    transform: scale(1.08) translateY(-2px);
}

/* ==========================================================================
   PAGE HERO BANNER & INNER CONTENT (CLEAN ITB STYLE)
   ========================================================================== */
.page-header-itb {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.page-breadcrumb-itb .breadcrumb-item {
    font-size: 0.88rem;
    color: #64748b;
}
.page-breadcrumb-itb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
}
.page-breadcrumb-itb .breadcrumb-item a:hover {
    color: var(--gda-primary);
}
.page-breadcrumb-itb .breadcrumb-item.active {
    color: #334155;
}
.page-title-itb {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #1e293b;
    font-size: 2.3rem;
    line-height: 1.25;
    margin-top: 0.25rem;
}

/* Side Navigation Card (Right Side Menu) */
.side-nav-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.4rem;
}
.side-nav-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--gda-primary);
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.side-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-nav-list li {
    margin-bottom: 0.35rem;
}
.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}
.side-nav-link:hover {
    background-color: #e2e8f0;
    color: var(--gda-primary);
    padding-left: 0.95rem;
}
.side-nav-link.active {
    background-color: var(--gda-primary);
    color: #ffffff !important;
    font-weight: 600;
}
.side-nav-sub-list {
    list-style: none;
    padding-left: 1rem;
    margin: 0.35rem 0 0.5rem 0.5rem;
    border-left: 2px solid #cbd5e1;
}
.side-nav-sub-link {
    display: block;
    padding: 0.35rem 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
}
.side-nav-sub-link:hover {
    color: var(--gda-primary);
    padding-left: 0.7rem;
}
.side-nav-sub-link.active {
    color: var(--gda-primary);
    font-weight: 600;
}

.about-video-box {
    box-shadow: 0 8px 30px rgba(1, 33, 105, 0.18);
    border: 1px solid rgba(1, 33, 105, 0.1);
}

.content-body h2, .content-body h3, .content-body h4 {
    color: var(--gda-primary);
    font-family: 'Merriweather', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.content-body p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.content-body ul, .content-body ol {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.content-body li {
    margin-bottom: 0.5rem;
}
.content-body blockquote {
    border-left: 4px solid var(--gda-gold);
    padding: 1rem 1.5rem;
    background-color: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #334155;
    margin: 1.5rem 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
    .side-nav-card,
    .side-nav-column {
        display: none !important;
    }
    .hero-slider .carousel-item {
        height: 440px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.92rem;
    }
    .news-itb-img-box {
        height: 160px;
    }
    .news-itb-title {
        min-height: auto;
    }
    .mega-menu-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 75vh;
        overflow-y: auto;
    }
    .footer-itb-heading {
        cursor: pointer;
        padding-top: 0.5rem;
        padding-bottom: 0.7rem;
        margin-bottom: 0.5rem;
    }
    .footer-col-item {
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img { height: 42px; }
    .navbar-brand-text {
        font-size: 0.88rem;
        line-height: 1.15;
    }
    .navbar-brand-subtext {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}
