/* ===========================================
   m-ARTHAMEDIA Theme Styles
   Based on Tailwind-inspired design system
   =========================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #334155;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background-color: #191970; color: #fff; }

/* --- Container --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* --- Utility Classes --- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.pointer-events-none { pointer-events: none; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }

/* --- Typography --- */
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

/* --- Colors --- */
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #64748b; }
.text-gray-600 { color: #475569; }
.text-primary-400 { color: #191970; }
.text-primary-500 { color: #191970; }
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f8fafc; }
.bg-gray-100 { background-color: #f1f5f9; }
.bg-primary-500 { background-color: #191970; }
.bg-secondary-500 { background-color: #0F172A; }
.border-gray-100 { border-color: #f1f5f9; }
.border-white { border-color: #fff; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: #191970;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(25,25,112,0.25);
}
.btn-primary:hover { background: #14145A; }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-white {
    background: #fff;
    color: #191970;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.btn-white:hover { background: #f8fafc; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* --- Section Padding --- */
.section { padding: 5rem 0; }
.section-dark { background: #0F172A; }
.section-gray { background: #f8fafc; }

/* ===========================================
   HEADER
   =========================================== */
.site-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}
@media (min-width: 1024px) { .site-header .container { height: 5rem; } }
.site-logo img, .site-logo .custom-logo { max-height: 3.5rem; width: auto; height: auto; }
.site-logo .custom-logo-link { display: inline-block; }

/* Desktop Nav */
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; align-items: center; gap: 2rem; } }
.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s ease;
}
.main-nav a:hover { color: #191970; }
.main-nav .btn { color: #fff; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 12rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
    padding: 0.75rem 0 0.5rem;
    animation: fadeIn 0.2s ease-out;
}
.nav-dropdown { padding-bottom: 0.75rem; margin-bottom: -0.75rem; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #475569;
}
.nav-dropdown-menu a:hover { color: #191970; background: #ECECFA; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}
.nav-dropdown-toggle svg { width: 0.875rem; height: 0.875rem; transition: transform 0.2s; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: inline-flex;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #475569;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle:hover { color: #191970; background: #f8fafc; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
.mobile-menu-toggle svg { width: 1.5rem; height: 1.5rem; }

/* Mobile Nav */
.mobile-nav {
    display: none;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 1rem; }
.mobile-nav-inner a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    border-radius: 0.5rem;
}
.mobile-nav-inner a:hover { color: #191970; background: #ECECFA; }
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
}
.mobile-submenu-toggle:hover { color: #191970; background: #ECECFA; }
.mobile-submenu { padding-left: 1rem; }
.mobile-submenu a { font-size: 0.875rem; color: #64748b; }
.mobile-nav .btn { display: block; text-align: center; margin-top: 0.5rem; }

@media (min-width: 1024px) {
    .menu-item-has-children { position: relative; }
    .menu-item-has-children .sub-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 12rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border: 1px solid #f1f5f9;
        padding: 0.75rem 0 0.5rem;
        z-index: 100;
    }
    .menu-item-has-children { padding-bottom: 0.75rem; margin-bottom: -0.75rem; }
    .menu-item-has-children:hover .sub-menu { display: block; }
    .menu-item-has-children .sub-menu a {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        color: #475569;
    }
    .menu-item-has-children .sub-menu a:hover { color: #191970; background: #ECECFA; }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #191970, #14145A);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 5rem; /* Offset for fixed header */
}
/* HUT RI ke-81 Kemerdekaan Preset */
.hero-hut-ri-81 {
    background: linear-gradient(135deg, #B91C1C, #991B1B, #7F1D1D);
}
.hero-hut-ri-81 .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.hero-hut-ri-81 .hero-badge svg {
    color: #FCD34D;
}
.hero-hut-ri-81 .hero-highlight {
    color: #FDE047 !important;
}
.hero-hut-ri-81 .hero-subtitle {
    color: #FEE2E2;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg-shapes .circle-1 {
    position: absolute; top: -10rem; right: -10rem;
    width: 24rem; height: 24rem; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.hero-bg-shapes .circle-2 {
    position: absolute; bottom: -5rem; left: -5rem;
    width: 20rem; height: 20rem; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.hero-bg-shapes .circle-3 {
    position: absolute; top: 50%; left: 33%;
    width: 16rem; height: 16rem; border-radius: 50%;
    background: rgba(245,158,11,0.1);
}
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; color: #fff; }
.hero-wave svg { display: block; width: 100%; }

.hero .container {
    position: relative;
    width: 100%;
    flex: 1 1 100%;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
@media (min-width: 1024px) {
    .hero .container {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
@media (min-width: 1024px) { .hero-content { flex-direction: row; gap: 4rem; } }

.hero-text { flex: 1; width: 100%; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge svg { width: 1rem; height: 1rem; color: #F59E0B; }
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #fff;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-title .hero-highlight { color: #F59E0B; display: block; }
.hero-title .hero-title-line { display: block; }
.hero-title .hero-brand { display: block; }
.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #C7C7EA;
    max-width: 42rem;
    line-height: 1.625;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 28rem;
    position: relative;
    user-select: none;
}
@media (min-width: 1024px) { .hero-image { max-width: 32rem; } }

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 22rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
}
@media (min-width: 640px) { .hero-slider-wrapper { height: 26rem; } }

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1.5rem;
}

/* Alpine Fade Transitions - Soft Blur Focus for All Slides */
.hero-fade-enter {
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 2s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 1.8s ease-out;
    will-change: opacity, transform, filter;
    z-index: 2;
}
.hero-fade-enter-start { 
    opacity: 0; 
    filter: blur(16px); 
    transform: scale(1.08); 
}
.hero-fade-enter-end { 
    opacity: 1; 
    filter: blur(0px); 
    transform: scale(1); 
}
.hero-fade-leave {
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.8s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 1.5s ease-in;
    will-change: opacity, transform, filter;
    z-index: 1;
}
.hero-fade-leave-start { 
    opacity: 1; 
    filter: blur(0px); 
    transform: scale(1); 
}
.hero-fade-leave-end { 
    opacity: 0; 
    filter: blur(12px); 
    transform: scale(0.96); 
}

/* Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
.hero-dot.active {
    width: 1.6rem;
    border-radius: 9999px;
    background: #F59E0B;
}

/* ===========================================
   STATS SECTION
   =========================================== */
.stats { padding: 5rem 0; background: #0F172A; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s;
}
.stat-card:hover { background: rgba(25,25,112,0.1); }
.stat-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.75rem;
    background: rgba(165,180,252,0.15);
    border: 1px solid rgba(165,180,252,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.stat-icon svg { width: 1.75rem; height: 1.75rem; color: #a5b4fc; }
.stat-number { font-size: 1.875rem; font-weight: 700; color: #fff; }
@media (min-width: 640px) { .stat-number { font-size: 2.25rem; } }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: #9ca3af; }

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-subtitle {
    color: #191970;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0F172A;
    margin-top: 0.5rem;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-desc {
    margin-top: 0.75rem;
    color: #64748b;
    max-width: 42rem;
}
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #191970;
    margin-top: 1rem;
}
.section-link:hover { color: #14145A; }
@media (min-width: 640px) { .section-link { margin-top: 0; } }

/* ===========================================
   CARDS GRID
   =========================================== */
.card-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.card-image {
    aspect-ratio: 16/9;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}
.card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-image .badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255,255,255,0.9);
    color: #191970;
}
.card-body { padding: 1.5rem; }
.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    transition: color 0.2s;
    line-height: 1.375;
}
.card:hover .card-title { color: #191970; }
.card-excerpt {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-meta {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
}
.card-meta .dot {
    width: 0.25rem; height: 0.25rem;
    border-radius: 50%;
    background: #d1d5db;
}

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    color: #64748b;
}

/* ===========================================
   WHY CHOOSE US
   =========================================== */
.why-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.3s;
}
.why-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.why-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.75rem;
    background: rgba(25,25,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.why-icon svg { width: 1.5rem; height: 1.5rem; color: #191970; }
.why-card h3 { font-size: 1.125rem; font-weight: 600; color: #0F172A; }
.why-card p { margin-top: 0.5rem; font-size: 0.875rem; color: #64748b; }

/* ===========================================
   CLIENTS / LOGO GRID
   =========================================== */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logo-grid { grid-template-columns: repeat(6, 1fr); } }
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}
.logo-item:hover { border-color: #e2e8f0; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.logo-item img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}
.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #191970, #14145A);
    padding: 5rem 0;
}
.cta-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-shapes .circle-1 {
    position: absolute; top: -10rem; right: -10rem;
    width: 24rem; height: 24rem; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-shapes .circle-2 {
    position: absolute; bottom: -5rem; left: -5rem;
    width: 20rem; height: 20rem; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-wave { position: absolute; top: 0; left: 0; width: 100%; color: #fff; }
.cta-wave svg { display: block; width: 100%; }
.cta-content { position: relative; text-align: center; }
.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
@media (min-width: 640px) { .cta-content h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-content h2 { font-size: 3rem; } }
.cta-content p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #C7C7EA;
    max-width: 42rem;
    margin-inline: auto;
}
@media (min-width: 640px) { .cta-content p { font-size: 1.25rem; } }
.cta-content .btn-wrap { margin-top: 2.5rem; }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: #0F172A;
    color: #d1d5db;
}
.footer-main { padding: 4rem 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col img, .footer-col .custom-logo { max-height: 3rem; width: auto; height: auto; margin-bottom: 1rem; }
.footer-col .custom-logo-link { display: inline-block; }
.footer-col p { font-size: 0.875rem; line-height: 1.625; color: #9ca3af; }
.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a {
    font-size: 0.875rem;
    color: #9ca3af;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.footer-contact svg {
    width: 1.25rem; height: 1.25rem;
    color: #191970;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.footer-contact span, .footer-contact a {
    font-size: 0.875rem;
    color: #9ca3af;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.875rem; color: #64748b; }

/* ===========================================
   PAGE HEADER
   =========================================== */
.page-header {
    background: linear-gradient(135deg, #191970, #14145A);
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff;
}
.page-header h1 { font-size: 2.25rem; font-weight: 700; }
@media (min-width: 640px) { .page-header h1 { font-size: 3rem; } }
.page-content { padding: 4rem 0; }
.page-content .container { max-width: 48rem; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content h3 { font-size: 1.25rem; font-weight: 600; color: #0F172A; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.page-content p { margin-bottom: 1rem; line-height: 1.75; color: #475569; }
.page-content ul, .page-content ol { margin-bottom: 1rem; padding-left: 1.5rem; color: #475569; }
.page-content ul li { list-style: disc; margin-bottom: 0.25rem; }

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-slide-down { animation: slideDown 0.3s ease-out; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1023px) {
    .hero { min-height: 70vh; }
    .hero-title { font-size: 2rem; }
    .hero-image { max-width: 24rem; margin: 0 auto; }
}
@media (max-width: 639px) {
    .hero { min-height: 60vh; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* ===========================================
   ABOUT HERO
   =========================================== */
.about-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #191970, #14145A);
    padding: 8rem 0 5rem;
    text-align: center;
}
.about-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.about-hero-bg .circle-1 {
    position: absolute; top: -10rem; right: -10rem;
    width: 24rem; height: 24rem; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.about-hero-bg .circle-2 {
    position: absolute; bottom: -5rem; left: -5rem;
    width: 20rem; height: 20rem; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.about-hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; color: #f8fafc; }
.about-hero-wave svg { display: block; width: 100%; }
.about-hero-content { position: relative; }
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.about-hero-badge svg { width: 1rem; height: 1rem; color: #F59E0B; }
.about-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.025em;
}
@media (min-width: 640px) { .about-hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .about-hero-title { font-size: 3.75rem; } }
.about-hero-desc {
    margin: 1rem auto 0;
    font-size: 1.125rem;
    color: #C7C7EA;
    max-width: 42rem;
    line-height: 1.625;
}
@media (min-width: 640px) { .about-hero-desc { font-size: 1.25rem; } }

/* ===========================================
   ABOUT STORY
   =========================================== */
.about-story-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .about-story-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-story-text .section-title { margin-top: 0.5rem; }
.section-header.about-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) {
    .section-header.about-header-center { flex-direction: column; align-items: center; justify-content: center; }
}
.section-header.about-header-center .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
.about-story-paragraphs { margin-top: 1.5rem; }
.about-story-paragraphs p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #475569;
}
.about-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(25,25,112,0.05);
    border: 1px solid rgba(25,25,112,0.1);
    transition: all 0.3s;
}
.about-stat-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.about-stat-number { font-size: 2.25rem; font-weight: 700; line-height: 1; }
@media (min-width: 640px) { .about-stat-number { font-size: 2.5rem; } }
.about-stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: #64748b; }

/* ===========================================
   ABOUT MISSION & VISION
   =========================================== */
.about-mission-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) { .about-mission-grid { grid-template-columns: 1fr 1fr; } }
.about-mission-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.about-mission-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
@media (min-width: 1024px) { .about-mission-card { padding: 2.5rem; } }
.about-mission-card-bg {
    position: absolute;
    top: 0; right: 0;
    width: 8rem; height: 8rem;
    background: rgba(25,25,112,0.05);
    border-bottom-left-radius: 100px;
    transition: background 0.3s;
}
.about-mission-card:hover .about-mission-card-bg { background: rgba(25,25,112,0.1); }
.about-mission-icon {
    position: relative;
    width: 3.5rem; height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.about-mission-icon svg { width: 1.75rem; height: 1.75rem; }
.about-mission-heading { font-size: 1.5rem; font-weight: 700; color: #0F172A; }
.about-mission-tagline { margin-top: 0.75rem; color: #475569; line-height: 1.625; }
.about-mission-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.625;
}
.about-mission-check { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; }

/* ===========================================
   ABOUT CHOOSE US
   =========================================== */
.about-choose-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 640px) { .about-choose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-choose-grid { grid-template-columns: repeat(4, 1fr); } }
.about-choose-card { text-align: center; }
.about-choose-icon {
    width: 4rem; height: 4rem;
    margin: 0 auto;
    border-radius: 1rem;
    background: rgba(25,25,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.about-choose-card:hover .about-choose-icon { background: #191970; }
.about-choose-icon svg { width: 2rem; height: 2rem; color: #191970; transition: color 0.3s; }
.about-choose-card:hover .about-choose-icon svg { color: #fff; }
.about-choose-card-title {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
}
.about-choose-card-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.625;
}

/* ===========================================
   ABOUT VALUES
   =========================================== */
.about-values-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 640px) { .about-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .about-values-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .about-values-grid { grid-template-columns: repeat(5, 1fr); } }
.about-values-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.3s;
}
.about-values-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.about-values-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.75rem;
    background: rgba(25,25,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.about-values-icon svg { width: 1.5rem; height: 1.5rem; color: #191970; }
.about-values-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
}
.about-values-card-desc {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.625;
}

/* ===========================================
   ABOUT CTA
   =========================================== */
.about-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    padding: 5rem 0;
}
.about-cta-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.about-cta-bg .circle-1 {
    position: absolute; top: -10rem; right: -10rem;
    width: 24rem; height: 24rem; border-radius: 50%;
    background: rgba(25,25,112,0.1);
}
.about-cta-bg .circle-2 {
    position: absolute; bottom: -5rem; left: -5rem;
    width: 20rem; height: 20rem; border-radius: 50%;
    background: rgba(25,25,112,0.1);
}
.about-cta-wave { position: absolute; top: 0; left: 0; width: 100%; color: #f8fafc; }
.about-cta-wave svg { display: block; width: 100%; }
.about-cta-content { position: relative; text-align: center; }
.about-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
@media (min-width: 640px) { .about-cta-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-cta-title { font-size: 3rem; } }
.about-cta-desc {
    margin: 1rem auto 0;
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 42rem;
    line-height: 1.625;
}
@media (min-width: 640px) { .about-cta-desc { font-size: 1.25rem; } }
.about-cta-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services-section { padding: 5rem 0; }
.services-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.services-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.services-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.services-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(25,25,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
    flex-shrink: 0;
}
.services-card:hover .services-icon { background: #191970; }
.services-icon svg { width: 2rem; height: 2rem; color: #191970; transition: color 0.3s; }
.services-card:hover .services-icon svg { color: #fff; }
.services-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}
.services-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.625;
    margin-bottom: 1rem;
}
.services-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}
.services-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
}
.services-points-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #191970;
}
.services-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #191970;
    transition: color 0.2s;
}
.services-card:hover .services-card-link { color: #14145A; }

/* ===========================================
   SPONSOR BENEFITS
   =========================================== */
.sponsor-benefits-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) { .sponsor-benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.sponsor-benefit-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: box-shadow 0.3s;
}
.sponsor-benefit-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.sponsor-benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto;
    border-radius: 1rem;
    background: rgba(25,25,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}
.sponsor-benefit-card:hover .sponsor-benefit-icon { background: #191970; }
.sponsor-benefit-icon svg { width: 1.75rem; height: 1.75rem; color: #191970; transition: color 0.3s; }
.sponsor-benefit-card:hover .sponsor-benefit-icon svg { color: #fff; }
.sponsor-benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.75rem;
}
.sponsor-benefit-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.625;
}

/* ===========================================
   SPONSOR TIERS
   =========================================== */
.sponsor-tiers-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) { .sponsor-tiers-grid { grid-template-columns: repeat(4, 1fr); } }
.sponsor-tier-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.3s;
}
.sponsor-tier-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.sponsor-tier-accent { height: 0.5rem; }
.sponsor-tier-accent-platinum { background: #7C3AED; }
.sponsor-tier-accent-gold { background: #F59E0B; }
.sponsor-tier-accent-silver { background: #94A3B8; }
.sponsor-tier-accent-bronze { background: #D97706; }
.sponsor-tier-body { padding: 2rem; background: #fff; text-align: center; }
.sponsor-tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
}
.sponsor-tier-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border-radius: 9999px;
}

/* ===========================================
   SPONSOR INQUIRY FORM
   =========================================== */
.sponsor-inquiry .section-header { margin-bottom: 2rem; }
.sponsor-form {
    max-width: 48rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
}
@media (min-width: 768px) { .sponsor-form { padding: 2.5rem; } }
.sponsor-form-row {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 640px) { .sponsor-form-row { grid-template-columns: 1fr 1fr; } }
.sponsor-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
}
.sponsor-form-row .sponsor-form-group { margin-bottom: 0; }
.sponsor-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
}
.sponsor-form-required { color: #DC2626; }
.sponsor-form-input,
.sponsor-form-select,
.sponsor-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.sponsor-form-input:focus,
.sponsor-form-select:focus,
.sponsor-form-textarea:focus {
    outline: none;
    border-color: #191970;
    box-shadow: 0 0 0 3px rgba(25,25,112,0.1);
}
.sponsor-form-textarea { resize: vertical; min-height: 8rem; }
.sponsor-form-submit { margin-top: 1rem; }
.sponsor-form-submit .btn { width: 100%; justify-content: center; }
@media (min-width: 640px) { .sponsor-form-submit .btn { width: auto; } }

/* ===========================================
   PARTNER NETWORK
   =========================================== */
.partner-network { background: #fff; }
.partner-network-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 640px) { .partner-network-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .partner-network-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 639px) { .partner-network-grid { grid-template-columns: 1fr; } }
.partner-network-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.partner-network-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.partner-network-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(25,25,112,0.08);
    color: #191970;
}
.partner-network-icon svg { width: 1.5rem; height: 1.5rem; }
.partner-network-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
}
.partner-network-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748b;
}

/* ===========================================
   PARTNER BENEFITS
   =========================================== */
.partner-benefits .section-header { margin-bottom: 2rem; }
.partner-benefits-box {
    max-width: 42rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2.5rem;
}
@media (min-width: 768px) { .partner-benefits-box { padding: 3rem; } }
.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.partner-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
}
.partner-benefit-check {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #DCFCE7;
    color: #16A34A;
}
.partner-benefit-check svg { width: 1rem; height: 1rem; }

/* ===========================================
   PARTNER REGISTRATION
   =========================================== */
.partner-registration .section-header { margin-bottom: 2rem; }
.partner-registration .sponsor-form { max-width: 48rem; }

/* ===========================================
   CONTACT
   =========================================== */
.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: rgba(25,25,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-icon svg { width: 1.25rem; height: 1.25rem; color: #191970; }
.contact-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-info-value {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    display: block;
}
.contact-info-value:hover { color: #191970; }
.contact-form-wrap .sponsor-form { max-width: 100%; margin: 0; }

/* ===========================================
   BLOG
   =========================================== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.blog-filter-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
}
.blog-filter-link:hover { color: #191970; border-color: #191970; }
.blog-filter-link.active { background: #191970; color: #fff; border-color: #191970; }
.card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #191970;
    text-decoration: none;
    transition: color 0.2s;
}
.card-read-more:hover { color: #14145A; }
.blog-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    padding: 5rem 0;
}
.blog-cta .about-cta-content { position: relative; text-align: center; }

/* ===========================================
   EVENTS ARCHIVE
   =========================================== */
.events-archive-hero {
    position: relative;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}
.events-archive-hero .single-event-hero-title { margin-bottom: 1rem; }
.events-archive-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}
@media (min-width: 768px) {
    .events-archive-hero-desc { font-size: 1.125rem; }
}
.events-filter-bar {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 5rem;
    z-index: 40;
}
.events-filter-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.events-filter-inner::-webkit-scrollbar { display: none; }
.events-filter-btn {
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    background: #f8fafc;
    border-radius: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.events-filter-btn:hover { background: #ECECFA; color: #191970; }
.events-filter-btn.active {
    background: #191970;
    color: #fff;
    box-shadow: 0 4px 12px rgba(25,25,112,0.25);
}
.events-archive-body {
    background: #f8fafc;
    padding: 3rem 0 5rem;
}
.events-archive-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.events-archive-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.events-archive-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #C7C7EA;
}
.events-archive-card-inner {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .events-archive-card-inner { flex-direction: row; }
}
.events-archive-thumb {
    width: 100%;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .events-archive-thumb { width: 18rem; }
}
.events-archive-thumb img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}
@media (min-width: 768px) {
    .events-archive-thumb img { height: 100%; }
}
.events-archive-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, #191970, #14145A);
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .events-archive-date {
        flex-direction: column;
        width: 8rem;
        padding: 1.5rem 0.75rem;
    }
}
.events-archive-date-day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}
.events-archive-date-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}
.events-archive-date-year {
    font-size: 0.6875rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1;
}
@media (min-width: 768px) {
    .events-archive-date-day { font-size: 2rem; }
    .events-archive-date-month { font-size: 0.8125rem; margin-top: 0.125rem; }
    .events-archive-date-year { font-size: 0.75rem; margin-top: 0.125rem; }
}
.events-archive-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .events-archive-content { padding: 2rem; }
}
.events-archive-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.625rem;
}
.events-archive-badge {
    display: inline-flex;
    padding: 0.1875rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #191970;
    background: #ECECFA;
    border-radius: 0.5rem;
}
.events-archive-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .events-archive-title { font-size: 1.25rem; }
}
.events-archive-title a { color: inherit; text-decoration: none; }
.events-archive-title a:hover { color: #191970; }
.events-archive-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}
.events-archive-location svg { flex-shrink: 0; width: 0.875rem; height: 0.875rem; }
.events-archive-excerpt {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.625;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.events-archive-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.events-archive-client {
    font-size: 0.75rem;
    color: #94a3b8;
}
.events-archive-client strong { color: #64748b; font-weight: 600; }
.events-archive-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #191970;
    text-decoration: none;
    transition: color 0.2s;
}
.events-archive-link:hover { color: #14145A; }
.events-archive-link svg { transition: transform 0.2s; }
.events-archive-link:hover svg { transform: translateX(2px); }
.events-pagination {
    margin-top: 3rem;
    text-align: center;
}
.events-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem 0.75rem;
    margin: 0 0.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}
.events-pagination .page-numbers:hover { color: #191970; border-color: #191970; }
.events-pagination .page-numbers.current { background: #191970; color: #fff; border-color: #191970; }
.events-pagination .page-numbers.prev,
.events-pagination .page-numbers.next { min-width: auto; }

/* ===========================================
   TRAINING ARCHIVE (umkmall style)
   =========================================== */
.training-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #191970, #14145A, #101047); padding: 4rem 0 3rem; }
.training-section { background: #f8fafc; padding: 2rem 0 5rem; }

.training-filter-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}
.training-filter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .training-filter-form { flex-direction: row; align-items: center; }
}
.training-search-wrap {
    position: relative;
    flex: 1;
}
.training-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 0.875rem;
    color: #0F172A;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 9999px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}
.training-search-input:focus { border-color: #191970; }
.training-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.training-filter-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.training-filter-label {
    font-size: 0.8125rem;
    color: #64748b;
    white-space: nowrap;
}
.training-filter-select {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: #0F172A;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 9999px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s;
}
.training-filter-select:focus { border-color: #191970; }
.training-count {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) { .training-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .training-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .training-grid { grid-template-columns: repeat(4, 1fr); } }

.training-card-link { display: block; text-decoration: none; }
.training-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.training-card:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.training-card-thumb {
    position: relative;
    aspect-ratio: 25/18;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.training-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.training-card-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #cbd5e1;
}
.training-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.training-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.training-card-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #191970;
    background: #ECECFA;
    border-radius: 9999px;
}
.training-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.375;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.training-card-excerpt {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.training-card-footer { margin-top: auto; padding-top: 0.5rem; }
.training-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #191970;
    background: #fff;
    border: 2px solid #191970;
    border-radius: 9999px;
    transition: all 0.2s;
}
.training-card:hover .training-card-btn { background: #191970; color: #fff; }

.training-empty {
    text-align: center;
    padding: 4rem 1rem;
}
.training-empty svg { width: 4rem; height: 4rem; color: #cbd5e1; margin: 0 auto 1rem; }
.training-empty h3 { font-size: 1.125rem; font-weight: 600; color: #0F172A; margin-bottom: 0.5rem; }
.training-empty p { font-size: 0.875rem; color: #64748b; }

/* ===========================================
   SINGLE TRAINING DETAIL
   =========================================== */
.single-training-breadcrumb {
    background: #0B1622;
    padding: 1.5rem 0;
}
.single-training-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}
.single-training-breadcrumb-nav a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.single-training-breadcrumb-nav a:hover { color: #fff; }
.single-training-breadcrumb-nav svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.single-training-breadcrumb-nav span { color: rgba(255,255,255,0.4); }

.single-training-hero {
    background: #0B1622;
    padding: 2rem 0 3rem;
}
.single-training-hero-thumb-mobile {
    display: block;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .single-training-hero-thumb-mobile { display: none; } }
.single-training-hero-thumb-mobile img { width: 100%; height: 100%; object-fit: cover; }
.single-training-hero-content { max-width: 60%; }
@media (max-width: 1023px) { .single-training-hero-content { max-width: 100%; } }
.single-training-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .single-training-hero-title { font-size: 2.25rem; } }
.single-training-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}
.single-training-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.single-training-hero-instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
}
.single-training-hero-instructor img { width: 2rem; height: 2rem; border-radius: 9999px; object-fit: cover; }
.single-training-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
}
.single-training-hero-stat svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.single-training-hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.single-training-hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: #1CC68E;
    border-radius: 9999px;
}

.single-training-main { position: relative; }
.single-training-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .single-training-layout { flex-direction: row; gap: 2.5rem; }
}
.single-training-content {
    flex: 1;
    padding: 2rem 0 4rem;
}
@media (min-width: 1024px) {
    .single-training-content { max-width: calc(100% - 420px); }
}
.single-training-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { .single-training-card { padding: 2rem; } }
.single-training-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .single-training-card-title { font-size: 1.5rem; } }
.single-training-card-text {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.75;
}
.single-training-card-text p { margin-bottom: 1rem; }
.single-training-card-text p:last-child { margin-bottom: 0; }
.single-training-card-text ul { margin: 0.5rem 0 1rem 1.25rem; list-style: disc; }
.single-training-card-text li { margin-bottom: 0.25rem; }
.single-training-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.single-training-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}
.single-training-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #ECECFA;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #191970;
}
.single-training-stat-icon svg { width: 1.25rem; height: 1.25rem; }
.single-training-stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}
.single-training-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}
.single-training-coach {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.single-training-coach img {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
}
.single-training-coach h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.25rem;
}
.single-training-coach p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}
.webinar-speaker-linkedin {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0A66C2;
    text-decoration: none;
    gap: 0.25rem;
    transition: opacity 0.2s;
}
.webinar-speaker-linkedin:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.single-training-sidebar {
    display: none;
}
@media (min-width: 1024px) {
    .single-training-sidebar {
        display: block;
        width: 380px;
        flex-shrink: 0;
        margin-top: -12rem;
    }
}
.single-training-sidebar-sticky {
    position: sticky;
    top: 6rem;
    z-index: 20;
}
.single-training-sidebar-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 80px -15px rgba(0,0,0,0.2);
}
.single-training-sidebar-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.single-training-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-training-sidebar-body { padding: 1.25rem; }
.single-training-sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: #191970;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s;
}
.single-training-sidebar-btn:hover { background: #14145A; }

.single-training-mobile-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    padding: 1rem;
    z-index: 50;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}
@media (min-width: 1024px) { .single-training-mobile-bar { display: none; } }
.single-training-mobile-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: #191970;
    border-radius: 9999px;
    text-decoration: none;
}
.single-training-mobile-spacer { height: 5rem; }
@media (min-width: 1024px) { .single-training-mobile-spacer { display: none; } }

/* ===========================================
   SINGLE TRAINING — NEW SECTIONS
   =========================================== */
.single-training-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) { .single-training-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.single-training-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}
.single-training-check-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #94a3b8;
}
.single-training-check-item span {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}
.single-training-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.single-training-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #191970;
    background: #ECECFA;
    border-radius: 9999px;
}
.single-training-curriculum {
    display: flex;
    flex-direction: column;
}
.single-training-chapter {
    border-bottom: 1px solid #f1f5f9;
}
.single-training-chapter:first-child { border-top: 1px solid #f1f5f9; }
.single-training-chapter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    transition: background 0.2s;
}
.single-training-chapter-header:hover { background: #fafafa; margin: 0 -1rem; padding: 1rem; border-radius: 0.5rem; }
.single-training-chapter-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.single-training-chapter-num {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #ECECFA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #191970;
    flex-shrink: 0;
}
.single-training-chapter-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
}
.single-training-chapter-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.125rem;
}
.single-training-chapter-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.single-training-coach-title {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}
.single-training-related {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) { .single-training-related { grid-template-columns: repeat(3, 1fr); } }
.single-training-related-card {
    display: block;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.single-training-related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-color: #C7C7EA; }
.single-training-related-thumb { aspect-ratio: 16/9; overflow: hidden; }
.single-training-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-training-related-body { padding: 0.75rem 1rem 1rem; }
.single-training-related-body h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.375;
    margin-bottom: 0.375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.single-training-related-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #191970;
}
.single-training-sidebar-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.single-training-sidebar-stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}
.single-training-sidebar-stat-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0F172A;
}
.single-training-sidebar-stat-label {
    display: block;
    font-size: 0.6875rem;
    color: #94a3b8;
    margin-top: 0.125rem;
}

/* ===========================================
   WEBINAR ARCHIVE
   =========================================== */
.webinar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .webinar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .webinar-grid { grid-template-columns: repeat(3, 1fr); } }
.webinar-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.webinar-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #C7C7EA;
}
.webinar-card-thumb {
    position: relative;
    height: 12rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    overflow: hidden;
}
.webinar-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.webinar-card-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #cbd5e1;
}
.webinar-card-date {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    text-align: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.webinar-card-date-month {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    color: #191970;
    text-transform: uppercase;
    line-height: 1.2;
}
.webinar-card-date-day {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.1;
}
.webinar-card-status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
}
.webinar-card-status.past {
    background: rgba(100,116,139,0.85);
    color: #fff;
}
.webinar-card-status.upcoming {
    background: rgba(34,197,94,0.85);
    color: #fff;
}
.webinar-card-body { padding: 1.25rem; }
.webinar-thumb-zoom {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.webinar-thumb-zoom:hover { background: rgba(0,0,0,0.7); }

/* Webinar Image Modal */
.webinar-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.webinar-modal-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.webinar-modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.webinar-modal-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto;
}
.webinar-card-category {
    display: inline-block;
    padding: 0.1875rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #191970;
    background: #ECECFA;
    border-radius: 0.5rem;
    margin-bottom: 0.625rem;
}
.webinar-card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.webinar-card-title a { color: inherit; text-decoration: none; }
.webinar-card-title a:hover { color: #191970; }
.webinar-card-speaker {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}
.webinar-card-speaker-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, #ECECFA, #D8D8F2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.webinar-card-speaker-avatar span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #191970;
}
.webinar-card-speaker-name {
    font-size: 0.8125rem;
    color: #64748b;
}
.webinar-card-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}
.webinar-card-time svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
.webinar-card-excerpt {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.625;
    margin-bottom: 1rem;
}
.webinar-card-footer { padding-top: 1rem; border-top: 1px solid #f1f5f9; }
.webinar-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}
.webinar-card-btn.primary {
    background: #191970;
    color: #fff;
}
.webinar-card-btn.primary:hover { background: #14145A; }
.webinar-card-btn.secondary {
    background: #f1f5f9;
    color: #64748b;
}
.webinar-card-btn.secondary:hover { background: #e2e8f0; }
.webinar-card-price {
    padding: 0 1.25rem 0.5rem;
}
.webinar-card-price-amount {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1E3A5F;
}
.webinar-card-price-free {
    display: inline-flex;
    padding: 0.15rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: #10B981;
    border-radius: 0.25rem;
}
.single-training-sidebar-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: #475569;
}
.webinar-hero {
    background: linear-gradient(135deg, #191970 0%, #14145A 50%, #101047 100%) !important;
}

/* ===========================================
   SINGLE EVENT DETAIL
   =========================================== */
.single-event-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #191970, #14145A, #101047);
    padding: 4rem 0 3rem;
}
.single-event-hero-bg {
    position: absolute; inset: 0; opacity: 0.1;
    background-image: 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.4'%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");
}
.single-event-hero-inner {
    position: relative;
    max-width: 48rem;
}
.single-event-hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.single-event-hero-badge + .single-event-hero-badge { margin-left: 0.5rem; }
.single-event-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
    .single-event-hero-title { font-size: 3rem; }
}
.single-event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.single-event-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}
.single-event-hero-date svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.single-event-body {
    background: #f8fafc;
    padding: 3rem 0 5rem;
}
.single-event-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}
.single-event-back:hover { color: #191970; }
.single-event-back svg { width: 1rem; height: 1rem; }
.single-event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 992px) {
    .single-event-grid { grid-template-columns: 2fr 1fr; gap: 3rem; }
}
.single-event-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.single-event-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.single-event-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
}
.single-event-card-content {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.75;
}
.single-event-card-content p { margin-bottom: 1rem; }
.single-event-card-content p:last-child { margin-bottom: 0; }
.single-event-card-content img { max-width: 100%; height: auto; border-radius: 0.75rem; margin: 1rem 0; }

