:root {
    --dark-1: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #2a2a2a;
    --gray-dark: #333333;
    --gray: #444444;
    --gray-light: #666666;
    --white: #ffffff;
    --white-dim: rgba(255,255,255,0.7);
    --white-muted: rgba(255,255,255,0.5);
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --red-500: #ef4444;
    --red-400: #f87171;
    --red-accent: #e53935;
    --red-glow: rgba(229,57,53,0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-1);
    color: var(--white);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}
body.loaded { opacity: 1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--red-600); color: white; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--red-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-500); }

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.8s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.9s; }

#scrollProgress {
    position: fixed; top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-700), var(--red-400));
    z-index: 10001;
    transition: width 0.1s;
    pointer-events: none;
}

#particles-canvas {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

#cursor-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229,57,53,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%);
    display: none;
}
@media(min-width:769px) { #cursor-glow { display: block; } }

.floating-object {
    position: absolute; z-index: 1; opacity: 0.15; pointer-events: none;
    width: 120px; height: 120px;
}
@keyframes floatObj {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.floating-object { animation: floatObj 4s ease-in-out infinite; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229,57,53,0.1);
    padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
}
.nav-logo-img { height: 40px; width: auto; }
.nav-links {
    display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
    font-size: 0.8rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 1.5px; position: relative; padding: 4px 0;
    transition: color 0.3s; color: var(--white-dim);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--red-accent); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--red-accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--red-accent); }
.nav-links a.nav-active::after { width: 100%; }
.nav-cta {
    background: var(--red-accent) !important; color: #fff !important;
    padding: 10px 22px !important; border-radius: 4px;
    font-weight: 700 !important; transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-600) !important; transform: scale(1.05); }
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; z-index: 1001;
}
.nav-hamburger span {
    width: 28px; height: 2px; background: #fff;
    transition: all 0.3s; border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* HERO */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    z-index: 1; overflow: hidden;
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-bg iframe {
    width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    opacity: 0.4; pointer-events: none;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}
.hero-overlay::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 100%);
    z-index: 2;
}
.hero .container { position: relative; z-index: 3; padding-top: 120px; padding-bottom: 80px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(229,57,53,0.15); border: 1px solid rgba(229,57,53,0.3);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--red-400); margin-bottom: 24px;
}
.hero-badge i { color: var(--red-accent); }
.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 700;
    text-transform: uppercase; line-height: 0.95; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red-accent); }
.hero-sub {
    display: block; font-size: clamp(2rem, 6vw, 5rem);
    color: var(--white); opacity: 0.9; letter-spacing: 8px;
}
.hero > .container > p {
    font-size: 1.1rem; color: var(--white-dim); max-width: 540px;
    line-height: 1.8; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 50px; }
.hero-stat h3 {
    font-family: 'Oswald', sans-serif; font-size: 2.5rem; color: var(--red-accent);
}
.hero-stat p {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--white-muted); margin-top: 4px;
}
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center;
    gap: 8px;
    color: var(--white-muted); font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 2px; animation: bounceDown 2s infinite;
}
.scroll-indicator .mouse {
    width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px; position: relative;
}
.scroll-indicator .mouse::after {
    content: ''; position: absolute; top: 6px; left: 50%;
    transform: translateX(-50%); width: 3px; height: 8px;
    background: var(--red-accent); border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 4px;
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    border: none; cursor: pointer; transition: all 0.3s;
    position: relative; overflow: hidden;
}
.btn-primary { background: var(--red-accent); color: #fff; }
.btn-primary:hover {
    background: var(--red-600); transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--red-glow);
}
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover {
    border-color: var(--red-accent); color: var(--red-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(229,57,53,0.15);
}

/* SECTION TITLES */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem); text-transform: uppercase;
    letter-spacing: 2px; position: relative;
    display: inline-block; margin-bottom: 48px;
}
.section-title::after {
    content: ''; position: absolute; bottom: -8px; left: 0;
    width: 60px; height: 4px; background: var(--red-accent); border-radius: 2px;
}
.section-title-center { display: block; text-align: center; }
.section-title-center::after { left: 50%; transform: translateX(-50%); }

/* SECTIONS */
section { position: relative; z-index: 1; padding: 100px 0; }

