/* ==================== VARIABLES ==================== */
:root {
    --blue: #002395;
    --red: #ED2939;
    --white: #ffffff;
    --dark: #0a0a14;
    --grey: #f4f5f8;
    --text: #1a1a2e;
    --muted: #6b6b80;
    --radius: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Calibri', system-ui, sans-serif; line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ==================== NAVBAR (slim) ==================== */
.navbar {
   .fr-flag { display: flex; width: 420px; height: 280px; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 8px rgba(255,255,255,0.08); }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 2rem;
    gap: 1rem;
}

.navbar { position: sticky; top: 0; z-index: 200; }
.navbar { background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,35,149,0.07); position: sticky; top: 0; z-index: 200; }
.logo img { display: block; }

.nav-links { display: flex; gap: 0.1rem; flex: 1; justify-content: center; }

.nav-links a {
    color: #001680;
    font-weight: 750;
    font-size: 1 rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--red); background: rgba(237,41,57,0.06); }

.nav-right { display: flex; align-items: center; gap: 0.6rem; }

.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-switch button { background: none; border: none; font-size: 1.15rem; cursor: pointer; padding: 3px; border-radius: 6px; transition: transform var(--transition); line-height: 1; }
.lang-switch button:hover { transform: scale(1.25); }
.lang-switch button.active { transform: scale(1.2); outline: 2px solid var(--red); outline-offset: 2px; }

.burger { display: none; font-size: 1.6rem; cursor: pointer; color: var(--text); padding: 3px 7px; border-radius: 8px; transition: background var(--transition); }
.burger:hover { background: var(--grey); }