.single-event-sidebar-sticky { position: sticky; top: 6rem; }
.single-event-sidebar-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.single-event-sidebar-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.single-event-sidebar-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}
.single-event-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.single-event-sidebar-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #ECECFA;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #191970;
}
.single-event-sidebar-icon svg { width: 1.25rem; height: 1.25rem; }
.single-event-sidebar-sub-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.125rem;
}
.single-event-sidebar-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
}
.single-event-sidebar-gallery {
    border-top: 1px solid #f1f5f9;
    padding: 1.5rem;
}
.single-event-sidebar-gallery .single-event-sidebar-label { margin-bottom: 0.75rem; }
.single-event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.single-event-gallery-item {
    display: block;
    aspect-ratio: 1;
    background: #f1f5f9;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: opacity 0.2s;
}
.single-event-gallery-item:hover { opacity: 0.8; }
.single-event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   COMMENTS
   =========================================== */
.single-event-comments-section .comments-wrap { max-width: 100%; }
.comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
}
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list ol { list-style: none; margin: 0 0 0 1.5rem; padding: 0; }
.comment { padding: 1rem 0; }
.comment + .comment { border-top: 1px solid #f1f5f9; }
.comment-body {
    display: flex;
    gap: 0.75rem;
}
.comment-author .avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    object-fit: cover;
}
.comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.comment-author .fn { font-size: 0.875rem; font-weight: 600; color: #0F172A; font-style: normal; }
.comment-author .says { display: none; }
.comment-metadata { font-size: 0.75rem; color: #94a3b8; }
.comment-metadata a { color: #94a3b8; text-decoration: none; }
.comment-metadata a:hover { color: #191970; }
.comment-body p { font-size: 0.875rem; color: #475569; line-height: 1.625; margin-top: 0.25rem; }
.reply { margin-top: 0.5rem; }
.comment-reply-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #191970;
    text-decoration: none;
}
.comment-reply-link:hover { color: #14145A; }
.comments-closed { font-size: 0.875rem; color: #94a3b8; margin-top: 1rem; }

/* Comment form */
#respond { margin-top: 2rem; }
#reply-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}
#cancel-comment-reply-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: #191970;
    text-decoration: none;
    margin-left: 0.5rem;
}
.comment-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.25rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: #0F172A;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: border-color 0.2s;
    font-family: inherit;
}
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #191970;
    outline: none;
    box-shadow: 0 0 0 3px rgba(25,25,112,0.1);
}
.comment-form textarea { resize: vertical; min-height: 7rem; }
.comment-form .form-submit { margin-top: 1rem; }
.comment-form .submit {
    display: inline-flex;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #191970;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.comment-form .submit:hover { background: #14145A; }
.comment-notes { font-size: 0.8125rem; color: #94a3b8; margin-bottom: 1rem; }
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0;
}
.comment-form-cookies-consent label { margin: 0; font-size: 0.8125rem; color: #64748b; }
.comment-form-cookies-consent input[type="checkbox"] { width: 1rem; height: 1rem; }

/* =====================
   Training Hero Price
   ===================== */
.single-training-hero-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.single-training-hero-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: #EF4444;
    border-radius: 0.25rem;
    line-height: 1.3;
}
.single-training-hero-original-price {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    text-decoration: line-through;
}
.single-training-hero-current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* =====================
   Training Sidebar Price
   ===================== */
.single-training-sidebar-price {
    padding: 1rem 1.25rem 0;
    text-align: center;
}
.single-training-sidebar-original-price {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}
.single-training-sidebar-current-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A5F;
}

/* =====================
   Training Archive Card Price
   ===================== */
.training-card-footer { padding: 0 1.25rem 1.25rem; }
.training-card-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.training-card-discount {
    display: inline-flex;
    padding: 0.15rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    background: #EF4444;
    border-radius: 0.25rem;
}
.training-card-original {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.training-card-current {
    font-size: 1rem;
    font-weight: 700;
    color: #1E3A5F;
}

/* =====================
   Footer Social Icons
   ===================== */
.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #1e293b;
    color: #94a3b8;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social-icon:hover {
    background: #191970;
    color: #fff;
}
.footer-social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* =====================
   Form Success Message
   ===================== */
.form-success-msg {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* --- Primary Color Override: Midnight Blue --- */
:root {
    --brand-primary: #191970;
    --brand-primary-mid: #1F2288;
    --brand-primary-dark: #14145A;
    --brand-primary-darker: #101047;
    --brand-primary-rgb: 25, 25, 112;
    --brand-primary-soft: #ECECFA;
    --brand-primary-soft-2: #D8D8F2;
    --brand-primary-soft-3: #B7B9E6;
    --brand-primary-muted: #C7C7EA;
    --brand-primary-border: rgba(25, 25, 112, 0.16);
    --brand-primary-glow: rgba(25, 25, 112, 0.32);
}

::selection,
.bg-primary-500,
.btn-primary,
.blog-filter-link.active,
.events-filter-btn.active,
.events-pagination .page-numbers.current,
.single-training-sidebar-btn,
.webinar-card-btn.primary,
.comment-form .submit,
.contact-submit-btn,
.footer-social-icon:hover {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-mid));
}

.btn-primary:hover,
.single-training-sidebar-btn:hover,
.webinar-card-btn.primary:hover,
.comment-form .submit:hover {
    background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary-darker));
}