/* PAGE HERO */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-3) 50%, var(--dark-1) 100%);
    position: relative; z-index: 1; text-align: center;
    border-bottom: 1px solid rgba(229,57,53,0.1);
}
.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase; letter-spacing: 4px; margin-top: 16px;
}
.page-hero p { color: var(--white-dim); font-size: 1.1rem; margin-top: 12px; }

/* ABOUT */
.about-section { background: var(--dark-1); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    position: relative; border-radius: 12px; overflow: hidden;
}
.about-image img {
    width: 100%; height: 500px; object-fit: cover;
    filter: brightness(0.7) contrast(1.1); transition: transform 0.6s, filter 0.6s;
}
.about-image:hover img { transform: scale(1.05); filter: brightness(0.8) contrast(1.1); }
.about-image::after {
    content: ''; position: absolute; inset: 0;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.8);
    border-radius: 12px; pointer-events: none;
}
.about-text h2 { margin-bottom: 24px; }
.about-text > p {
    color: var(--white-dim); line-height: 1.8; margin-bottom: 16px;
}
.about-quote {
    border-left: 3px solid var(--red-accent); padding: 20px 24px;
    margin: 24px 0;
    background: rgba(229,57,53,0.05); border-radius: 0 8px 8px 0;
    font-style: italic; color: var(--white-dim); line-height: 1.8; font-size: 0.95rem;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--white-dim);
}
.about-feature i { color: var(--red-accent); font-size: 0.85rem; }

/* AFFILIATIONS */
.affiliations-section { background: var(--dark-2); padding-top: 80px; padding-bottom: 80px; }
.affiliations-grid {
    display: grid; grid-template-columns: 0.8fr 1.1fr 1.1fr; gap: 24px;
    align-items: stretch;
}
.affiliation-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; transition: all 0.4s;
    min-width: 0; width: 100%; overflow: hidden;
}
.affiliation-card:hover {
    transform: translateY(-5px); border-color: rgba(229,57,53,0.35);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.affiliation-card img {
    width: 100%; max-width: 100%; height: 210px; object-fit: contain;
    background: #fff; border-radius: 10px; padding: 12px; margin-bottom: 22px;
}
.affiliation-brand img { height: 170px; background: #090909; }
.affiliation-featured {
    border-color: rgba(229,57,53,0.2);
    background: linear-gradient(145deg, rgba(229,57,53,0.08), rgba(255,255,255,0.02));
}
.affiliation-label {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    color: var(--red-400); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 9px;
}
.affiliation-card h3 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase;
    font-size: 1.55rem; letter-spacing: 1.5px; margin-bottom: 7px;
    overflow-wrap: anywhere;
}
.affiliation-card p { color: var(--white-muted); font-size: 0.88rem; line-height: 1.6; }

/* PROGRAMS */
.programs-section { background: var(--dark-2); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.program-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 36px 28px; transition: all 0.4s;
    position: relative; overflow: hidden;
}
.program-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 0; background: var(--red-accent); transition: height 0.4s;
}
.program-card:hover::before { height: 100%; }
.program-card:hover {
    background: rgba(229,57,53,0.04); border-color: rgba(229,57,53,0.2);
    transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.program-card .icon {
    width: 52px; height: 52px; background: rgba(229,57,53,0.1);
    border: 1px solid rgba(229,57,53,0.2); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--red-accent); margin-bottom: 20px;
}
.program-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.2rem; text-transform: uppercase;
    margin-bottom: 10px; letter-spacing: 1px;
}
.program-card p {
    color: var(--white-muted); font-size: 0.9rem; line-height: 1.7;
}

