/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --navy-blue: #002F6C;
    --innovation-red: #E32636;
    
    /* Secondary Colors */
    --steel-gray: #4A4A4A;
    --cool-light-gray: #F2F4F7;
    
    /* Accent Colors */
    --sky-blue: #3A9BDC;
    --bright-orange: #FF6B35;
    
    /* Neutrals */
    --charcoal-black: #1A1A1A;
    --pure-white: #FFFFFF;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--navy-blue) 0%, var(--innovation-red) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--sky-blue) 0%, var(--bright-orange) 100%);
    --hero-gradient: linear-gradient(135deg, rgba(0, 47, 108, 0.9) 0%, rgba(227, 38, 54, 0.8) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal-black);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

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

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    color: var(--pure-white);
}

.loading-logo {
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.loading-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.progress-bar {
    height: 100%;
    background: var(--pure-white);
    border-radius: 2px;
    animation: loading 3s ease-in-out;
    transform-origin: left;
}

.loading-text {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes loading {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal-black);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color var(--transition-fast);
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy-blue);
}

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

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--charcoal-black);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--cool-light-gray);
    color: var(--navy-blue);
    border-left-color: var(--navy-blue);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--charcoal-black);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-gradient);
    z-index: 999;
    transition: right var(--transition-medium);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    padding: 100px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-menu-header img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--pure-white);
    transition: all var(--transition-fast);
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 0;
    position: relative;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--bright-orange);
    transform: translateX(10px);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 47, 108, 0.7) 0%, rgba(227, 38, 54, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--pure-white);
    z-index: 1;
    position: relative;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--pure-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-arrow span {
    width: 2px;
    height: 20px;
    background: var(--pure-white);
    border-radius: 1px;
    animation: scrollPulse 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.5);
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--steel-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--cool-light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.vision-mission {
    margin-bottom: 60px;
}

.vision-card,
.mission-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
    transition: transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.goals-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--navy-blue);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.goal-item {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 155, 220, 0.1), transparent);
    transition: left var(--transition-medium);
}

.goal-item:hover::before {
    left: 100%;
}

.goal-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.goal-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.about-images {
    position: relative;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-fast);
}

.gallery-item:first-child {
    grid-row: span 2;
}

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

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

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

/* ===== CEO SECTION ===== */
.ceo-section {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ceo-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-fast);
}

.image-container:hover {
    transform: scale(1.02);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    transition: filter var(--transition-medium);
}

.image-container:hover img {
    filter: contrast(1.2) brightness(1.1) saturate(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-container:hover .image-overlay {
    opacity: 0.2;
}

.ceo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.ceo-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--steel-gray);
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    padding: var(--section-padding);
    background: var(--cool-light-gray);
}

