/* ==========================================================================
   AMATEUR KARATE ASSOCIATION - PREMIUM STYLESHEET
   ========================================================================== */

:root {
    /* Colors */
    --primary-blue: #034292;
    --primary-blue-hover: #023373;
    --dark-navy: #0A1C3E;
    --dark-navy-rgb: 10, 28, 62;
    --accent-gold: #FCB131;
    --brand-saffron: #FF8F1C;
    --brand-green: #108605;
    --brand-red: #E53E3E;
    --brand-red-hover: #C53030;
    --text-dark: #111111;
    --text-gray: #666666;
    --text-light: #E0E0E0;
    --bg-white: #FFFFFF;
    --bg-gray: #F8F9FA;
    --border-color: #E5E7EB;
    --border-light: #EAEAEA;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    
    /* Typography */
    --font-primary: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions & Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(229, 62, 62, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   BASE & OVERFLOW PREVENTIONS
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* ABSOLUTE PREVENTOR FOR HORIZONTAL SCROLLING */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden; /* Lock scroll when mobile drawer is open */
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* Typography & Headings (Fluid Scaling via breakpoints) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark-navy);
}

.section-title {
    font-size: 2rem; /* 32px */
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

/* ==========================================================================
   BUTTONS & TAP TARGETS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 48px; /* Touch target minimum */
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(3, 66, 146, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 66, 146, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-event-register {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: 6px;
    width: 100%;
}

.btn-event-register:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION (UPDATED PREMIUM SPORTS FEDERATION STYLING)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

/* Transparent Header Over Hero/Banner */
.site-header.transparent-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header.transparent-header .logo-title {
    color: var(--bg-white);
}

.site-header.transparent-header .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.site-header.transparent-header .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
}

.site-header.transparent-header .search-toggle {
    color: rgba(255, 255, 255, 0.9);
}

.site-header.transparent-header .social-icon {
    color: rgba(255, 255, 255, 0.9);
}

.site-header.transparent-header .mobile-nav-toggle span {
    background-color: var(--bg-white);
}

/* Scrolled Header (Solid White) */
.site-header.scrolled {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 80px; /* Compress slightly on scroll */
}

.site-header.scrolled .logo-title {
    color: var(--dark-navy);
}

.site-header.scrolled .logo-subtitle {
    color: var(--text-gray);
}

.site-header.scrolled .nav-menu a {
    color: var(--dark-navy);
}

.site-header.scrolled .search-toggle {
    color: var(--dark-navy);
}

.site-header.scrolled .social-icon {
    color: var(--dark-navy);
}

.site-header.scrolled .mobile-nav-toggle span {
    background-color: var(--dark-navy);
}

/* Common Header Elements */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    height: 58px;
    width: auto;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
    height: 50px;
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
    transition: var(--transition-smooth);
}

/* Center Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-red) !important;
}

/* Active Highlight / Underline Effect */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand-red);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-drawer-utilities {
    display: none;
}

/* Right Side Actions Group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: var(--transition-smooth);
}

.search-toggle:hover {
    color: var(--brand-red) !important;
    transform: scale(1.1);
}

.icon-search {
    width: 22px;
    height: 22px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.site-header.scrolled .social-icon {
    background-color: rgba(0, 0, 0, 0.04);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    background-color: var(--brand-red) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

/* Rounded Primary CTA Button */
.btn-get-in-touch {
    background-color: var(--brand-red) !important;
    color: var(--bg-white) !important;
    border-radius: 30px; /* Fully rounded */
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    transition: var(--transition-smooth);
    min-height: 42px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-get-in-touch:hover {
    background-color: var(--brand-red-hover) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.45);
}

/* ==========================================================================
   PREMIUM SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 28, 62, 0.98); /* Brand deep navy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-smooth);
}

.search-close svg {
    width: 32px;
    height: 32px;
}

.search-close:hover {
    color: var(--brand-red);
    transform: rotate(90deg);
}

.search-overlay-content {
    width: 100%;
    max-width: 650px;
    padding: 0 24px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
    transition: var(--transition-smooth);
}

.search-form:focus-within {
    border-color: var(--brand-red);
}

.search-input {
    width: 100%;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.75rem;
    font-weight: 600;
    outline: none;
    padding-right: 50px;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-submit-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-smooth);
}

.search-submit-btn svg {
    width: 28px;
    height: 28px;
}

.search-submit-btn:hover {
    color: var(--brand-red);
    transform: scale(1.1);
}

/* PREMIUM CSS HAMBURGER TRIGGER BUTTON */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 32px;
    height: 24px;
    z-index: 1001; /* Keep above drawer */
}

