/* ============================================
   GLOBAL ASSETS CAPITAL — Design System v4 (Global Standard)
   ============================================ */

:root {
    --accent:       #6CC091;
    --accent-dark:  #4DA872;
    --dark:         #0B0E11;
    --slate:        #4D5963;
    --light:        #F8FAF9;
    --white:        #FFFFFF;
    --border:       rgba(108, 192, 145, 0.12);
    --transition:   all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Text Variables */
    --text-primary:   #0B0E11;
    --text-secondary: #4D5963;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    overflow-x: hidden !important; 
    width: 100%; 
    position: relative;
}
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Spacer for Fixed Header */
.site-main {
    padding-top: 140px; /* Adjusted for consistency */
}

.page-header {
    background-color: var(--dark);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 120px 0 100px 0; /* Slightly taller, extremely premium */
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    
    /* Override text variables for dark background */
    --text-primary:   #FFFFFF !important;
    --text-secondary: rgba(255, 255, 255, 0.7) !important;
}

/* 70% opacity dark overlay as requested */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 14, 17, 0.70);
    z-index: 1;
    pointer-events: none;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(108, 192, 145, 0.08) 0%, transparent 70%);
    z-index: 2; /* Rendered above the black overlay for a subtle futuristic glow */
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 3; /* Rendered above all overlays */
}

.page-header .section-number {
    display: block;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.page-header .underline {
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.home-page .site-main {
    padding-top: 0 !important;
}

/* On homepage, we might want the hero to go under the header */
.hero-v3, .hero-slider-section {
    margin-top: 0 !important;
}

/* Engineering Grid Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 991px) { .container { padding: 0 30px; } }

.section-padding {
    padding: 140px 0;
}
@media (max-width: 991px) { .section-padding { padding: 80px 0; } }

/* Typography */
h1, h2, h3, h4 { text-transform: uppercase; letter-spacing: -0.02em; font-weight: 900; line-height: 1; }

.section-label {
    display: flex; align-items: center; gap: 15px;
    color: var(--accent); font-weight: 700; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 4px; margin-bottom: 2.5rem;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }

/* Header & Navigation Professional Engineering */
header#mainHeader {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    padding: 30px 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

header#mainHeader.scrolled {
    background: rgba(255, 255, 255, 0.85) !important; 
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 15px 0; 
    border-bottom: 1px solid rgba(108, 192, 145, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
}

header#mainHeader .nav-link {
    color: var(--slate) !important;
    font-weight: 700; font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 2.5px; 
    padding: 12px 22px !important;
    position: relative;
    transition: var(--transition);
}

/* Home-page Transparent State */
body.home-page header#mainHeader:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.9) !important;
}

header#mainHeader .nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 22px; right: 22px;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header#mainHeader .nav-link:hover::after {
    transform: scaleX(1); transform-origin: left;
}

header#mainHeader .nav-link:hover {
    color: var(--accent) !important;
}

header#mainHeader .logo {
    height: 110px !important; 
    width: auto !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
header#mainHeader.scrolled .logo {
    height: 75px !important;
}

/* Header CTA buttons */
.btn-header-vip {
    border: 1px solid var(--accent) !important;
    border-radius: 0 !important;
    color: var(--accent) !important;
    padding: 10px 25px !important;
    font-size: 0.7rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    background: transparent !important;
    margin-left: 10px;
}

.btn-header-vip:hover, 
.btn-header-vip:active,
.btn-header-vip:focus {
    background: var(--accent) !important;
    color: var(--white) !important; /* FORCE WHITE ON GREEN */
}

/* Specific fix for scrolled state overriding hover */
header#mainHeader.scrolled .btn-header-vip:hover {
    color: var(--white) !important;
}

body.home-page header#mainHeader:not(.scrolled) .btn-header-vip {
    border-color: rgba(255,255,255,0.3) !important;
    color: var(--white) !important;
}

/* Dropdown Architectural Overhaul */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

header#mainHeader .dropdown-menu {
    border: none;
    border-top: 4px solid var(--accent);
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    padding: 1.5rem;
    margin: 0;
    min-width: 280px;
    display: none;
    position: absolute;
    top: 90%; /* Closer to the link */
    left: 0;
    z-index: 999999 !important;
}

