
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#071524;--navy-mid:#0d2137;
  --red:#c0001a;--red-light:#e8182f;--red-pale:#fff0f2;
  --yellow:#e8a800;--yellow-light:#ffc72c;--yellow-pale:#fffbeb;
  --blue:#0042A6;--blue-light:#2266cc;--blue-pale:#e0eaf8;
  --white:#ffffff;--off-white:#f7f8fc;
  --text-dark:#0f1e2d;--text-mid:#42597a;--text-muted:#7a93b0;
  --border:#e4e9f0;
  --r-sm:8px;--r-md:16px;--r-lg:24px;--r-xl:32px;
  --h:'Plus Jakarta Sans',system-ui,sans-serif;
  --b:'Inter',system-ui,sans-serif;
}
html{scroll-behavior:smooth}
body{font-family:var(--b);color:var(--text-dark);background:var(--white);overflow-x:hidden}

/* ── NAV — text only, no logo image ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2.5rem;height:72px;
  background:rgba(0,42,140,0.97);backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.nav-brand{
  font-family:var(--h);font-size:0.82rem;font-weight:800;
  color:var(--white);line-height:1.3;letter-spacing:-0.01em;
}
.nav-brand span{color:var(--yellow-light);font-weight:500;font-size:0.72rem;display:block;letter-spacing:0.04em}
.nav-links{display:flex;gap:0.2rem;list-style:none}
.nav-links a{
  font-family:var(--h);font-size:0.78rem;font-weight:600;
  color:rgba(255,255,255,0.58);text-decoration:none;
  padding:0.45rem 0.9rem;border-radius:50px;transition:all .2s;
}
.nav-links a:hover{color:var(--white);background:rgba(255,255,255,0.1)}
.nav-cta{
  font-family:var(--h);font-size:0.8rem;font-weight:700;
  background:var(--yellow-light);color:var(--navy);
  padding:0.55rem 1.3rem;border-radius:50px;
  text-decoration:none;transition:all .2s;white-space:nowrap;
  display:inline-flex;align-items:center;gap:0.4rem;
}
.nav-cta:hover{background:var(--yellow);transform:translateY(-1px);box-shadow:0 4px 16px rgba(255,199,44,.4)}

/* ── HERO — full-bleed image + dark navy overlay, matches Theme section ── */
.hero{
  min-height:100vh;position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  padding:9rem 2.5rem 6rem;
  text-align:center;
  background:var(--navy);
}
/* Real <img> tag for the background photo */
.hero-bg-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;
  display:block;
}
/* Dark navy overlay — same treatment as the Theme section */
.hero-bg-gradient{
  position:absolute;inset:0;
  background:rgba(7,21,36,0.82);
}
/* Subtle red tint in top-right corner for visual interest */
.hero-bg-colour{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 80% 0%, rgba(192,0,26,0.12) 0%, transparent 55%);
}
.hero-inner{
  position:relative;z-index:2;
  max-width:960px;width:100%;
  display:flex;flex-direction:column;align-items:center;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:rgba(255,199,44,0.14);border:1px solid rgba(255,199,44,0.35);
  color:var(--yellow-light);font-family:var(--h);
  font-size:0.72rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  padding:0.4rem 1rem;border-radius:50px;margin-bottom:1.75rem;
}
.hero-badge-dot{width:6px;height:6px;background:var(--yellow-light);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.5)}}
.hero-title{
  font-family:var(--h);
  font-size:clamp(2.8rem,6.5vw,5rem);
  font-weight:800;line-height:1.08;color:var(--white);
  margin-bottom:1.5rem;
}
.hero-title .hl-red{color:var(--red-light)}
.hero-title .hl-yellow{color:var(--yellow-light)}
.hero-sub{
  font-size:1.05rem;line-height:1.8;color:rgba(255,255,255,0.62);
  margin-bottom:2.25rem;max-width:640px;
}
.hero-sub strong{color:rgba(255,255,255,0.92);font-weight:600}
.hero-actions{display:flex;gap:0.75rem;flex-wrap:wrap;justify-content:center;margin-bottom:3.5rem}
.btn-primary{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-family:var(--h);font-size:0.9rem;font-weight:700;
  background:var(--red);color:var(--white);
  padding:0.9rem 1.9rem;border-radius:50px;
  text-decoration:none;transition:all .2s;
}
.btn-primary:hover{background:var(--red-light);transform:translateY(-2px);box-shadow:0 6px 24px rgba(192,0,26,.45)}
.btn-ghost{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-family:var(--h);font-size:0.9rem;font-weight:700;
  color:rgba(255,255,255,.82);border:2px solid rgba(255,255,255,.25);
  padding:0.9rem 1.9rem;border-radius:50px;
  text-decoration:none;transition:all .2s;
}
.btn-ghost:hover{color:var(--white);border-color:rgba(255,255,255,.65)}
/* Stats row along the bottom of hero */
.hero-stats{
  display:flex;gap:0;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--r-xl);
  overflow:hidden;
  backdrop-filter:blur(8px);
}
.hero-stat{
  flex:1;padding:1.1rem 1.75rem;
  border-right:1px solid rgba(255,255,255,0.1);
  text-align:center;
}
.hero-stat:last-child{border-right:none}
.hero-stat-num{font-family:var(--h);font-size:1.75rem;font-weight:800;color:var(--white)}
.hero-stat-num em{color:var(--yellow-light);font-style:normal}
.hero-stat-lbl{font-size:0.72rem;color:rgba(255,255,255,.42);margin-top:.1rem}

