:root {
    --color-primary: #ff3c3c;
    --color-secondary: #ffffff;
    --color-bg: #000000;
    --color-surface: #0a0a0a;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.1);
    --frame-width: 8px;
    --font-main: 'Lexend', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 180px;
    height: 180px;
    max-width: 90vw;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.loader-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 10px;
    animation: loaderProgress 1.5s ease-out forwards;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }

    60% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* Hyper Frame Overlay */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
}

.hyper-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.frame-border {
    position: absolute;
    background: var(--color-bg);
}

.frame-top {
    top: 0;
    left: 0;
    width: 100%;
    height: var(--frame-width);
}

.frame-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--frame-width);
}

.frame-left {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
}

.frame-right {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
}

.scroll-progress-container {
    position: absolute;
    bottom: calc(var(--frame-width) / 2);
    left: var(--frame-width);
    right: var(--frame-width);
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-progress {
    height: 100%;
    background: var(--color-primary);
    width: 0%;
}

/* Header - Always black & sticky */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10002;
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--color-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10003;
    position: relative;
}

.social-links {
    display: flex;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
}

.back-btn {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.back-btn:hover {
    color: var(--color-primary);
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-primary);
}

.lang-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 10001;
    position: relative;
}

.lang-btn:hover {
    background: white;
    color: black;
}

/* Sections Base */
.section {
    padding: 100px 10%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

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

/* Infinite Panning Slider */
.bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%; /* Wider for panning */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: brightness(0.35); /* Dark overlay for text readability */
    animation: panFade 24s infinite linear;
}

/* 3 Images = 8s each, crossfading */
.bg-slide:nth-child(1) { animation-delay: 0s; }
.bg-slide:nth-child(2) { animation-delay: 8s; }
.bg-slide:nth-child(3) { animation-delay: 16s; }

@keyframes panFade {
    0% {
        opacity: 0;
        transform: scale(1.0);
    }
    10% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    43% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: scale(1.2) translateX(-5%);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--color-primary);
}

.hero-content h1 span.typewriter-text {
    color: var(--color-primary);
}

.hero-content h1 span.type-cursor {
    color: var(--color-primary);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-secondary {
    background: white;
    color: black;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.3);
}

/* Excellence Section */
#excellence {
    background: white;
    color: #111;
    text-align: center;
    padding: 120px 10%;
}

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

.excellence-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.excellence-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.medals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.medal-card {
    text-align: center;
    padding: 40px 20px;
    transform-style: preserve-3d;
}

.medal-card h3 {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    color: #111;
    transform: translateZ(40px);
}

.medal-icon {
    font-size: 70px;
    margin-bottom: 0px;
    transform: translateZ(50px);
}

.medal-label {
    font-size: 1.1rem;
    color: #999;
    display: block;
    margin-bottom: 60px;
}

.medal-details {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 15px;
}

.medal-sub {
    font-size: 0.85rem;
    color: #aaa;
}


.subtitle {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* ============================================
   FOUNDER SECTION - Starry background
   ============================================ */
.founder-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 10%;
}

.founder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at bottom, #0d1117 0%, #010409 100%);
    overflow: hidden;
}

/* ---- CSS Starfield with JS-generated box-shadows ---- */
#stars-small, #stars-medium, #stars-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#stars-small {
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: transparent;
    animation: starsTwinkle1 3s ease-in-out infinite alternate, starsZoom 60s linear infinite;
}

#stars-medium {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: transparent;
    animation: starsTwinkle2 4s ease-in-out infinite alternate, starsZoom 45s linear infinite;
}

#stars-large {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: transparent;
    animation: starsTwinkle3 5s ease-in-out infinite alternate, starsZoom 30s linear infinite;
}