header#mainHeader .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px; /* Bridge the gap */
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

header#mainHeader .dropdown-item {
    font-weight: 700; font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--slate);
    padding: 12px 15px; border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

header#mainHeader .dropdown-item:last-child { border-bottom: none; }

header#mainHeader .dropdown-item:hover {
    background: var(--light); color: var(--accent);
    padding-left: 20px;
}

/* ============================================
   RECONSTRUCTED INDUSTRIAL MOBILE NAVIGATION (V5.0)
   ============================================ */

/* The Toggler (Burger) */
.custom-burger {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(11, 14, 17, 0.06) !important;
    border: 1px solid rgba(11, 14, 17, 0.12) !important;
    border-radius: 50% !important;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    transition: var(--transition);
}
.custom-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark) !important;
    transition: var(--transition);
}
.custom-burger:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}
.custom-burger:hover span {
    background: var(--white) !important;
}

/* Homepage Transparent Header Overrides */
body.home-page header#mainHeader:not(.scrolled) .custom-burger {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}
body.home-page header#mainHeader:not(.scrolled) .custom-burger span {
    background: var(--white) !important;
}

/* The Overlay */
.gac-mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(11, 14, 17, 0.99);
    backdrop-filter: blur(25px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gac-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay Content */
.gac-overlay-inner {
    width: 92%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}
.gac-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Links */
.gac-mobile-link {
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition);
}
.gac-mobile-link:hover {
    color: var(--accent) !important;
}

/* Dropdown */
.gac-mobile-dropdown {
    width: 100%;
}
.gac-dropdown-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
.gac-dropdown-links {
    height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two clean columns */
    gap: 8px 12px;
    width: 100%;
    padding: 0 10px;
}
.gac-mobile-dropdown.open .gac-dropdown-links {
    height: auto;
    padding: 12px 10px;
}
.gac-dropdown-links a {
    color: rgba(255,255,255,0.4) !important;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 0;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}
.gac-dropdown-links a:hover {
    color: var(--accent) !important;
}

/* Buttons */
.btn-mob {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px !important;
    font-size: 0.6rem !important;
    margin-top: 10px;
}
.btn-mob.accent {
    border-color: var(--accent);
    color: var(--accent) !important;
}

/* Close Button */
.close-custom-menu {
    position: absolute;
    top: 30px; right: 30px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 1200px) {
    .gac-mobile-overlay, .custom-burger {
        display: none !important;
    }
}

/* Hero Slider Section & Ken Burns Effect */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: var(--dark);
    overflow: hidden;
    z-index: 5;
}

.mainHeroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-v3-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    filter: grayscale(0.2);
    z-index: 1;
}

/* Ken Burns Animation */
.swiper-slide-active .hero-v3-bg {
    animation: kenburns 10s ease infinite alternate;
}

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-v3-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 2;
}

.hero-v3-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    padding-left: 50px;
}

/* Active State Content Animation */
.swiper-slide-active .hero-v3-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-v3-content h1, 
.hero-v3-content h1 *, 
.hero-v3-content p, 
.hero-v3-content p *,
.hero-v3-content .section-label,
.hero-v3-content .section-label * {
    color: #ffffff !important;
    text-shadow: 2px 2px 40px rgba(0,0,0,1) !important;
}

/* Swiper Navigation & Pagination */
.swiper-button-next, .swiper-button-prev {
    color: var(--accent) !important;
    width: 60px !important;
    height: 60px !important;
    border: 1px solid rgba(108,192,145,0.2);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent);
    color: var(--white) !important;
    border-color: var(--accent);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 40px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.2) !important;
    opacity: 1 !important;
    transition: var(--transition);
}
.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 60px !important;
}

@media (max-width: 991px) {
    .hero-v3 h1 { font-size: 3.5rem; }
    .hero-v3 p { font-size: 1.1rem; }
    .swiper-button-next, .swiper-button-prev { display: none !important; }
    .hero-v3-content { padding-left: 0 !important; }
}