/* Healthcare theme floating icons in hero */
.hero-theme-icons{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden}
.hero-icon{position:absolute;opacity:0.07;color:var(--white)}
.hi-1{top:12%;left:8%;transform:rotate(-15deg)}
.hi-2{top:20%;right:10%;transform:rotate(10deg)}
.hi-3{bottom:25%;left:5%;transform:rotate(5deg)}
.hi-4{bottom:15%;right:8%;transform:rotate(-8deg)}
.hi-5{top:50%;left:50%;transform:translate(-50%,-50%) rotate(0deg);opacity:.03}
.hi-6{top:35%;left:20%;transform:rotate(20deg)}
.hi-7{bottom:35%;right:20%;transform:rotate(-12deg)}
.logos-strip{
  background:var(--white);
  min-height:96px;
  padding:0 2rem;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
}
.logos-inner{
  max-width:1200px;
  width:100%;
  margin:0 auto;
}
.logo-img-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:96px;
}
.logo-strip-combined{
  display:block;
  width:100%;
  max-width:1120px;
  height:auto;
  max-height:72px;
  object-fit:contain;
}
@media (max-width:900px){
  .logos-strip{min-height:96px;padding:0 1.25rem}
  .logo-img-wrap{height:96px}
  .logo-strip-combined{max-width:100%;max-height:64px;height:auto}
}
@media (max-width:560px){
  .logo-strip-combined{max-height:54px}
}
/* Individual sponsor badges */
.logo-badge{
  display:inline-flex;align-items:center;gap:.45rem;
  font-family:var(--h);font-size:0.78rem;font-weight:700;
  padding:.35rem .9rem;border-radius:50px;transition:opacity .2s;
}
.logo-badge:hover{opacity:1}
.lb-blue{background:var(--blue-pale);color:var(--blue)}
.lb-orange{background:#fff3eb;color:#b84a00}
.lb-green{background:#eefaf1;color:#186a2e}
.lb-yellow{background:var(--yellow-pale);color:#7a5200}

/* ── SECTIONS SHARED ── */
section{padding:6rem 2.5rem}
.section-inner{max-width:1200px;margin:0 auto}
.pill{
  display:inline-flex;align-items:center;gap:.45rem;
  font-family:var(--h);font-size:.7rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.32rem .85rem;border-radius:50px;margin-bottom:1rem;
}
.pill-red{background:var(--red-pale);color:var(--red)}
.pill-blue{background:var(--blue-pale);color:var(--blue)}
.pill-yellow{background:var(--yellow-pale);color:var(--yellow)}
.pill-ghost{background:rgba(255,255,255,.1);color:rgba(255,255,255,.75)}
.pill svg{flex-shrink:0}
.sec-h{font-family:var(--h);font-size:clamp(1.85rem,3.5vw,2.75rem);font-weight:800;line-height:1.15;color:var(--text-dark);margin-bottom:.75rem}
.sec-h .acc{color:var(--blue)}
.sec-h-w{color:var(--white)}
.sec-p{font-size:1rem;line-height:1.8;color:var(--text-mid);max-width:620px;margin-bottom:2.5rem}
.sec-p-w{color:rgba(255,255,255,.55)}

/* ── ABOUT ── */
.about-section{background:var(--off-white)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-img-col{position:relative}
.about-img-frame{border-radius:var(--r-xl);overflow:hidden;aspect-ratio:3/4;box-shadow:0 20px 60px rgba(0,0,0,.12)}
.about-img-frame img{width:100%;height:100%;object-fit:cover;display:block}
.about-award-card{
  position:absolute;bottom:1.75rem;left:1.75rem;right:1.75rem;
  background:#0042A6;border-radius:var(--r-md);padding:1.25rem 1.5rem;
  box-shadow:0 8px 32px rgba(0,0,0,.4);
}
.aac-title{font-family:var(--h);font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--yellow-light);margin-bottom:.8rem;display:flex;align-items:center;gap:.5rem}
.award-row{display:flex;justify-content:space-between;padding:.45rem 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:.8rem}
.award-row:last-child{border-bottom:none}
.award-row-l{color:rgba(255,255,255,.5)}
.award-row-v{font-family:var(--h);font-weight:700;color:var(--yellow-light)}
.about-body{font-size:.94rem;line-height:1.85;color:var(--text-mid)}
.about-body p+p{margin-top:1rem}
.feat-list{list-style:none;margin-top:1.75rem;display:flex;flex-direction:column;gap:.75rem}
.feat-item{display:flex;align-items:flex-start;gap:.8rem;font-size:.9rem;color:var(--text-mid);line-height:1.65}
.feat-icon{width:34px;height:34px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;margin-top:1px}
.fic-red{background:var(--red-pale)}
.fic-yellow{background:var(--yellow-pale)}
.fic-blue{background:var(--blue-pale)}

/* ── THEME ── */
.theme-section{background:#0042A6;position:relative;overflow:hidden}
.theme-bg-img{
  position:absolute;inset:0;
  background-image:url('https://images.unsplash.com/photo-1521295121783-8a321d551ad2?w=1600&q=70&auto=format&fit=crop');
  background-size:cover;background-position:center;opacity:.06;
}
.theme-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto}
.theme-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(215px,1fr));gap:1rem;margin-top:2.5rem}
.theme-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-md);padding:1.5rem;transition:all .2s}
.theme-card:hover{background:rgba(255,255,255,.09);transform:translateY(-3px);border-color:rgba(255,199,44,.3)}
.theme-icon{width:44px;height:44px;border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.ti-red{background:rgba(255,255,255,.75)}
.ti-blue{background:rgba(255,255,255,.75)}
.ti-yellow{background:rgba(255,255,255,.75)}
.ti-green{background:rgba(255,255,255,.75)}
.ti-purple{background:rgba(255,255,255,.75)}
.theme-card-title{font-family:var(--h);font-size:.87rem;font-weight:700;color:var(--white);margin-bottom:.5rem;line-height:1.4}
.theme-card-body{font-size:.79rem;line-height:1.65;color:rgba(255,255,255,.42)}

/* ── FINALISTS — redesigned with photo cards for winners ── */
.finalists-section{background:var(--white)}
.yr-tabs{display:flex;gap:.4rem;margin-bottom:2rem;flex-wrap:wrap}
.yr-tab{font-family:var(--h);font-size:.8rem;font-weight:700;padding:.5rem 1.1rem;border-radius:50px;border:2px solid var(--border);background:transparent;color:var(--text-muted);cursor:pointer;transition:all .2s}
.yr-tab.active{background:var(--navy);color:var(--white);border-color:var(--navy)}
.yr-tab:hover:not(.active){border-color:#0042A6;color:var(--blue)}
.f-panel{display:none}
.f-panel.active{display:block}
.cat-label{font-family:var(--h);font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--red);margin-bottom:.9rem;margin-top:.5rem;display:flex;align-items:center;gap:.6rem}
.cat-label::after{content:'';flex:1;height:1px;background:var(--red-pale)}

/* Regular (non-winner) finalist cards — compact row */
.f-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(235px,1fr));gap:.85rem;margin-bottom:2rem}
.f-card{border:2px solid var(--border);border-radius:var(--r-md);padding:1.1rem 1.25rem;transition:all .2s}
.f-card:hover{border-color:#0042A6;background:var(--blue-pale);transform:translateY(-2px)}
.f-flag{font-size:1.5rem;margin-bottom:.3rem;line-height:1}
.f-country{font-family:var(--h);font-size:.67rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);margin-bottom:.22rem}
.f-name{font-family:var(--h);font-size:.93rem;font-weight:700;color:var(--text-dark);line-height:1.3;margin-bottom:.5rem}
.f-link{display:inline-flex;align-items:center;gap:.3rem;font-family:var(--h);font-size:.7rem;font-weight:700;color:var(--blue);text-decoration:none;background:var(--blue-pale);padding:.22rem .6rem;border-radius:50px;transition:all .2s}
.f-link:hover{background:var(--blue);color:var(--white)}