/* Twinkling: stars brighten and dim */
@keyframes starsTwinkle1 {
    0%   { opacity: 0.4; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}
@keyframes starsTwinkle2 {
    0%   { opacity: 0.5; }
    50%  { opacity: 0.3; }
    100% { opacity: 1; }
}
@keyframes starsTwinkle3 {
    0%   { opacity: 1; }
    50%  { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Infinite dezoom — stars slowly zoom out like traveling through space */
@keyframes starsZoom {
    0%   { transform: scale(1.6) rotate(0deg); }
    100% { transform: scale(1) rotate(1deg); }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: shooting 4s linear infinite;
    opacity: 0;
    z-index: 10;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), transparent);
}

@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-1000px) translateY(1000px) rotate(-45deg);
        opacity: 0;
    }
}

.founder-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.founder-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
}

.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.founder-name {
    font-size: 14px;
    letter-spacing: 4px;
    color: #aaa;
    text-transform: uppercase;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   DISCIPLINES SECTION - WP layout with center logo
   ============================================ */
#disciplines {
    background: white;
    color: #111;
    text-align: center;
    padding: 120px 5%;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#disciplines h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #111;
    font-weight: 400;
    letter-spacing: -1px;
}

#disciplines .subtitle {
    color: #aaa;
    font-size: 13px;
    letter-spacing: 8px;
    margin-top: 15px;
    text-transform: uppercase;
}

.disciplines-wp-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-top: 80px;
    align-items: center;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.disc-col {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.disc-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.disc-item:hover {
    transform: translateY(-5px);
}

/* Original site has icon on the left for both columns, text aligned left */
.disc-right .disc-item {
    text-align: left;
    flex-direction: row;
}

.disc-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.disc-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #111;
}

.disc-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.disc-center-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.disc-center-logo img {
    width: 290px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Breathing Center Logo */
.disc-center-logo .center-logo-img {
    animation: breathingLogo 4s ease-in-out infinite;
}

@keyframes breathingLogo {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ============================================
   INFO TEASER SECTION (landing page CTA)
   ============================================ */
.info-teaser-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    min-height: auto;
    padding: 80px 40px;
}

.info-teaser {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.info-teaser-icon {
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 20px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.info-teaser h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.info-teaser p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================================
   OUTDOOR SECTION - split text/image
   ============================================ */
.outdoor-section {
    background: #f5f5f5;
    padding: 80px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outdoor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.outdoor-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #111;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 300;
}

.outdoor-text h2 strong {
    font-weight: 800;
}

.outdoor-text p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.outdoor-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Outdoor quote section */
.outdoor-quote-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.outdoor-quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.outdoor-quote-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px 20px;
}

.outdoor-quote-content blockquote {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.4;
    color: white;
    margin-bottom: 20px;
}

.quote-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;
    text-transform: uppercase;
}

/* ============================================
   TEAM SECTION
   ============================================ */
#team {
    background: white;
    color: #111;
    text-align: center;
    padding: 100px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#team h2 {
    color: #111;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

#team .subtitle {
    color: #aaa;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px auto 0;
    flex-wrap: wrap;
    max-width: 1200px;
}

.team-card {
    width: 300px;
    text-align: center;
    transform-style: preserve-3d;
}

.team-card .img-container {
    width: 250px;
    height: 250px;
    overflow: hidden;
    margin: 0 auto 20px;
    background: #eee;
    position: relative;
    border-radius: 50%;
    transform: translateZ(30px);
}

.team-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .img-container img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.team-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.team-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #111;
    transform: translateZ(40px);
}

.team-role {
    color: #888;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: #f9f9f9;
    padding: 100px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #111;
    font-weight: 800;
}

.contact-info p {
    color: #555;
    margin-bottom: 10px;
}

.contact-map {
    margin: 20px 0;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-circle:hover {
    transform: scale(1.1);
}

.social-circle.facebook {
    background: #1877f2;
}

.social-circle.youtube {
    background: #ff0000;
}

.social-circle.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-circle.tiktok {
    background: #010101;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    padding: 12px 16px;
    color: #333;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

#contact .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
    font-size: 16px;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   FOOTER - Red background like WP site
   ============================================ */
footer {
    padding: 60px 10%;
    background: var(--color-primary);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    margin: 0 auto 40px;
    align-items: start;
    max-width: 1200px;
}

.footer-nav h4,
.footer-search h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
    text-decoration: underline;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 40px 12px 15px;
    border-radius: 5px;
    color: white;
    font-family: inherit;
}

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

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   INFO SECTION
   ============================================ */
#info {
    background: var(--color-surface);
}

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