.text-primary-400,
.text-primary-500,
.btn-white,
.main-nav a:hover,
.nav-dropdown-menu a:hover,
.mobile-menu-toggle:hover,
.mobile-nav-inner a:hover,
.mobile-submenu-toggle:hover,
.menu-item-has-children .sub-menu a:hover,
.section-link,
.card-badge,
.card:hover .card-title,
.why-icon svg,
.footer-contact svg,
.about-choose-card:hover .about-choose-icon svg,
.about-choose-icon svg,
.about-values-icon svg,
.services-card:hover .services-icon svg,
.services-icon svg,
.sponsor-benefit-card:hover .sponsor-benefit-icon svg,
.sponsor-benefit-icon svg,
.contact-info-icon svg,
.contact-info-value:hover,
.blog-filter-link:hover,
.card-read-more,
.events-filter-btn:hover,
.events-archive-title a:hover,
.events-archive-link,
.events-pagination .page-numbers:hover,
.training-card-btn,
.training-meta-badge,
.single-training-meta-value a,
.single-training-related-title a:hover,
.webinar-card-category,
.webinar-card-title a:hover,
.single-event-back:hover,
.comment-metadata a:hover,
.comment-reply-link {
    color: var(--brand-primary);
}

/* Stat icon svg warna terang agar terlihat di dark background */
.stat-icon svg {
    color: #a5b4fc;
}