/* Winner photo cards — portrait layout with image placeholder */
.winners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:1.25rem;margin-bottom:2.5rem;
}
.winner-card{
  border-radius:var(--r-lg);overflow:hidden;
  background:var(--white);
  border:2px solid var(--border);
  box-shadow:0 4px 16px rgba(0,0,0,.06);
  transition:all .25s;
  display:flex;flex-direction:column;
}
.winner-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.12);border-color:var(--yellow)}
/* THE PHOTO AREA — tall 3:4 portrait rectangle */
.winner-photo{
  width:100%;aspect-ratio:3/4;
  background:linear-gradient(160deg,#1e3a56 0%,#0d2137 60%,#071524 100%);
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.winner-photo::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size:28px 28px;
}
.winner-photo img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:top center;display:block;
}
.winner-photo-placeholder{
  position:relative;z-index:1;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:.75rem;padding:2rem 1rem;text-align:center;
}
.winner-avatar-ring{
  width:88px;height:88px;border-radius:50%;
  border:2px dashed rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;
}
.winner-photo-hint{
  font-family:var(--h);font-size:.6rem;font-weight:600;
  color:rgba(255,255,255,0.3);letter-spacing:.08em;
  text-transform:uppercase;line-height:1.5;
}
.winner-ribbon{
  position:absolute;top:.65rem;left:.65rem;z-index:2;
  display:inline-flex;align-items:center;gap:.3rem;
  font-family:var(--h);font-size:.6rem;font-weight:800;
  background:var(--yellow-light);color:var(--navy);
  padding:.22rem .55rem;border-radius:50px;
  box-shadow:0 2px 8px rgba(0,0,0,.2);white-space:nowrap;
}
.winner-body{padding:.9rem 1rem 1rem;display:flex;flex-direction:column;gap:.15rem;flex:1}
.winner-flag{font-size:1.3rem;line-height:1;margin-bottom:.2rem}
.winner-country{font-family:var(--h);font-size:.63rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--yellow)}
.winner-name{font-family:var(--h);font-size:.9rem;font-weight:800;color:var(--text-dark);line-height:1.3;margin:.25rem 0 .5rem}
.winner-link{display:inline-flex;align-items:center;gap:.3rem;font-family:var(--h);font-size:.68rem;font-weight:700;color:var(--blue);text-decoration:none;background:var(--blue-pale);padding:.25rem .65rem;border-radius:50px;transition:all .2s;align-self:flex-start;margin-top:auto}
.winner-link:hover{background:var(--blue);color:var(--white)}

