:root {
    --primary-color: #0D2B6B;
    --primary-dark: #091E4A;
    --secondary-color: #FFFFFF;
    --accent-color: #0D2B6B;
    --text-color: #000000;
    --text-light: #1a1a1a;
    --bg-light: rgba(13, 43, 107, 0.06);
    --border-color: rgba(13, 43, 107, 0.15);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(13, 43, 107, 0.12);
    --glass-blur: 15px;
    --glass-shadow: 0 8px 32px rgba(13, 43, 107, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, #EAF0FB 0%, #FFFFFF 45%, #F0F4FF 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Header - Refined & Integrated */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(13, 43, 107, 0.12);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(13, 43, 107, 0.10);
}

.logo-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-title {
    display: flex;
    flex-direction: column;
}

.site-title h1 {
    font-size: 18px;
    color: #0D2B6B;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    line-height: 1;
}

.site-title span {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 3px;
    font-weight: 500;
}

.main-nav .nav-links {
    display: flex;
    gap: 28px;
}

.nav-links li a {
    font-weight: 700;
    font-size: 13.5px;
    color: #0D2B6B;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 8px 0;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    z-index: 2002;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary-color);
    position: absolute;
    left: 4px;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 16px;
    width: 16px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 24px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 24px;
}

/* Hero Section */
.hero {
    height: 75vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 40px;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.2px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #0D2B6B;
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #0D2B6B;
    border-radius: 50px;
}

/* Mission */
.mission-section {
    background: var(--bg-light);
    text-align: center;
}

.mission-text {
    font-size: 24px;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    color: #000;
    line-height: 1.9;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(13, 43, 107, 0.12);
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 4px 24px rgba(13, 43, 107, 0.08);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 45px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.25);
    background: rgba(255, 255, 255, 0.5);
}

.card h3 {
    margin-bottom: 20px;
    color: #0D2B6B;
    font-size: 23px;
    font-weight: 800;
}

/* News Cards */
.news-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.news-card:hover {
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.25);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.5);
}

.news-img {
    height: 230px;
    background: #eee;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-badge {
    display: inline-block;
    background: #0D2B6B;
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title {
    font-size: 21px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.4;
    color: #0D2B6B;
}

.news-excerpt {
    font-size: 15px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Stats */
.stats-section {
    background: rgba(9, 30, 74, 0.88);
    backdrop-filter: blur(10px);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 52px;
    color: #FFFFFF;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-item p {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Contact Page Styles - RESTORED & IMPROVED */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #0D2B6B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
    color: #000;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Footer */
.site-footer {
    background: rgba(9, 30, 74, 0.94);
    backdrop-filter: blur(15px);
    color: #ccc;
    padding: 100px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 70px;
    margin-bottom: 70px;
}

.footer-brand h3 {
    color: #fff;
    margin: 25px 0 15px;
    font-size: 26px;
    font-weight: 800;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #bbb;
    transition: var(--transition);
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: block;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
    border-bottom-color: var(--primary-color);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    text-align: center;
    font-size: 14px;
    color: #888;
    letter-spacing: 0.5px;
}

/* Glass Social Buttons */
.social-links-centered {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-btn.x-twitter:hover { background: #000000; border-color: #000000; color: #fff; }
.social-btn.linkedin:hover { background: #0077B5; border-color: #0077B5; color: #fff; }
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; }
.social-btn.youtube:hover { background: #FF0000; border-color: #FF0000; color: #fff; }

.footer-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #ccc;
    font-size: 14px;
}

.footer-contact-info span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.footer-contact-info span i {
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h2 {
        font-size: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

/* Mobile Sidebar & Overlay - PREMIUM DESIGN */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #0D2B6B;
    background: linear-gradient(180deg, #0D2B6B 0%, #091E4A 100%);
    z-index: 2001;
    box-shadow: -15px 0 50px rgba(9, 30, 74, 0.6);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 35px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.close-sidebar {
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: var(--transition);
}

.close-sidebar:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar-links {
    padding: 45px 0;
    flex-grow: 1;
    overflow-y: auto;
}

.sidebar-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: 0.5s ease;
}

.mobile-sidebar.active .sidebar-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-sidebar.active .sidebar-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-sidebar.active .sidebar-links li:nth-child(2) {
    transition-delay: 0.18s;
}

.mobile-sidebar.active .sidebar-links li:nth-child(3) {
    transition-delay: 0.26s;
}

.mobile-sidebar.active .sidebar-links li:nth-child(4) {
    transition-delay: 0.34s;
}

.mobile-sidebar.active .sidebar-links li:nth-child(5) {
    transition-delay: 0.42s;
}

.mobile-sidebar.active .sidebar-links li:nth-child(6) {
    transition-delay: 0.5s;
}

.sidebar-links li a {
    display: block;
    padding: 16px 35px;
    font-size: 19px;
    font-weight: 700;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-left: 5px solid transparent;
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--primary-color);
    padding-left: 45px;
}

.sidebar-footer {
    padding: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.sidebar-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   New Header & Mobile Nav Styles (Glassmorphism)
   ========================================================================== */

/* Gradient text for logo */
.gradient-text {
    background: linear-gradient(135deg, #0D2B6B 0%, #1a56c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulsing glow animation for logo */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(13, 43, 107, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(13, 43, 107, 0.6); }
}

.logo-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Nav link hover effect */
.nav-link {
    position: relative;
    padding: 8px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0D2B6B, #1a56c4);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu transitions */
.mobile-menu-container {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-panel {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop blur for main content when menu is open */
.content-blur {
    transition: filter 0.3s ease;
}

.content-blur.active {
    filter: blur(4px);
}

/* Glass morphism effect for nav items */
.glass-nav-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.glass-nav-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateX(4px);
}

/* Icon box glass effect */
.glass-icon {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-nav-item:hover .glass-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Support Button specifically for mobile menu */
.mobile-support-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-support-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

/* Tailwind utility bridge - for the new header structure */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.z-40 { z-index: 40; }
.z-50 { z-index: 5000; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.translate-x-full { transform: translateX(100%); }
.translate-x-0 { transform: translateX(0); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-white { color: #fff; }
.text-gray-700 { color: #374151; }
.leading-tight { line-height: 1.25; }
.pt-20 { padding-top: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.max-w-sm { max-width: 24rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.pointer-events-none { pointer-events: none; }

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
}