.nav-dropdown-menu a:hover,
.mobile-nav-inner a:hover,
.mobile-submenu-toggle:hover,
.menu-item-has-children .sub-menu a:hover,
.events-filter-btn:hover,
.events-archive-category,
.training-meta-badge,
.webinar-card-category,
.single-event-detail-icon {
    background: var(--brand-primary-soft);
    border-color: var(--brand-primary-border);
}

.hero,
.cta-section,
.page-hero,
.events-hero,
.training-hero,
.webinar-hero {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-mid), var(--brand-primary-dark));
}

.training-hero,
.webinar-hero {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-mid), var(--brand-primary-darker));
}

.hero-subtitle,
.cta-text p,
.page-hero-subtitle,
.about-hero-subtitle {
    color: var(--brand-primary-muted);
}

.stat-card:hover,
.about-mission-card:hover .about-mission-card-bg,
.about-choose-card:hover .about-choose-icon,
.services-card:hover .services-icon,
.sponsor-benefit-card:hover .sponsor-benefit-icon {
    background-color: rgba(var(--brand-primary-rgb), 0.12);
}

.stat-icon {
    background: rgba(165, 180, 252, 0.15);
    border: 1px solid rgba(165, 180, 252, 0.25);
}

.btn-primary,
.events-filter-btn.active {
    box-shadow: 0 12px 24px -10px var(--brand-primary-glow);
}