.mobile-nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--dark-navy);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-nav-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-nav-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-nav-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-nav-toggle.is-active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
    background-color: var(--bg-white) !important;
}

.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
    background-color: var(--bg-white) !important;
}

/* ==========================================================================
   SUBPAGE HEADER BANNERS
   ========================================================================== */
.page-banner {
    position: relative;
    height: 300px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(11, 27, 61, 0.95) 0%,
        rgba(11, 27, 61, 0.7) 100%
    );
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.banner-breadcrumbs {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-breadcrumbs a {
    color: var(--bg-white);
    text-decoration: none;
    margin-right: 6px;
    transition: var(--transition-smooth);
}

.banner-breadcrumbs a:hover {
    color: var(--accent-gold);
}

.banner-breadcrumbs span {
    margin-right: 6px;
    opacity: 0.6;
}

/* ==========================================================================
   1. HOME PAGE SPECIFIC STYLES
   ========================================================================== */
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 650px;
    height: 75vh;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(11, 27, 61, 0.96) 0%,
        rgba(11, 27, 61, 0.85) 45%,
        rgba(11, 27, 61, 0.2) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--bg-white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Stats Section */
.stats-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-container {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 48px;
    border: 1px solid var(--border-color);
}

.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-color);
}

.stat-icon-wrapper {
    margin-bottom: 12px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 36px;
    height: 36px;
    stroke-width: 1.8px;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Programs Section */
.programs-section {
    background-color: var(--bg-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 44px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(3, 66, 146, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.program-icon-box svg {
    width: 32px;
    height: 32px;
}

.program-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(3, 66, 146, 0.2);
}

.program-card:hover .program-icon-box {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

/* Events Section (Home) */
.events-section {
    background-color: var(--bg-gray);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.view-all-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.view-all-link:hover {
    color: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.event-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--dark-navy);
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.event-card:hover .event-image-wrapper img {
    transform: scale(1.08);
}

.event-body {
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-grow: 1;
}

.event-date-col {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    padding-right: 16px;
    display: flex;
    flex-direction: column;
}

.event-day {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: 4px;
}

.event-year {
    font-size: 0.7rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.event-details-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.location-pin {
    width: 14px;
    height: 14px;
    color: var(--text-gray);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Success Stories (Home) */
.success-section {
    background-color: var(--bg-white);
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.testimonial-slider-container {
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    min-height: 380px;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.testimonial-content-col {
    width: 55%;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon-box {
    color: rgba(3, 66, 146, 0.15);
    margin-bottom: 24px;
}

.quote-icon-box svg {
    width: 44px;
    height: 44px;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 32px;
    display: none;
    font-weight: 500;
}

.testimonial-quote.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-blue);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.testimonial-image-col {
    width: 45%;
    background-color: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.testimonial-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-slider-container:hover .testimonial-image-col img {
    transform: scale(1.03);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E0E0E0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.25);
    width: 24px;
    border-radius: 6px;
}

/* Partners (Home) */
.partners-section {
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 80px 0;
}

.partners-row-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.partner-logo-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    max-width: 180px;
    transition: var(--transition-smooth);
}

.partner-svg {
    max-height: 50px;
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.partner-logo-item:hover .partner-svg {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chevron-divider {
    width: 12px;
    height: 24px;
}

/* ==========================================================================
   2. ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */
.about-mission-section {
    background-color: var(--bg-white);
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-info-block {
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.about-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.about-info-block p {
    color: var(--text-gray);
}

.objectives-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
}

.objectives-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-visual-display {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.about-visual-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Leadership Team Grid */
.leadership-section {
    background-color: var(--bg-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.leader-card {
    background-color: var(--bg-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.leader-photo-box {
    position: relative;
    height: 280px;
    background-color: #E2E8F0;
    overflow: hidden;
}

.leader-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.leader-card:hover .leader-photo-box img {
    transform: scale(1.05);
}

.leader-info-box {
    padding: 24px 20px;
}

.leader-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.leader-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Our Journey Timeline */
.journey-section {
    background-color: var(--bg-white);
}

.timeline-path {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-between;
}

.timeline-path::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-node {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.timeline-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--bg-white);
    border: 4px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.timeline-icon-box svg {
    width: 24px;
    height: 24px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.5;
}

.timeline-node:hover .timeline-icon-box {
    border-color: var(--primary-blue);
    color: var(--bg-white);
    background-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(3, 66, 146, 0.3);
}

/* ==========================================================================
   3. EVENTS PAGE SPECIFIC STYLES
   ========================================================================== */
.events-list-section {
    background-color: var(--bg-white);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 44px; /* Touch target */
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(3, 66, 146, 0.2);
}

.event-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
}

.event-list-item {
    display: flex;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.event-list-item.hidden {
    display: none;
}

.event-list-date {
    background-color: var(--dark-navy);
    color: var(--bg-white);
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.event-list-day {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.event-list-my {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

.event-list-content {
    flex-grow: 1;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.event-list-info {
    max-width: 600px;
}

.event-list-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.event-list-meta {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
}

.event-list-action {
    flex-shrink: 0;
}

.event-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(3, 66, 146, 0.15);
}

/* Event Calendar Display block */
.calendar-block-section {
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
}

.calendar-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.calendar-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 36px;
    border: 1px solid var(--border-color);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.calendar-month-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.calendar-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.calendar-nav-btn:hover {
    background-color: var(--bg-gray);
    color: var(--primary-blue);
}

.calendar-nav-btn svg {
    width: 20px;
    height: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    padding: 10px 0;
}

.calendar-cell {
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: default;
    color: var(--text-dark);
}

.calendar-cell.muted {
    color: #CBD5E1;
}

.calendar-cell.has-event {
    background-color: rgba(3, 66, 146, 0.08);
    color: var(--primary-blue);
    font-weight: 800;
    border: 1px solid rgba(3, 66, 146, 0.2);
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calendar-cell.has-event:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.calendar-cell.active-event {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(3, 66, 146, 0.3);
}

.event-details-sidebar {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 36px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-navy);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.sidebar-event-card {
    background-color: var(--bg-gray);
    border-radius: 10px;
    padding: 18px;
    border-left: 4px solid var(--primary-blue);
}

.sidebar-event-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sidebar-event-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.sidebar-event-location {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ==========================================================================
   4. GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.champions-section {
    background-color: var(--bg-white);
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.champion-card {
    background-color: var(--bg-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.champion-photo-box {
    height: 280px;
    background-color: #E2E8F0;
    overflow: hidden;
    position: relative;
}

.champion-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.champion-card:hover .champion-photo-box img {
    transform: scale(1.06);
}

.champion-medal-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--accent-gold);
}

.champion-medal-badge svg {
    width: 22px;
    height: 22px;
}

.champion-info-box {
    padding: 20px;
}

.champion-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.champion-achievement {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
}

.champion-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 6px;
    display: block;
}

.champion-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Photo Gallery Block */
.photo-gallery-section {
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1.33;
    background-color: var(--dark-navy);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 66, 146, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
    color: var(--bg-white);
}

.gallery-zoom-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.gallery-zoom-icon svg {
    width: 20px;
    height: 20px;
}

.gallery-item-title {
    font-size: 1rem;
    font-weight: 700;
}

.gallery-item-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-top: 4px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Video Highlights Section */
.video-highlights-section {
    background-color: var(--bg-white);
}

.video-split-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

.featured-video-container {
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 1.77;
    width: 100%;
}

.video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(3, 66, 146, 0.5);
    transition: var(--transition-smooth);
    color: var(--bg-white);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-play-btn:hover {
    background-color: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(252, 177, 49, 0.5);
}

.video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--bg-white);
}

.video-info-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 6px;
}

.video-info-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

.video-playlist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.playlist-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: var(--bg-white);
}

.playlist-thumb {
    width: 100px;
    aspect-ratio: 1.5;
    background-color: var(--dark-navy);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-thumb-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 66, 146, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.playlist-thumb-play svg {
    width: 18px;
    height: 18px;
}

.playlist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.playlist-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 4px;
}

.playlist-card-duration {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.playlist-card:hover,
.playlist-card.active {
    border-color: var(--primary-blue);
    background-color: rgba(3, 66, 146, 0.02);
}

/* ==========================================================================
   5. CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-split-section {
    background-color: var(--bg-white);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background-color: rgba(3, 66, 146, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 20px;
    height: 20px;
}

.contact-row-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.contact-row-info p,
.contact-row-info a {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: none;
}

.contact-row-info a:hover {
    color: var(--primary-blue);
}

.contact-form-panel {
    background-color: var(--bg-white);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(3, 66, 146, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-submit-row {
    grid-column: span 2;
    margin-top: 10px;
}

.form-submit-row .btn {
    width: 100%;
}

/* Map Display container */
.map-section {
    padding: 0;
    background-color: var(--bg-gray);
}

.map-container {
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-marker-pin {
    color: #EE334E;
    animation: bounce 2s infinite;
    margin-bottom: 12px;
}

.map-marker-pin svg {
    width: 44px;
    height: 44px;
}

.map-card-info {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.map-card-info h4 {
    font-size: 0.9rem;
    color: var(--dark-navy);
}

.map-card-info p {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* FAQs Accordion */
.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--bg-white);
}

.faq-header {
    padding: 20px 24px;
    background-color: var(--bg-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.faq-header:hover {
    color: var(--primary-blue);
    background-color: rgba(3, 66, 146, 0.01);
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.faq-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header {
    color: var(--primary-blue);
    border-bottom: 1px solid var(--border-light);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-item.active .faq-body {
    padding: 20px 24px;
    max-height: 220px;
    border-top-color: var(--border-light);
}

/* Follow Us block */
.follow-us-section {
    background-color: var(--bg-gray);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.follow-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-navy);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(3, 66, 146, 0.25);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: var(--dark-navy);
    color: var(--bg-gray);
    padding: 60px 0 40px 0;
    border-top: 4px solid var(--primary-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--bg-white);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
}

.footer-logo-text {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--bg-white);
    text-transform: uppercase;
    line-height: 1.2;
}

.footer-brand-desc {
    font-size: 0.8rem;
    color: #A0AEC0;
}

.footer-social-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-gray);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    color: #A0AEC0;
}

.footer-contact-info span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-info svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-desc {
    font-size: 0.8rem;
    color: #A0AEC0;
}

.newsletter-input-group {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px 0 0 6px;
    color: var(--bg-white);
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-primary);
}

.newsletter-input:focus {
    border-color: var(--primary-blue);
}

.newsletter-submit {
    background-color: var(--primary-blue);
    border: none;
    color: var(--bg-white);
    padding: 0 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit svg {
    width: 16px;
    height: 16px;
}

.newsletter-submit:hover {
    background-color: var(--primary-blue-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #A0AEC0;
}

.footer-bottom-links a {
    color: #A0AEC0;
    text-decoration: none;
    margin-left: 16px;
}

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

/* ==========================================================================
   TABLET RESPONSIVE VIEWPORT BREAKPOINT (768px - 1023px)
   ========================================================================== */
@media (max-width: 1023px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stats-container {
        padding: 28px 24px;
        margin-top: -50px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .events-grid .event-card:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .testimonial-wrapper {
        flex-direction: column;
    }
    
    .testimonial-content-col {
        width: 100%;
        padding: 40px;
    }
    
    .testimonial-image-col {
        width: 100%;
        height: 300px;
    }
    
    .partners-row-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    
    .partner-divider {
        display: none;
    }
    
    .partner-logo-item {
        flex: 0 0 calc(33.33% - 16px);
        max-width: 150px;
    }
    
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual-display {
        height: 360px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Premium Timeline Stack for Tablet/Mobile */
    .timeline-path {
        flex-direction: column;
        gap: 40px;
        max-width: 500px;
        margin: 40px auto 0 auto;
    }
    
    .timeline-path::before {
        left: 30px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
    }
    
    .timeline-node {
        position: relative;
        padding-left: 80px;
        text-align: left;
        min-height: 64px;
    }
    
    .timeline-icon-box {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
    
    .timeline-year {
        font-size: 1.3rem;
        margin-bottom: 4px;
        text-align: left;
    }
    
    .timeline-title {
        font-size: 0.95rem;
        margin-bottom: 4px;
        text-align: left;
    }
    
    .timeline-desc {
        font-size: 0.85rem;
        max-width: 100%;
        margin: 0;
        text-align: left;
    }
    
    .calendar-split-layout {
        grid-template-columns: 1fr;
    }
    
    .champions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-split-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE VIEWPORT BREAKPOINT (320px - 767px)
   ========================================================================== */
@media (max-width: 767px) {
    /* Tighten general section spacing & containers */
    section {
        padding: 45px 0;
    }
    
    .container {
        padding: 0 16px;
    }

    .site-header {
        height: 70px;
    }
    
    .site-header.scrolled {
        height: 65px;
    }
    
    /* Refine logo layout on mobile header */
    .logo-link {
        gap: 8px;
    }
    
    .logo-img {
        height: 44px;
    }
    
    .site-header.scrolled .logo-img {
        height: 38px;
    }
    
    .logo-title {
        font-size: 0.95rem;
        line-height: 1.1;
        letter-spacing: -0.3px;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1px;
        margin-top: 1px;
    }
    
    /* ANIMATED HAMBURGER MENU DRAWER OVERLAY */
    .mobile-nav-toggle {
        display: block; /* Show hamburger button */
        margin-right: -4px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Drawer slide out from right */
        width: 280px;
        height: 100vh;
        background-color: rgba(10, 28, 62, 0.98); /* Deep navy background drawer */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
        padding: 95px 24px 30px 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        z-index: 999;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.open {
        right: 0; /* Slide in drawer */
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 1.15rem;
        color: var(--bg-white) !important; /* High contrast white text in drawer */
        display: block;
        padding: 6px 0;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--accent-gold) !important;
    }
    
    .nav-menu a::after {
        background-color: var(--accent-gold); /* Gold active underline in drawer */
    }
    
    .header-cta {
        display: none !important; /* Hide desktop CTA */
    }
    
    /* Show mobile CTA inside drawer */
    .nav-menu .mobile-drawer-utilities {
        display: flex;
        flex-direction: column;
        margin-top: auto;
        padding-top: 40px;
        gap: 24px;
    }
    
    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 16px;
    }
    
    .mobile-socials .social-icon {
        color: rgba(255, 255, 255, 0.8) !important;
        background-color: rgba(255, 255, 255, 0.08) !important;
        width: 40px;
        height: 40px;
    }
    
    .mobile-socials .social-icon:hover {
        background-color: var(--brand-red) !important;
        color: var(--bg-white) !important;
    }
    
    .nav-menu .header-cta-mobile {
        display: block;
        width: 100%;
    }
    
    .nav-menu .header-cta-mobile .btn-get-in-touch {
        width: 100%;
        background-color: var(--brand-red) !important;
        color: var(--bg-white) !important;
        box-shadow: 0 4px 14px rgba(229, 62, 62, 0.3);
    }
    
    /* Header Actions on Mobile Header Row */
    .header-actions {
        gap: 12px;
    }
    
    .header-actions .header-socials {
        display: none !important; /* Hide socials from mobile header row */
    }
    
    .header-actions .header-cta {
        display: block !important; /* Show small CTA on mobile header row */
    }
    
    .header-actions .header-cta .btn-get-in-touch {
        padding: 6px 14px;
        font-size: 0.75rem;
        min-height: 32px !important;
        border-radius: 20px;
    }

    /* Refine Buttons for Mobile */
    .btn {
        padding: 11px 22px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Fluid Typographies for Mobile */
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2 !important;
        margin-bottom: 16px;
        letter-spacing: -0.4px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 1.45rem;
        margin-bottom: 24px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .page-banner {
        height: 160px;
    }

    /* Layout overrides for mobile */
    .hero-section {
        height: auto;
        min-height: 480px;
        padding-top: 95px;
        padding-bottom: 50px;
        background-position: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-section {
        margin-top: -30px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
        padding: 24px 16px;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.85rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
    }
    
    .stat-card:not(:last-child)::after {
        display: none; /* Hide dividers in vertical stack */
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 24px 16px;
    }
    
    .program-icon-box {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }
    
    .program-icon-box svg {
        width: 24px;
        height: 24px;
    }
    
    .program-title {
        font-size: 1.1rem;
    }
    
    .program-desc {
        font-size: 0.85rem;
    }
    
    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-card-title {
        font-size: 1.15rem;
    }
    
    .events-grid .event-card:last-child {
        grid-column: span 1;
    }
    
    .event-body {
        flex-direction: column;
        gap: 12px;
    }
    
    .event-date-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-right: 0;
        padding-bottom: 12px;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .event-month, .event-year {
        margin-top: 0;
    }
    
    .event-list-item {
        flex-direction: column;
    }
    
    .event-list-date {
        width: 100%;
        padding: 20px;
    }
    
    .event-list-content {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        text-align: center;
    }
    
    .event-list-title {
        font-size: 1.15rem;
    }
    
    .event-list-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.85rem;
    }
    
    .event-list-action {
        width: 100%;
    }
    
    .event-list-action .btn {
        width: 100%;
    }
    
    .partners-row-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .partner-logo-item {
        flex: 0 0 calc(50% - 10px);
        max-width: 130px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }
    
    .leader-name {
        font-size: 1.15rem;
    }
    
    /* Timeline Journey styling refinements for mobile */
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .timeline-title {
        font-size: 0.9rem;
    }
    
    .timeline-desc {
        font-size: 0.8rem;
    }
    
    .champions-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }
    
    .champion-name {
        font-size: 1.15rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item-title {
        font-size: 1.15rem;
    }
    
    .testimonial-quote {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .form-submit-row {
        grid-column: span 1;
    }
    
    /* Center align footer sections on mobile */
    .footer-section {
        text-align: center;
    }
    
    .footer-logo-row {
        justify-content: center;
    }
    
    .footer-social-row {
        justify-content: center;
    }
    
    .footer-newsletter-form {
        align-items: center;
    }
    
    .newsletter-input-group {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom-links a {
        margin: 0 8px;
    }
}