.winner-chip{display:inline-flex;align-items:center;gap:.3rem;font-family:var(--h);font-size:.63rem;font-weight:700;background:var(--yellow);color:var(--navy);padding:.18rem .5rem;border-radius:50px;margin-bottom:.32rem}
.coming-box{background:linear-gradient(135deg,#ebf3ff 0%,#fff0f2 100%);border:2px dashed var(--blue-light);border-radius:var(--r-md);padding:1.25rem 1.5rem;margin-top:.5rem;display:flex;align-items:center;gap:1rem}
.coming-icon{width:44px;height:44px;background:var(--blue-pale);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.coming-text{font-family:var(--h);font-size:.85rem;font-weight:700;color:var(--blue)}
.coming-text span{font-weight:400;color:var(--text-mid);display:block;font-family:var(--b);font-size:.79rem;margin-top:.15rem}

/* ── RULES ── */
.rules-section{background:var(--off-white)}
.rules-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.accordion{display:flex;flex-direction:column;gap:.5rem}
.acc-item{background:var(--white);border:2px solid var(--border);border-radius:var(--r-md);overflow:hidden;transition:border-color .2s}
.acc-item.open{border-color:#0042A6}
.acc-header{width:100%;background:none;border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;text-align:left;gap:1rem}
.acc-header-inner{display:flex;align-items:center;gap:.65rem}
.acc-icon{width:30px;height:30px;border-radius:var(--r-sm);flex-shrink:0;display:flex;align-items:center;justify-content:center}
.ai-blue{background:var(--blue-pale)}
.ai-red{background:var(--red-pale)}
.ai-yellow{background:var(--yellow-pale)}
.acc-label{font-family:var(--h);font-size:.88rem;font-weight:700;color:var(--text-dark)}
.acc-toggle{width:26px;height:26px;border-radius:50%;background:var(--blue-pale);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:700;flex-shrink:0;transition:all .2s}
.acc-item.open .acc-toggle{background:var(--blue);color:var(--white);transform:rotate(45deg)}
.acc-body{display:none;padding:0 1.25rem 1.1rem;font-size:.83rem;line-height:1.78;color:var(--text-mid)}
.acc-item.open .acc-body{display:block}
.elig-box{background:var(--white);border:2px solid var(--border);border-radius:var(--r-lg);padding:1.75rem}
.elig-box h3{font-family:var(--h);font-size:1.1rem;font-weight:800;color:var(--text-dark);margin-bottom:.3rem}
.elig-sub{font-size:.78rem;color:var(--text-muted);margin-bottom:1.25rem}
.elig-row{display:flex;align-items:flex-start;gap:.75rem;padding:.7rem 0;border-bottom:1px solid var(--border);font-size:.85rem;line-height:1.6;color:var(--text-mid)}
.elig-row:last-child{border-bottom:none}
.elig-check{width:22px;height:22px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.cats-box{margin-top:1.25rem;background:#0042A6;border-radius:var(--r-md);padding:1.5rem}
.cats-title{font-family:var(--h);font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--yellow-light);margin-bottom:1rem}
.cats-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.cat-box{background:rgba(255,255,255,.06);border-radius:var(--r-sm);padding:1rem}
.cat-box-icon{width:34px;height:34px;border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}
.cbi-red{background:rgba(232,24,47,.2)}
.cbi-yellow{background:rgba(255,199,44,.15)}
.cat-box-title{font-family:var(--h);font-size:.8rem;font-weight:700;color:var(--white);margin-bottom:.3rem}
.cat-box-desc{font-size:.73rem;color:rgba(255,255,255,.42);line-height:1.5}

/* ── APPLY BANNER ── */
.apply-banner{background:linear-gradient(135deg,var(--red) 0%,#8b0014 100%);padding:4rem 2.5rem;position:relative;overflow:hidden}
.apply-banner::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")}
.apply-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.apply-text h2{font-family:var(--h);font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;color:var(--white);margin-bottom:.5rem}
.apply-text p{font-size:.95rem;color:rgba(255,255,255,.68)}
.apply-text p strong{color:var(--yellow-light)}
.btn-apply{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--h);font-size:1rem;font-weight:800;background:var(--yellow-light);color:var(--navy);padding:1rem 2rem;border-radius:50px;text-decoration:none;transition:all .2s;white-space:nowrap;box-shadow:0 4px 20px rgba(0,0,0,.2)}
.btn-apply:hover{background:var(--white);transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,.3)}

/* ── CONTACT ── */
.contact-section{background:#0042A6;padding:6rem 2.5rem}
.contact-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.contact-details{display:flex;flex-direction:column;gap:1rem}
.c-item{display:flex;align-items:center;gap:1rem;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-md);padding:1rem 1.25rem;transition:background .2s;text-decoration:none}
.c-item:hover{background:rgba(255,255,255,.1)}
.c-item-icon{width:42px;height:42px;border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-red{background:rgba(255,255,255,.75)}
.ci-blue{background:rgba(255,255,255,.75)}
.ci-yellow{background:rgba(255,255,255,.75)}
.c-item-lbl{font-family:var(--h);font-size:.68rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:.15rem}
.c-item-val{font-family:var(--h);font-size:.88rem;font-weight:600;color:var(--white)}
.contact-img-col{position:relative}
.contact-img-frame{border-radius:var(--r-xl);overflow:hidden;aspect-ratio:4/3;box-shadow:0 20px 60px rgba(0,0,0,.4)}
.contact-img-frame img{width:100%;height:100%;object-fit:cover;display:block}
.contact-img-tag{position:absolute;bottom:1.5rem;left:1.5rem;background:var(--yellow-light);color:var(--navy);font-family:var(--h);font-size:.73rem;font-weight:800;padding:.4rem 1rem;border-radius:50px;display:flex;align-items:center;gap:.4rem}

/* ── FOOTER ── */
footer{background:#040d17;padding:1.75rem 2.5rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.footer-logo{font-family:var(--h);font-size:.78rem;font-weight:600;color:rgba(255,255,255,.22)}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-family:var(--h);font-size:.73rem;font-weight:600;color:rgba(255,255,255,.22);text-decoration:none;transition:color .2s}
.footer-links a:hover{color:rgba(255,255,255,.55)}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav{padding:0 1.25rem}
  .nav-links{display:none}
  section{padding:4rem 1.25rem}
  .hero{padding:6rem 1.25rem 4rem}
  .about-grid,.rules-grid,.contact-inner{grid-template-columns:1fr;gap:2rem}
  .apply-banner{padding:2.5rem 1.25rem}
  footer{padding:1.5rem 1.25rem}
  .logos-strip{padding:1.25rem 1.25rem}
  .hero-stats{flex-direction:column;gap:0;border-radius:var(--r-md)}
  .hero-stat{border-right:none;border-bottom:1px solid rgba(255,255,255,0.1)}
  .hero-stat:last-child{border-bottom:none}
  .winners-grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:1rem}
}