.loading-programs {
    text-align: center;
    padding: 80px 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--cool-light-gray);
    border-top: 4px solid var(--navy-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-gradient);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-date {
    color: var(--innovation-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.program-description {
    color: var(--steel-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.program-link:hover {
    color: var(--bright-orange);
}

.no-programs {
    text-align: center;
    padding: 80px 0;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.no-programs-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.5;
}

.no-programs h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.no-programs p {
    font-size: 1.1rem;
    color: var(--steel-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.blog-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: var(--cool-light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.7;
}

.blog-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.blog-placeholder p {
    font-size: 1.1rem;
    color: var(--steel-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.placeholder-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--steel-gray);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--cool-light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--pure-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 2rem;
    color: var(--navy-blue);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.contact-details p {
    color: var(--steel-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--cool-light-gray);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(0, 47, 108, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--steel-gray);
    transition: all var(--transition-fast);
    pointer-events: none;
    background: var(--pure-white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 14px;
    color: var(--navy-blue);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal-black);
    color: var(--pure-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--bright-orange);
}

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--bright-orange);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* ===== SOCIAL MEDIA ===== */
.social-media h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--bright-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .ceo-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-item:first-child {
        grid-row: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .placeholder-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-content {
        padding: 80px 30px 30px;
    }
    
    .mobile-nav-link {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vision-card,
    .mission-card,
    .contact-form {
        padding: 30px 20px;
    }
    
    .goal-item {
        padding: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cool-light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* ===== RIPPLE EFFECT ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ENHANCED MOBILE NAVIGATION ===== */
.mobile-menu-overlay {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-link {
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

/* ===== ENHANCED HERO ANIMATIONS ===== */
.hero-title .title-line {
    background: linear-gradient(45deg, var(--pure-white), var(--bright-orange), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== ENHANCED CARD ANIMATIONS ===== */
.goal-item,
.program-card,
.contact-item {
    position: relative;
    overflow: hidden;
}

.goal-item::after,
.program-card::after,
.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 155, 220, 0.1), transparent);
    transition: left 0.6s ease;
}

.goal-item:hover::after,
.program-card:hover::after,
.contact-item:hover::after {
    left: 100%;
}

/* ===== ENHANCED IMAGE EFFECTS ===== */
.gallery-item,
.ceo-image .image-container {
    position: relative;
    overflow: hidden;
}

.gallery-item::before,
.ceo-image .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before,
.ceo-image .image-container:hover::before {
    opacity: 0.1;
}

.gallery-item img,
.ceo-image .image-container img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img,
.ceo-image .image-container:hover img {
    transform: scale(1.1) rotate(1deg);
}

/* ===== ENHANCED BUTTON EFFECTS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* ===== ENHANCED SCROLL INDICATOR ===== */
.scroll-indicator {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== ENHANCED LOADING ANIMATIONS ===== */
.loading-logo {
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* ===== ENHANCED FORM EFFECTS ===== */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 47, 108, 0.15);
}

/* ===== ENHANCED NOTIFICATION STYLES ===== */
.notification {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-menu-content {
        margin: 10px;
        padding: 60px 20px 20px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-item {
        padding: 25px 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-menu-content {
        margin: 5px;
        padding: 50px 15px 15px;
    }
    
    .vision-card,
    .mission-card,
    .contact-form {
        padding: 20px 15px;
    }
    
    .goal-item {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 20px 15px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* ===== PREVENT HORIZONTAL OVERFLOW ===== */
* {
    max-width: 100%;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== VALUES SECTION ===== */
.values-section {
    margin-bottom: 60px;
}

.values-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--navy-blue);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.value-item p {
    color: var(--steel-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do-section {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.programs-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0, 47, 108, 0.1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.program-card p {
    color: var(--steel-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.program-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.program-link:hover {
    color: var(--bright-orange);
}

/* ===== FEATURED PROGRAMS SECTION ===== */
.featured-programs-section {
    padding: var(--section-padding);
    background: var(--cool-light-gray);
}

.featured-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.featured-program-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.featured-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-gradient);
}

.featured-program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-date {
    color: var(--innovation-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.featured-program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.featured-program-card p {
    color: var(--steel-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: var(--cool-light-gray);
    color: var(--navy-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.programs-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--cool-light-gray);
    border-radius: 15px;
    transition: all var(--transition-fast);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.partner-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.partner-item p {
    color: var(--steel-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--pure-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--pure-white);
    color: var(--navy-blue);
}

/* ===== ENHANCED MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .about-content,
    .ceo-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
    }
    
    .gallery-item:first-child {
        grid-row: span 1;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .programs-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-programs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 120px 0 80px;
    background: var(--primary-gradient);
    color: var(--pure-white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT DETAIL SECTION ===== */
.about-detail-section {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.about-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 80px;
}

.about-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--navy-blue);
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--steel-gray);
    margin-bottom: 20px;
}

.vision-mission-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.commitments-section {
    margin-bottom: 80px;
}

.commitments-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--navy-blue);
    text-align: center;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.commitment-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--cool-light-gray);
    border-radius: 15px;
    transition: all var(--transition-fast);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.commitment-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.commitment-item p {
    color: var(--steel-gray);
    line-height: 1.6;
}

.goals-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--navy-blue);
    text-align: center;
}

.impact-statement {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--cool-light-gray);
    border-radius: 20px;
    text-align: center;
}

.impact-statement h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--navy-blue);
}

.impact-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--steel-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .vision-mission-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-statement {
        padding: 40px 20px;
    }
    
    .impact-statement h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .about-intro h2,
    .commitments-section h2,
    .goals-section h2,
    .impact-statement h2 {
        font-size: 2rem;
    }
}

/* ===== PROGRAMS PAGE STYLES ===== */
.programs-overview {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.programs-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.program-category {
    background: var(--cool-light-gray);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition-fast);
}

.program-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.category-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.category-header p {
    font-size: 1.1rem;
    color: var(--steel-gray);
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-item {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.program-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.program-item p {
    color: var(--steel-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-status {
    background: var(--innovation-red);
    color: var(--pure-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
}

.programs-cta {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--pure-white);
    text-align: center;
}

.programs-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.programs-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.programs-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.programs-cta .btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.programs-cta .btn-secondary:hover {
    background: var(--pure-white);
    color: var(--navy-blue);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: var(--section-padding);
    background: var(--cool-light-gray);
}

.map-container {
    margin-top: 60px;
}

.map-placeholder {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
}

.map-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--steel-gray);
    margin-bottom: 40px;
}

.location-details {
    background: var(--cool-light-gray);
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.location-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.location-details p {
    color: var(--steel-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .programs-categories {
        gap: 40px;
    }
    
    .program-category {
        padding: 30px 20px;
    }
    
    .programs-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-item {
        padding: 25px 20px;
    }
    
    .programs-cta h2 {
        font-size: 2rem;
    }
    
    .programs-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-placeholder {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .program-item h4 {
        font-size: 1.1rem;
    }
    
    .programs-cta h2 {
        font-size: 1.8rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-gradient);
    color: var(--pure-white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== SUPPORT PAGE STYLES ===== */
.support-options {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.support-card {
    background: var(--cool-light-gray);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.support-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.support-card p {
    color: var(--steel-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.support-card ul {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.support-card li {
    color: var(--steel-gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.impact-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--pure-white);
    text-align: center;
}

.impact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.impact-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bright-orange);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== COMING SOON STYLES ===== */
.coming-soon-section {
    padding: var(--section-padding);
    background: var(--cool-light-gray);
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: var(--steel-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.coming-soon-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--steel-gray);
    font-weight: 500;
}

.coming-soon-features .feature-icon {
    font-size: 1.5rem;
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-card {
        padding: 30px 20px;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .coming-soon-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .support-card h3 {
        font-size: 1.5rem;
    }
    
    .impact-content h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 25px 15px;
    }
    
    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== SELECTION STYLES ===== */
::selection {
    background: var(--sky-blue);
    color: var(--pure-white);
}

::-moz-selection {
    background: var(--sky-blue);
    color: var(--pure-white);
}