.hero-coord {
    position: absolute; bottom: 40px; left: 60px; z-index: 20;
    font-family: monospace; font-size: 0.6rem; color: rgba(255,255,255,0.2); letter-spacing: 3px;
}
.hero-scroll {
    position: absolute; bottom: 40px; right: 60px; z-index: 20;
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    color: rgba(255,255,255,0.3); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 4px;
}
.hero-scroll span { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); }

/* Buttons */
.btn-master {
    display: inline-block; padding: 20px 45px; background: var(--accent);
    color: var(--white); font-weight: 900; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 3px; transition: var(--transition);
}
.btn-master:hover { background: var(--white); color: var(--accent); transform: translateY(-5px); }

.btn-ghost {
    display: inline-block; padding: 20px 45px; border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-weight: 900; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 3px; transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-5px); }

/* Heritage Stats Institutional Upgrade */
.heritage-stat {
    padding: 35px 25px;
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--dark); /* Switched to dark for premium feel */
    text-align: center;
}
.heritage-stat:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.heritage-stat h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}
.heritage-stat p {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .heritage-stat { padding: 25px 15px; }
    .heritage-stat h3 { font-size: 2rem; }
}

/* Sectors Grid */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.sector-module {
    position: relative; height: 500px; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 50px; overflow: hidden;
    border: 1px solid var(--border); background: var(--dark);
}
.sector-module-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.3; filter: grayscale(1); transition: var(--transition);
}
.sector-module:hover .sector-module-img { opacity: 0.6; filter: grayscale(0); transform: scale(1.1); }
.sector-code {
    position: absolute; top: 30px; right: 30px; font-size: 0.6rem;
    font-weight: 900; color: var(--accent); letter-spacing: 3px; z-index: 5;
}
.sector-module-content { position: relative; z-index: 5; color: var(--white); }
.sector-module h3 { font-size: 1.8rem; margin-bottom: 15px; }
.sector-module p { font-size: 0.9rem; opacity: 0.6; margin-bottom: 25px; max-width: 280px; }
.inner-content {
    padding: 80px 0 120px 0; /* Added bottom padding to prevent footer sticking */
}

.content-card {
    background: var(--white);
    padding: 5rem;
    border-radius: 0; 
    border: 1px solid var(--border);
    margin-bottom: 5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) { .content-card { padding: 3rem 2rem; margin-bottom: 3rem; } }
@media (max-width: 767px) { .content-card { padding: 2.5rem 1.5rem; } }

.institutional-image {
    width: 100%;
    border-radius: 0; /* Forced sharp architectural edges */
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border); /* Clean industrial frame */
    display: block;
}

.mono-text {
    font-family: 'Inter', monospace;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.7rem;
}

.text-muted {
    color: var(--slate);
    opacity: 0.6;
}

.institutional-image:hover {
    transform: translateY(-5px);
}

/* Methodology Step */
.method-step { padding: 60px; border-right: 1px solid var(--border); height: 100%; transition: var(--transition); }
@media (max-width: 991px) { .method-step { padding: 40px; border-right: none; border-bottom: 1px solid var(--border); } }
.method-step:hover { background: var(--light); }
.method-num { font-size: 5rem; font-weight: 900; color: var(--border); display: block; margin-bottom: 20px; }
@media (max-width: 767px) { .method-num { font-size: 3.5rem; } }

/* Insight Cards */
.insight-card {
    display: flex; gap: 30px; align-items: center; padding: 40px 0;
    border-bottom: 1px solid var(--border); transition: var(--transition); text-decoration: none;
}
.insight-card:hover { padding-left: 20px; border-color: var(--accent); }
.insight-card img { width: 130px; height: 130px; object-fit: cover; border-radius: 4px; }
.insight-card-tag { font-size: 0.6rem; color: var(--accent); font-weight: 900; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.insight-card h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }

/* Stat Panel */
.stat-panel { background: var(--dark); padding: 80px 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; }
@media (max-width: 991px) { .stat-panel { padding: 40px 20px; } }
.stat-item { padding: 40px; border: 1px solid rgba(255,255,255,0.1); text-align: center; }
@media (max-width: 767px) { .stat-item { padding: 30px 15px; } }
.stat-item h3 { font-size: 4rem; color: var(--white); margin-bottom: 10px; }
@media (max-width: 767px) { .stat-item h3 { font-size: 2.5rem; } }
.stat-item p { font-size: 0.65rem; color: var(--accent); font-weight: 700; letter-spacing: 3px; }