.mobile-menu { display: none; flex-direction: column; background: white; border-top: 1px solid rgba(0,35,149,0.07); padding: 0.4rem 0 0.8rem; box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.mobile-menu a { padding: 12px 2rem; color: var(--text); font-weight: 500; border-bottom: 1px solid #f0f0f4; transition: color var(--transition), background var(--transition); }
.mobile-menu a:hover { color: var(--red); background: #fef5f6; }
.mobile-lang { display: flex; gap: 1rem; padding: 0.8rem 2rem 0; }
.mobile-lang button { background: var(--grey); border: none; padding: 7px 14px; border-radius: 10px; cursor: pointer; font-size: 0.88rem; font-weight: 500; }
.mobile-menu.active { display: flex; }

/* ==================== HERO ==================== */
.hero { min-height: 92vh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--blue); }
.hero-stripe { position: absolute; top: 0; bottom: 0; width: 33.33%; opacity: 0; }
.blue-stripe { left: 0; background: var(--blue); }
.white-stripe { left: 33.33%; background: #aab0cc; }
.red-stripe { right: 0; background: var(--red); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(0,35,149,0.55) 0%, rgba(10,10,20,0.85) 70%); }

.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 0 2rem 0 min(8vw, 7rem); animation: fadeUp 0.9s ease both; }

.hero-tag { display: inline-block; background: rgba(237,41,57,0.18); border: 1px solid rgba(237,41,57,0.4); color: #ff8a94; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 1.75rem; }

.hero-title { font-family: 'Gill Sans', serif; font-size: clamp(3rem, 6.5vw, 5.5rem); font-weight: 900; line-height: 1.02; color: white; margin-bottom: 1.5rem; }

.hero-highlight { background: linear-gradient(90deg, #6a85ff, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.hero-sub { font-size: 1.1rem; color: white; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary { background: var(--red); color: white; padding: 15px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all var(--transition); display: inline-block; white-space: nowrap; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(237,41,57,0.42); background: #d41e2e; }

.btn-ghost { background: transparent; color: white; padding: 15px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; border: 1.5px solid rgba(255,255,255,0.35); transition: all var(--transition); display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.hero-flag { position: absolute; right: min(8vw, 7rem); top: 50%; transform: translateY(-50%); z-index: 2; animation: fadeLeft 1s ease 0.3s both; }
.fr-flag { display: flex; width: 420px; height: 280px; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 8px rgba(255,255,255,0.08); }
.f-blue { background: var(--blue); flex: 1; }
.f-white { background: white; flex: 1; }
.f-red { background: var(--red); flex: 1; }

.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s ease infinite; }

/* ==================== COUNTDOWN ==================== */
.countdown-section { background: var(--blue); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.countdown-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(0,35,149,0.55) 0%, rgba(10,10,20,0.85) 70%); z-index: 0; }
.countdown-section::after { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: rgba(237,41,57,0.15); border-radius: 50%; z-index: 0; }
.countdown-urgency { color: rgba(255,255,255,0.9); font-size: 2rem; font-weight: 600; margin-bottom: 1.2rem; position: relative; z-index: 1; letter-spacing: 0.01em; }
.countdown-label { color: rgb(255, 255, 255); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; position: relative; z-index: 1; }
.countdown-grid { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.countdown-block { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.5rem 2rem; min-width: 110px; }
.countdown-num { font-family: 'Gill Sans', serif; font-size: 5rem; font-weight: 900; color: white; line-height: 1; letter-spacing: -0.02em; }
.countdown-unit { color: rgb(255, 255, 255); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.5rem; }
.countdown-sep { font-family: 'Gill Sans', serif; font-size: 2.5rem; color: rgba(255,255,255,0.3); font-weight: 700; margin-bottom: 1.5rem; align-self: center; }
.countdown-sub { margin-top: 2rem; color: rgb(255, 255, 255); font-size: 0.85rem; letter-spacing: 0.06em; position: relative; z-index: 1; }
/* ==================== SECTIONS SHARED ==================== */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; background: rgba(0,35,149,0.08); color: var(--blue); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 1rem; }
.section-tag.light { background:white; color: rgba(255,255,255,0.85); }
.section-title { font-family: 'Gill Sans', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); line-height: 1.1; margin-bottom: 1rem; }
.section-sub { color: var(--red); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ==================== CONCEPT ==================== */
.concept-section { background: white; }
.concept-section .section-title { color: var(--blue); }
.concept-section .section-sub { color: var(--blue); }
.concept-section .section-tag { background: rgba(0,35,149,0.08); color: var(--blue); }
.concept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.concept-card { background: var(--blue); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.15); border: 1.5px solid transparent; transition: all var(--transition); }
.concept-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.concept-card.featured-concept { border-color: rgba(255,255,255,0.3); background: var(--blue); }
.concept-icon { font-size: 2.5rem; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 1.25rem; }
.blue-icon { background: white; }
.red-icon { background:white; }
.concept-card h3 { font-family: 'Gill Sans', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: white; }
.concept-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }
.unique-box { background: var(--blue); border-radius: var(--radius); padding: 3rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.unique-left .section-tag { margin-bottom: 1rem; background: rgba(255,255,255,0.15); color: white; }
.unique-left p { color: rgba(255,255,255,0.8); line-height: 1.75; font-size: 1rem; }
.unique-left strong { color: white; }
.unique-right { display: flex; flex-direction: column; gap: 1.5rem; }
.unique-stat { border-left: 4px solid var(--white); padding-left: 1.25rem; }
.unique-num { display: block; font-family: 'Gill Sans', serif; font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.unique-num.red { color: var(--white); }
.unique-label { display: block; color: var(--white); font-size: 0.9rem; margin-top: 0.3rem; }

/* ==================== PROGRAMME ==================== */
.programme-section { background: white; }
.programme-parts { margin-bottom: 3rem; }

.prog-part-banner { background: var(--blue); border-left: 4px solid var(--red); border-radius: 16px; margin-bottom: 2rem; padding: 1.5rem 2rem;}
.prog-part-time { color: white; }
.prog-part-info h3 { color: white; }
.prog-part-info p { color: rgba(255,255,255,0.75); }

.programme-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.prog-col { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.prog-col-header { padding: 1.25rem 1.5rem; color: white; }
.blue-header { background: var(--blue); }
.red-header { background: var(--red); }
.prog-col-header h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.prog-col-time { font-size: 0.85rem; opacity: 0.8; font-weight: 500; }

.prog-col-body { background: var(--blue); padding: 1rem 0; }
.prog-item-simple {color: white; display: flex; gap: 1rem; align-items: flex-start; padding: 0.7rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; transition: background var(--transition); }
.prog-item-simple:hover { background: rgba(255,255,255,0.08); }
.prog-item-simple:last-child { border-bottom: none; }
.prog-item-simple.featured-item { background: rgba(237,41,57,0.04); font-weight: 500; }
.prog-item-time { background: rgba(255,255,255,0.08); color: white; font-weight: 700; font-size: 0.82rem; white-space: nowrap; margin-top: 1px; min-width: 38px; }
.prog-col-guests { margin: 0.5rem 1.5rem 0.75rem; padding: 0.75rem 1rem; background: var(--grey); border-radius: 10px; font-size: 0.82rem; color: var(-- blue); line-height: 1.6; }
.prog-col-guests strong { color: var(--text); }

.prog-col-guests2 { margin: 0.5rem 1.5rem 0.75rem; padding: 0.75rem 1rem; background: var(--grey); border-radius: 10px; font-size: 0.82rem; color: var(--black); line-height: 1.6; }
.prog-col-guests2 strong { color: var(--text); }


.red-body { background: var(--red) !important; }

.programme-cta { text-align: center; }

/* ==================== ECOSYSTEM ==================== */
.ecosystem-section { background:#002395; }
.ecosystem-section .section-title { color: var(--white); }
.ecosystem-section .section-sub { color: rgb(255, 255, 255); }
.ecosystem-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }

.eco-stats { display: flex; align-items: center; justify-content: center; gap: 0; background: white; border-radius: var(--radius); padding: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 3rem; }
.eco-stat { flex: 1; text-align: center; }
.eco-num { display: block; font-family: 'Gill Sans', serif; font-size: 4rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 0.5rem; }
.eco-num.red { color: var(--red); }
.eco-label { display: block; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.eco-source { display: block; font-size: 0.78rem; color: var(--black); }
.eco-divider { width: 1px; height: 100px; background: #e0e0e8; margin: 0 3rem; flex-shrink: 0; }

.eco-profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.eco-profile { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all var(--transition); }
.eco-profile:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,0.09); }
.eco-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.eco-profile h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--blue); }
.eco-profile p { color: var(--black); font-size: 0.88rem; line-height: 1.55; }

/* ==================== LOCATION ==================== */
.location-section { background: linear-gradient(135deg, var(--blue) 0%, #002395 100%); color: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.location-text h2 { font-family: 'Gill Sans', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.15; margin: 1rem 0 1.5rem; color: white; }
.stat-highlight { display: inline; background: var(--red); color: white; padding: 2px 10px; border-radius: 6px; }
.location-text p { color: rgb(255, 255, 255); line-height: 1.75; margin-bottom: 2rem; }
.location-perks { display: flex; flex-direction: column; gap: 0.85rem; }
.location-perks li { display: flex; align-items: center; gap: 0.75rem; color: rgb(255, 255, 255); font-size: 0.98rem; }
.perk-icon { color: var(--red); font-size: 0.75rem; flex-shrink: 0; }
.location-visual { display: flex; justify-content: center; }
.bridge-box { background: white; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); max-width: 440px; width: 100%; }
.bridge-label { padding: 1rem 1.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); border-bottom: 1px solid #eee; text-align: center; }
.flag-img { width: 100%; height: auto; display: block; }
.section-tag.light { background: rgba(255,255,255,0.18); color: white; }
/* ==================== PARTNERS ==================== */
.partners-section { background: white; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.partner-card { background: #002395; border-radius: var(--radius); padding: 2rem 1.75rem; box-shadow: 0 4px 20px rgba(0,0,0,0.15); border: 1.5px solid transparent; transition: all var(--transition); }
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.partner-card.featured-partner { border-color: rgba(255,255,255,0.3); background: var(--blue); }
.partner-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; filter: none; }
.partner-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; color: white; }
.partner-list { display: flex; flex-direction: column; gap: 0.5rem; }
.partner-list li { color: rgb(255, 255, 255); font-size: 0.9rem; padding-left: 1.1rem; position: relative; line-height: 1.5; }
.partner-list li::before { content: '🔴'; position: absolute; left: 0; color: var(--red); font-size: 0.6rem; top: 4px; }
.partner-cta { text-align: center; }
.section-title {color:  #002395}
.section-sub{color:  #001680}
/* ==================== FUN FACTS ==================== */
.fun-section { background: var(--blue); }
.fun-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.fun-section .section-title { color: white; }
.fun-section .fun-card p { color: var(--blue); }
.fun-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.fun-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all var(--transition); }
.fun-card:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,0.08); }
.fun-emoji { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.fun-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* ==================== CONTACT ==================== */
.contact-section { background: white; }
.contact-section .section-title { color: var(--blue); }
.contact-section .section-tag { background: rgba(0,35,149,0.08); color: var(--blue); }
.btn-back-top {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--red);
    background: white;
    border: 2px solid var(--red);
    transition: all 0.35s ease;
    letter-spacing: 0.02em;
}
.btn-back-top:hover {
    background: var(--red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(237,41,57,0.3);
}

/* ==================== FOOTER ==================== */
.footer { background: var(--blue); color: rgba(255,255,255,0.55); text-align: center; overflow: hidden; position: relative; }
.footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(0,35,149,0.55) 0%, rgba(10,10,20,0.85) 70%); z-index: 0; }
.footer .container { position: relative; z-index: 1; }
.footer-flag { position: relative; z-index: 1; }
.footer-flag { display: flex; height: 15px; }
.ff-blue { background: var(--blue); flex: 1; }
.ff-white { background: white; flex: 1; }
.ff-red { background: var(--red); flex: 1; }
.footer-inner { padding: 3rem 2rem; }
.footer-inner p { font-size: 0.9rem; margin-bottom: 0.4rem; }

.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin: 1.25rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.footer-socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.5rem; margin: 1rem 0 1.5rem; }
.footer-socials a { color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color var(--transition); }
.footer-socials a:hover { color: rgba(255,255,255,0.9); }

.footer-note { font-size: 0.8rem; opacity: 0.45; margin-top: 0.5rem; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translate(30px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }

/* ==================== MOBILE ==================== */
@media (max-width: 1024px) {
    .nav-links a { font-size: 0.78rem; padding: 0.3rem 0.5rem; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .burger { display: block; }
    .hero-flag { display: none; }
    .hero-content { padding: 0 1.5rem; text-align: center; }
    .hero-ctas { justify-content: center; }
    .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .bridge-box { max-width: 380px; margin: 0 auto; }
    .unique-box { grid-template-columns: 1fr; gap: 2rem; }
    .programme-cols { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .eco-profiles { grid-template-columns: 1fr; }
    .eco-stats { flex-direction: column; gap: 2rem; }
    .eco-divider { width: 80px; height: 1px; margin: 0; }
}

@media (max-width: 680px) {
    .section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    .countdown-block { min-width: 75px; padding: 1rem 0.8rem; }
    .countdown-num { font-size: 2.2rem; }
    .countdown-sep { font-size: 1.8rem; }
    .prog-part-banner { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .concept-grid { grid-template-columns: 1fr; }
}