/* PHOTO CAROUSEL */
.gallery-section { background: var(--dark-1); overflow: hidden; }
.photo-carousel { position: relative; overflow: hidden; margin: 0 -24px; padding: 0 24px; }
.photo-carousel-track {
    display: flex; gap: 20px; transition: transform 0.1s linear; will-change: transform;
}
.photo-card {
    min-width: 300px; height: 380px; border-radius: 12px;
    overflow: hidden; position: relative; flex-shrink: 0; cursor: pointer;
}
.photo-card img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6) contrast(1.1); transition: all 0.6s;
}
.photo-card::after {
    content: ''; position: absolute; inset: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.7);
    border-radius: 12px; pointer-events: none; transition: box-shadow 0.4s;
}
.photo-card:hover img { transform: scale(1.08); filter: brightness(0.75) contrast(1.1); }
.photo-card:hover::after { box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 0 30px rgba(229,57,53,0.2); }
.carousel-nav { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }
.carousel-nav button {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(229,57,53,0.1); border: 1px solid rgba(229,57,53,0.2);
    color: var(--red-accent); font-size: 1.1rem; cursor: pointer;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.carousel-nav button:hover { background: var(--red-accent); color: #fff; }

/* FULL GALLERY */
.gallery-full-section { background: var(--dark-1); padding-bottom: 60px; }
.gallery-full-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px;
    gap: 12px;
}
.gallery-card {
    border-radius: 10px; overflow: hidden; position: relative; cursor: pointer;
}
.gallery-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-card:nth-child(4) { grid-column: span 2; }
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6) contrast(1.1); transition: all 0.5s;
}
.gallery-card-overlay {
    position: absolute; inset: 0;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
    pointer-events: none; transition: all 0.4s; border-radius: 10px;
}
.gallery-card:hover img { transform: scale(1.06); filter: brightness(0.75) contrast(1.1); }
.gallery-card:hover .gallery-card-overlay {
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3), 0 0 25px rgba(229,57,53,0.15);
}

/* BLOG */
.blog-section { background: var(--dark-2); }
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.blog-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 32px; transition: all 0.4s;
}
.blog-card:hover {
    border-color: rgba(229,57,53,0.2); transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}
.blog-card-cat {
    display: inline-block; background: rgba(229,57,53,0.12);
    color: var(--red-accent); font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1px; padding: 4px 14px; border-radius: 50px; margin-bottom: 14px;
}
.blog-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.2rem; text-transform: uppercase;
    margin-bottom: 10px; line-height: 1.3;
}
.blog-card h3 a { transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--red-accent); }
.blog-card-date {
    font-size: 0.8rem; color: var(--white-muted); margin-bottom: 14px; display: block;
}
.blog-card p { color: var(--white-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.blog-card-link {
    color: var(--red-accent); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s;
}
.blog-card-link:hover { letter-spacing: 2px; }
.cat-filter {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.cat-filter button {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white-dim); padding: 8px 20px; border-radius: 50px;
    font-size: 0.8rem; cursor: pointer; transition: all 0.3s; font-family: 'Inter';
}
.cat-filter button:hover, .cat-filter button.active {
    background: var(--red-accent); color: #fff; border-color: var(--red-accent);
}

/* ARTICLE */
.article-section { padding: 160px 0 80px; }
.article-header { text-align: center; margin-bottom: 48px; }
.article-header .blog-card-cat { margin-bottom: 16px; }
.article-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem); text-transform: uppercase;
    max-width: 800px; margin: 0 auto 16px; line-height: 1.2;
}
.article-header .article-date { color: var(--white-muted); font-size: 0.9rem; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content p { color: var(--white-dim); line-height: 1.9; margin-bottom: 20px; font-size: 1.05rem; }
.article-back {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--red-accent); font-weight: 600; margin-bottom: 40px;
    transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
}
.article-back:hover { gap: 12px; }

/* FAQ */
.faq-section { background: var(--dark-1); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
    margin-bottom: 12px; overflow: hidden;
    transition: all 0.3s; background: rgba(255,255,255,0.01);
}
.faq-item.active { border-color: rgba(229,57,53,0.3); background: rgba(229,57,53,0.03); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; transition: all 0.3s; font-weight: 500;
}
.faq-question:hover { color: var(--red-accent); }
.faq-question i { color: var(--red-accent); transition: transform 0.3s; font-size: 0.85rem; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--white-dim); line-height: 1.8; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, rgba(229,57,53,0.08) 0%, rgba(229,57,53,0.02) 50%, transparent 100%);
    border-top: 1px solid rgba(229,57,53,0.1); border-bottom: 1px solid rgba(229,57,53,0.1);
    text-align: center;
}
.cta-content { max-width: 640px; margin: 0 auto; }
.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 16px;
}
.cta-content p { color: var(--white-dim); margin-bottom: 32px; line-height: 1.7; }