.info-content .glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    padding: 50px;
    border-radius: 30px;
}

.info-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.schedule-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 2px;
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.menu-close-btn {
    display: none;
}

/* Responsive */
/* Burger Menu & Responsive Core */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Burger Animation is removed since we have a dedicated close button */
.menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .frame-left,
    .frame-right {
        display: none;
    }

    nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 10001;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .menu-close-btn {
        display: flex;
        position: absolute;
        top: 30px;
        left: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 18px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .menu-close-btn:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        transform: scale(1.1);
    }

    nav.active {
        right: 0;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    nav a {
        font-size: 22px;
        color: white;
        letter-spacing: 3px;
        padding: 8px 0;
        position: relative;
    }

    nav a.active {
        color: var(--color-primary);
    }

    nav a::after {
        bottom: 0;
    }

    /* Header */
    header {
        padding: 20px 20px;
    }

    header.scrolled {
        padding: 20px 20px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
    }

    .logo img {
        height: 60px;
    }

    .header-right .social-links {
        display: none;
    }

    /* Sections */
    .section {
        padding: 60px 35px;
        min-height: auto;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-break: break-word;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Excellence / Medals */
    #excellence {
        padding: 60px 20px;
    }

    .medals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .medal-card h3 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    /* Founder */
    .founder-section {
        padding: 60px 20px;
        min-height: 60vh;
    }

    .founder-text h2 {
        font-size: 1.3rem !important;
    }

    .founder-image {
        width: 120px;
        height: 120px;
    }

    /* Disciplines */
    #disciplines {
        padding: 60px 15px;
    }

    .disciplines-wp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .disc-center-logo {
        margin: 30px 0;
    }

    .disc-center-logo img {
        width: 250px;
    }

    .disc-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .disc-icon {
        width: 95px;
        height: 95px;
        margin-bottom: 10px;
    }

    /* Info */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 10px;
    }

    .glass-card {
        padding: 25px 15px !important;
    }

    /* Outdoor */
    .outdoor-section {
        padding: 40px 20px;
    }

    .outdoor-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .outdoor-image img {
        height: 250px;
    }

    /* Team */
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 100%;
        max-width: 320px;
    }

    /* Contact */
    #contact {
        padding: 60px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .contact-map iframe {
        height: 200px;
    }

    .contact-social-icons {
        justify-content: center;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-nav ul {
        align-items: center;
    }

    .footer-logo-img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .medal-card h3 {
        font-size: 4rem;
    }

    .contact-grid {
        padding: 20px 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Utility */
.mt-4 {
    margin-top: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    background: #e60000;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ============================================
   SUCCESS POPUP (Centered Modal)
   ============================================ */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-popup-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #111;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.success-popup-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 800;
}

.success-popup-box p {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

.success-popup-box .close-popup-btn {
    width: 100%;
    justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE SECTION (CROSSING TEXT)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4vw 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 1vw;
  z-index: 5;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  font-family: var(--font-main);
  font-size: clamp(3rem, 8vw, 10rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 0;
  will-change: transform;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  padding-right: 4vw;
}

.marquee-content .dot {
  color: var(--color-primary);
  margin: 0 3vw;
  -webkit-text-stroke: 0;
  font-size: 0.6em;
}

/* Animations */
.marquee-left {
  animation: marqueeLeft 40s linear infinite;
}

.marquee-right {
  animation: marqueeRight 40s linear infinite;
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

/* Filled version (Solid Red) */
.marquee-filled {
  color: var(--color-primary);
  -webkit-text-stroke: 0;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .marquee-section {
    padding: 8vw 0;
  }
  .marquee-content {
    font-size: 3.5rem;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  }
}