/* Institutional Stat Item V4 */
.stat-item-v4 {
    background: var(--dark);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    transition: var(--transition);
}
.stat-item-v4:hover {
    border-color: var(--accent);
    background: rgba(108, 192, 145, 0.05);
}
.stat-item-v4 h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}
.stat-item-v4 p {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

@media (max-width: 991px) {
    .stat-item-v4 { padding: 30px 10px; }
    .stat-item-v4 h3 { font-size: 2.2rem; }
    .stat-item-v4 p { font-size: 0.55rem; letter-spacing: 1px; }
}

@media (max-width: 1200px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) { 
    .sectors-grid { grid-template-columns: 1fr; } 
    .stat-panel { grid-template-columns: 1fr; } 
    .hero-v3 h1 { font-size: 4rem; }
    .hero-v3 p { font-size: 1rem; }
}
@media (max-width: 767px) {
    .hero-v3 h1 { font-size: 3rem; }
    .btn-master, .btn-ghost { padding: 15px 30px; font-size: 0.65rem; width: 100%; text-align: center; }
    header#mainHeader .logo { height: 85px !important; }
}

/* ====== FOOTER ====== */
footer#mainFooter {
    background: var(--dark);
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(108,192,145,0.1);
}

footer#mainFooter::after {
    content: 'GAC';
    position: absolute;
    bottom: -40px; right: -20px;
    font-size: 22vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    line-height: 0.8;
    letter-spacing: -0.05em;
    z-index: 0;
}

footer#mainFooter .container { position: relative; z-index: 1; }

footer#mainFooter h5 {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
}

footer#mainFooter p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 2;
    font-weight: 400;
}

footer#mainFooter ul li a {
    color: rgba(255,255,255,0.4) !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 3;
    transition: var(--transition);
    text-decoration: none;
}
footer#mainFooter ul li a:hover { 
    color: var(--accent) !important; 
    padding-left: 8px; 
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.footer-bottom a { color: inherit; transition: var(--transition); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 991px) {
    .container { padding: 0 30px; }
    footer#mainFooter { text-align: center; padding: 80px 0 40px; }
    footer#mainFooter h5 { margin-bottom: 1.5rem; }
    footer#mainFooter ul { padding: 0; margin-bottom: 3rem; }
    footer#mainFooter p { max-width: 400px; margin: 0 auto 2.5rem auto; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; margin-top: 60px; }
}

/* ============================================
   FINAL RESPONSIVE OVERRIDES (FORCE REFRESH)
   ============================================ */

.data-box {
    background: var(--light);
    padding: 1.8rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.data-box span {
    display: block;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.data-box div {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.multi-column {
    column-count: 2;
    column-gap: 4rem;
    column-rule: 1px solid var(--border);
}

.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* FORCE VERTICAL STACK ON TABLET & MOBILE */
@media (max-width: 1200px) {
    .multi-column {
        column-count: 1 !important;
    }
    .responsive-grid-2 {
        grid-template-columns: 1fr !important;
    }
    .data-box {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(11, 14, 17, 0.99) !important; /* Almost fully opaque */
        backdrop-filter: blur(15px);
        padding: 100px 30px 40px 30px;
    }
    
    header#mainHeader .nav-link {
        font-size: 1.1rem !important;
        letter-spacing: 2px;
        padding: 18px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    }

    .btn-close-menu {
        top: 30px;
        right: 30px;
        font-size: 2rem;
    }
}

/* Premium Dashboard Card Styling */
.dashboard-card {
    padding: 3rem !important;
}
.dashboard-card-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .dashboard-card {
        padding: 2.5rem 1.5rem !important;
    }
    .dashboard-card-header {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .dashboard-card {
        padding: 1.5rem 1rem !important;
    }
    .dashboard-card-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    /* Gracefully scale the circle icons on mobile screens */
    .dashboard-card-header > div:first-child {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
}