/* FOOTER */
.footer {
    background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 24px; z-index: 1; position: relative;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p {
    color: var(--white-muted); font-size: 0.85rem; line-height: 1.7;
    margin-top: 16px; max-width: 300px;
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--white-muted); transition: all 0.3s; font-size: 1rem;
}
.footer-social a:hover {
    background: var(--red-accent); color: #fff; border-color: var(--red-accent);
}
.footer h4 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 16px; color: var(--white);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: var(--white-muted); font-size: 0.85rem; transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.footer ul a:hover { color: var(--red-accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* LIGHTBOX */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 24px; right: 32px; font-size: 2rem;
    color: #fff; cursor: pointer; transition: color 0.3s;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { color: var(--red-accent); }

/* WHATSAPP */
.whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem; z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.pulse-ring {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: #25d366; animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* CONTACT */
.contact-section { background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 24px; display: flex; align-items: center;
    gap: 16px; transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(229,57,53,0.2); transform: translateX(4px); }
.contact-card .icon {
    width: 48px; height: 48px; background: rgba(229,57,53,0.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red-accent); font-size: 1.2rem; flex-shrink: 0;
}
.contact-card h4 { font-family: 'Oswald'; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--white-dim); font-size: 0.9rem; }
.contact-card a:hover { color: var(--red-accent); }
.contact-form {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 36px;
}
.contact-form h3 { font-family: 'Oswald'; text-transform: uppercase; font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; color: var(--white-dim);
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    color: #fff; font-family: 'Inter'; font-size: 0.95rem;
    transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark-3); }

/* RESPONSIVE */
@media(max-width:1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-full-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
    .gallery-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-card:nth-child(4) { grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr; }
    .affiliations-grid { grid-template-columns: 1fr 1fr; }
    .affiliation-brand { grid-column: span 2; }
}
@media(max-width:768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; padding: 40px;
        transition: right 0.4s; gap: 24px; z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-hamburger { display: flex; }
    .hero h1 { font-size: clamp(2.5rem, 15vw, 4rem); }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 1.8rem; }
    .photo-card { min-width: 260px; height: 320px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery-full-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .gallery-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .about-features { grid-template-columns: 1fr; }
    .scroll-indicator { display: none; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .affiliations-section { padding-top: 60px; padding-bottom: 60px; overflow: hidden; }
    .affiliations-grid {
        display: flex; flex-direction: column; align-items: stretch;
        width: 100%; max-width: 460px; margin: 0 auto; gap: 18px;
    }
    .affiliation-brand { grid-column: auto; }
    .affiliation-card {
        width: 100%; max-width: 100%; padding: 16px;
        border-radius: 14px; flex-direction: column; align-items: stretch;
        text-align: center; gap: 0;
        background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
        border-color: rgba(255,255,255,.12);
    }
    .affiliation-card img, .affiliation-brand img {
        display: block; width: 100%; min-width: 0; height: 260px;
        max-width: 100%; max-height: 260px; aspect-ratio: auto;
        object-fit: contain; margin: 0 0 14px; padding: 12px; flex: none;
        border: 1px solid rgba(255,255,255,.08);
    }
    .affiliation-brand img { height: 210px; max-height: 210px; }
    .affiliation-card > div {
        min-width: 0; width: 100%; padding: 16px 14px 14px;
        background: rgba(0,0,0,.28); border-radius: 10px;
        border-top: 2px solid rgba(229,57,53,.55);
    }
    .affiliation-card h3 { font-size: 1.35rem; line-height: 1.2; }
    .affiliation-card p { max-width: 340px; margin: 0 auto; }
    .affiliation-label {
        max-width: 100%; line-height: 1.35; letter-spacing: 1px;
        flex-wrap: wrap; justify-content: center;
        padding: 6px 10px; border-radius: 30px;
        background: rgba(229,57,53,.12);
        border: 1px solid rgba(229,57,53,.22);
    }
}
@media(max-width:480px) {
    section { padding: 60px 0; }
    .gallery-full-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
    .hero-stats { gap: 16px; }
    .photo-card { min-width: 220px; height: 280px; }
    .affiliations-grid { max-width: 100%; gap: 14px; }
    .affiliation-card { padding: 12px; gap: 0; }
    .affiliation-card img, .affiliation-brand img {
        width: 100%; min-width: 0; height: 230px;
        max-width: 100%; max-height: 230px; padding: 10px;
        margin-bottom: 12px; flex-basis: auto;
    }
    .affiliation-brand img { height: 180px; max-height: 180px; }
    .affiliation-card > div { padding: 14px 10px 12px; }
    .affiliation-card h3 { font-size: 1.2rem; letter-spacing: 1px; margin: 7px 0 5px; }
    .affiliation-card p { font-size: 0.8rem; line-height: 1.5; }
    .affiliation-label { font-size: 0.64rem; margin-bottom: 3px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