.events-filter-btn.active {
    box-shadow: 0 8px 18px -8px var(--brand-primary-glow);
}

.contact-form-input:focus,
.contact-form textarea:focus,
.training-search-input:focus,
.training-filter-select:focus,
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.1);
}

.blog-filter-link:hover,
.blog-filter-link.active,
.events-pagination .page-numbers:hover,
.events-pagination .page-numbers.current,
.training-card-btn {
    border-color: var(--brand-primary);
}

.events-archive-card:hover,
.single-training-related-card:hover {
    border-color: var(--brand-primary-soft-2);
}

.btn-white,
.training-card-btn,
.blog-filter-link,
.events-filter-btn,
.events-pagination .page-numbers,
.events-archive-category,
.training-meta-badge,
.webinar-card-category,
.single-event-detail-icon,
.single-training-tag,
.single-training-chapter-num {
    transition: all 0.25s ease;
}

.btn-white {
    color: var(--brand-primary);
    border: 1px solid rgba(255,255,255,0.65);
}

.btn-white:hover {
    background: #fff;
    color: var(--brand-primary-dark);
    box-shadow: 0 10px 24px -12px rgba(0,0,0,0.22);
}

.blog-filter-link.active,
.events-filter-btn.active,
.events-pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-mid));
}

.training-card-btn:hover,
.events-pagination .page-numbers:hover,
.blog-filter-link:hover {
    box-shadow: 0 10px 20px -14px var(--brand-primary-glow);
}

.events-archive-category,
.training-meta-badge,
.webinar-card-category,
.single-event-detail-icon,
.single-training-tag,
.single-training-chapter-num {
    box-shadow: inset 0 0 0 1px var(--brand-primary-border);
}

.hero-badge,
.about-hero-badge,
.single-event-hero-badge {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.35);
}

.hero-title .hero-highlight,
.about-hero-badge svg,
.hero-badge svg {
    text-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

/* ===========================================
   OUR PORTFOLIO TABLE
   =========================================== */
.portfolio-table-section {
    padding: 2.5rem 0 5rem;
    background: #f8fafc;
}
.portfolio-table-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}
.portfolio-table-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}
.portfolio-table-count {
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 500;
}
.portfolio-table-count strong {
    color: #0F172A;
}
.portfolio-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.portfolio-search-input {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 220px;
    background: #fff;
    color: #0F172A;
}
.portfolio-search-input:focus {
    border-color: #191970;
    box-shadow: 0 0 0 3px rgba(25, 25, 112, 0.1);
}
.portfolio-search-btn {
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #191970;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.portfolio-search-btn:hover {
    background: #14145A;
}
.portfolio-search-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}
.portfolio-search-reset:hover {
    background: #e2e8f0;
    color: #0F172A;
}

.portfolio-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9375rem;
}
.portfolio-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}
.portfolio-table th.col-no {
    width: 60px;
    text-align: center;
}
.portfolio-table th.col-title {
    min-width: 280px;
}
.portfolio-table th.col-client {
    min-width: 220px;
}
.portfolio-table th.col-year {
    width: 160px;
    text-align: center;
}

.portfolio-table td {
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.portfolio-table tbody tr {
    transition: background-color 0.15s ease;
}
.portfolio-table tbody tr:hover {
    background-color: #f8fafc;
}
.portfolio-table tbody tr:last-child td {
    border-bottom: none;
}
.portfolio-table td.col-no {
    text-align: center;
    font-weight: 600;
    color: #94a3b8;
    font-size: 0.875rem;
}
.portfolio-table td.col-title {
    font-weight: 600;
    color: #0F172A;
}
.portfolio-table td.col-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}
.portfolio-table td.col-title a:hover {
    color: #191970;
    text-decoration: underline;
}
.portfolio-table td.col-client {
    color: #475569;
    font-weight: 500;
}
.portfolio-table td.col-year {
    text-align: center;
}
.portfolio-table .year-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: #ECECFA;
    color: #191970;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
}
.portfolio-empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    color: #64748b;
    font-size: 0.9375rem;
}

@media (max-width: 640px) {
    .portfolio-table-header {
        flex-direction: column;
        align-items: stretch;
    }
    .portfolio-search-form {
        width: 100%;
    }
    .portfolio-search-input {
        flex: 1;
        min-width: 0;
    }
}

