/* =============================================
   IIMST - Main Stylesheet
   Inspiring Institute of Management Science & Technology
   ============================================= */

/* ── GOOGLE FONTS (loaded in HTML) ── */
/* ── CSS VARIABLES ── */
:root {
  --green: #0D5C55; --green-d: #083d38; --green-l: #4D8F7A; --green-xl: #EEF6F4;
  --orange: #F7931E; --orange-d: #d97b0e; --orange-l: #ffc27a;
  --cream: #faf8f4; --white: #fff;
  --text: #0f1f1e; --muted: #5a7270; --light: #94b0ad;
  --border: rgba(13,92,85,.1);
  --s1: 0 2px 12px rgba(0,0,0,.06);
  --s2: 0 8px 32px rgba(0,0,0,.1);
  --s3: 0 24px 64px rgba(0,0,0,.15);
  --s4: 0 40px 100px rgba(0,0,0,.2);
  --sa: 0 8px 28px rgba(247,147,30,.32);
  --sg: 0 8px 28px rgba(13,92,85,.28);
  --r1: 6px; --r2: 14px; --r3: 22px; --r4: 32px; --r5: 48px;
  --ease: cubic-bezier(.4,0,.2,1);
  --tr: all .3s var(--ease);
  --pf: var(--pf);
  --pb: var(--pb);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--pb); color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--green-l); border-radius: 3px; }

/* ── UTILITIES ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
.sec-pad { padding: 110px 0; }
.tag { display: inline-flex; align-items: center; gap: 7px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); background: rgba(247,147,30,.1); padding: 5px 15px; border-radius: 100px; border: 1px solid rgba(247,147,30,.2); margin-bottom: 14px; }
.tag::before { content: ''; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }
.tag-light { background: rgba(247,147,30,.2); border-color: rgba(247,147,30,.4); color: var(--orange-l); }
.tag-light::before { background: var(--orange); }
.sec-h { font-family: var(--pf); font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--text); line-height: 1.2; letter-spacing: -.02em; }
.sec-h em { font-style: italic; color: var(--green); }
.sec-h-white { color: #fff; }
.sec-h-white em { color: var(--orange-l); }
.sec-p { font-size: .98rem; color: var(--muted); line-height: 1.78; max-width: 580px; }
.sec-p-white { color: rgba(255,255,255,.7); }
.center { text-align: center; }
.center .sec-p { margin: 14px auto 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-family: var(--pb); font-weight: 600; font-size: .88rem; transition: var(--tr); letter-spacing: .02em; cursor: pointer; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--sa); border: none; }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(247,147,30,.46); }
.btn-secondary { background: #fff; color: var(--green); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--green); background: var(--green-xl); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: .92rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ── */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rvl { opacity: 0; transform: translateX(-32px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rvr { opacity: 0; transform: translateX(32px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rv.vis, .rvl.vis, .rvr.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; } .d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; } .d5 { transition-delay: .35s; } .d6 { transition-delay: .42s; }

/* ── LOADER ── */
#loader { position: fixed; inset: 0; background: var(--green-d); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transition: opacity .5s ease, visibility .5s ease; }
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-logo { height: 80px; width: auto; animation: ldpulse 1.5s ease-in-out infinite; filter: brightness(0) invert(1); }
.ld-sub { font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .16em; text-transform: uppercase; }
.ld-bar-wrap { width: 180px; height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.ld-bar { height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-l)); border-radius: 2px; animation: ldfill 1.3s ease-in-out forwards; }
@keyframes ldpulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes ldfill { 0% { width: 0; } 100% { width: 100%; } }

/* ── NAVBAR ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--tr); }
#nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: var(--s1); padding: 10px 0; }
.nav-inner { max-width: 1300px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 46px; width: auto; transition: var(--tr); }
#nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nl { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.88); padding: 8px 18px; border-radius: 100px; transition: var(--tr); }
.nl:hover { background: rgba(255,255,255,.12); color: #fff; }
#nav.scrolled .nl { color: var(--text); }
#nav.scrolled .nl:hover { background: var(--green-xl); color: var(--green); }
.nav-apply { background: var(--orange); color: #fff !important; padding: 10px 24px !important; border-radius: 100px; font-weight: 600; box-shadow: var(--sa); margin-left: 12px; }
.nav-apply:hover { background: var(--orange-d) !important; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(247,147,30,.45) !important; }
#nav:not(.scrolled) .nav-apply { background: var(--orange); }
.ham { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.ham span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); display: block; }
#nav.scrolled .ham span { background: var(--text); }
.ham.on span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.on span:nth-child(2) { opacity: 0; }
.ham.on span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mob-menu { display: none; position: fixed; inset: 0; background: var(--green-d); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; transition: opacity .3s ease; }
.mob-menu.on { opacity: 1; }
.mob-menu .nl { font-size: 1.5rem; color: #fff; font-family: var(--pf); font-weight: 400; padding: 12px 24px; }
.mob-menu .nl:hover { background: rgba(255,255,255,.1); }
.mob-close { position: absolute; top: 24px; right: 44px; font-size: 1.8rem; color: #fff; cursor: pointer; }
.mob-logo { height: 48px; filter: brightness(0) invert(1); margin-bottom: 8px; }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#041e1b 0%,#083d38 35%,#0D5C55 65%,#1a7a70 100%); }
.hero-img-overlay { position: absolute; inset: 0; overflow: hidden; }
.hero-img-overlay img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-img-overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(4,30,27,.88) 45%, rgba(4,30,27,.15) 80%, transparent 100%); }
.hero-wrap { max-width: 1300px; margin: 0 auto; padding: 130px 48px 90px; position: relative; z-index: 5; width: 100%; }
.hero-inner { max-width: 660px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(247,147,30,.2); border: 1px solid rgba(247,147,30,.38); color: var(--orange-l); padding: 7px 18px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: bpulse 2s infinite; }
@keyframes bpulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }
.hero-h1 { font-family: var(--pf); font-size: clamp(2.8rem,5.5vw,5rem); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 26px; }
.hero-h1 em { font-style: italic; color: var(--orange-l); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 40px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.h-stat-num { font-family: var(--pf); font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; }
.h-stat-num span { font-size: 1.4rem; color: var(--orange-l); }
.h-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; letter-spacing: .04em; }
.hero-chips { position: absolute; right: 48px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; z-index: 6; }
.h-chip { background: rgba(255,255,255,.97); border-radius: var(--r2); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--s3); min-width: 190px; animation: flt 4s ease-in-out infinite; }
.h-chip:nth-child(2) { animation-delay: -1.3s; animation-duration: 5s; }
.h-chip:nth-child(3) { animation-delay: -.7s; animation-duration: 4.5s; }
.h-chip:nth-child(4) { animation-delay: -2s; animation-duration: 5.5s; }
@keyframes flt { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.h-chip-ico { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.h-chip-ico-1 { background: rgba(247,147,30,.12); }
.h-chip-ico-2 { background: rgba(13,92,85,.1); }
.h-chip-ico-3 { background: rgba(77,143,122,.12); }
.h-chip-ico-4 { background: rgba(247,147,30,.12); }
.h-chip-val { font-weight: 700; font-size: .95rem; color: var(--text); line-height: 1.1; }
.h-chip-lbl { font-size: .68rem; color: var(--muted); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; z-index: 5; }
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom,rgba(255,255,255,.4),transparent); animation: sb 2s ease-in-out infinite; }
@keyframes sb { 0%,100% { transform:scaleY(1); opacity:1; } 50% { transform:scaleY(.5); opacity:.4; } }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-visual { position: relative; }
.ab-img-main { border-radius: var(--r3); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--s4); }
.ab-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ab-img-main:hover img { transform: scale(1.04); }
.ab-img-sm { position: absolute; bottom: -32px; right: -32px; width: 56%; border-radius: var(--r3); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--s4); border: 5px solid #fff; }
.ab-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.ab-badge { position: absolute; top: 28px; right: -24px; background: #fff; border-radius: var(--r2); padding: 16px 20px; box-shadow: var(--s3); text-align: center; min-width: 148px; }
.ab-badge-top { font-size: .62rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.ab-badge-bot { font-size: .8rem; font-weight: 700; color: var(--green); line-height: 1.3; }
.about-content .sec-p { margin-top: 16px; margin-bottom: 32px; }
.ab-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ab-pill { background: #fff; border-radius: var(--r2); padding: 20px; border: 1px solid var(--border); transition: var(--tr); }
.ab-pill:hover { box-shadow: var(--s2); transform: translateY(-3px); }
.ab-pill-ico { width: 42px; height: 42px; background: linear-gradient(135deg,var(--green),var(--green-l)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 1.05rem; }
.ab-pill-t { font-weight: 700; font-size: .88rem; color: var(--text); margin-bottom: 4px; }
.ab-pill-d { font-size: .76rem; color: var(--muted); line-height: 1.55; }

/* ── WHY HOSPITALITY ── */
#why-hosp { background: linear-gradient(145deg,var(--green-d),var(--green),#1a7a70); position: relative; overflow: hidden; }
#why-hosp::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 50%,rgba(247,147,30,.12) 0%,transparent 50%); pointer-events: none; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 56px; }
.stat-c { background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r3); padding: 38px 26px; text-align: center; transition: var(--tr); }
.stat-c:hover { background: rgba(255,255,255,.18); transform: translateY(-6px); }
.stat-n { font-family: var(--pf); font-size: 3rem; font-weight: 700; color: var(--orange-l); line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.feat-c { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r2); padding: 24px; transition: var(--tr); }
.feat-c:hover { background: rgba(255,255,255,.14); }
.feat-ico { width: 44px; height: 44px; background: rgba(247,147,30,.22); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.feat-t { font-weight: 700; font-size: .88rem; color: #fff; margin-bottom: 4px; }
.feat-d { font-size: .76rem; color: rgba(255,255,255,.6); line-height: 1.55; }

/* ── GALLERY ── */
#gallery { height: 400px; display: flex; overflow: hidden; }
.g-item { flex: 1; overflow: hidden; position: relative; transition: flex .5s var(--ease); cursor: pointer; }
.g-item:hover { flex: 2.5; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(4,30,27,.7) 0%,transparent 50%); transition: var(--tr); }
.g-item:hover .g-item-overlay { background: linear-gradient(to top,rgba(4,30,27,.5) 0%,transparent 40%); }
.g-item-label { position: absolute; bottom: 18px; left: 18px; color: #fff; font-weight: 600; font-size: .82rem; opacity: 0; transform: translateY(8px); transition: var(--tr); letter-spacing: .04em; }
.g-item:hover .g-item-label { opacity: 1; transform: translateY(0); }

/* ── COURSES ── */
#courses { background: #fff; }
.courses-intro-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 56px; }
.courses-intro .sec-p { margin-top: 16px; margin-bottom: 28px; }
.course-collage { position: relative; height: 480px; }
.ci-main { position: absolute; right: 0; top: 0; width: 70%; height: 300px; border-radius: var(--r3); overflow: hidden; box-shadow: var(--s4); }
.ci-main img { width: 100%; height: 100%; object-fit: cover; }
.ci-sm1 { position: absolute; left: 0; bottom: 0; width: 50%; height: 200px; border-radius: var(--r3); overflow: hidden; box-shadow: var(--s3); border: 4px solid #fff; }
.ci-sm1 img { width: 100%; height: 100%; object-fit: cover; }
.ci-sm2 { position: absolute; right: 0; bottom: 0; width: 37%; height: 175px; border-radius: var(--r3); overflow: hidden; box-shadow: var(--s3); border: 4px solid #fff; }
.ci-sm2 img { width: 100%; height: 100%; object-fit: cover; }
.courses-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.c-card { background: var(--cream); border-radius: var(--r3); overflow: hidden; border: 1px solid var(--border); transition: var(--tr); }
.c-card:hover { transform: translateY(-8px); box-shadow: var(--s3); border-color: transparent; }
.c-card.feat { border: 2px solid var(--orange); background: #fff; grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }
.c-head { padding: 28px 24px 22px; position: relative; overflow: hidden; }
.c-card:not(.feat) .c-head { background: linear-gradient(145deg,var(--green),var(--green-l)); }
.c-card.feat .c-head { background: linear-gradient(145deg,var(--orange-d),var(--orange)); padding: 36px 36px 28px; }
.c-head::after { content: ''; position: absolute; right: -14px; top: -14px; width: 80px; height: 80px; background: rgba(255,255,255,.07); border-radius: 50%; }
.c-ico { width: 48px; height: 48px; background: rgba(255,255,255,.18); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 14px; }
.c-name { font-family: var(--pf); font-size: 1.2rem; font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.c-card.feat .c-name { font-size: 1.6rem; }
.c-dur { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.18); color: rgba(255,255,255,.92); padding: 3px 10px; border-radius: 100px; font-size: .67rem; font-weight: 500; }
.c-intern { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.95); color: var(--green); padding: 3px 9px; border-radius: 100px; font-size: .6rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.c-card.feat .c-intern { color: var(--orange-d); }
.c-body { padding: 22px 24px 26px; }
.c-card.feat .c-body { padding: 36px 36px 40px; }
.c-desc { font-size: .8rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.c-pts { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.c-pt { display: flex; align-items: center; gap: 7px; font-size: .77rem; color: var(--text); }
.c-pt::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.c-card.feat .c-pt::before { background: var(--orange); }
.c-btn { display: block; text-align: center; padding: 11px; border-radius: 100px; font-weight: 600; font-size: .82rem; transition: var(--tr); }
.c-btn-s { background: #fff; color: var(--green); border: 2px solid var(--border); }
.c-btn-s:hover { border-color: var(--green); background: var(--green-xl); }
.c-btn-p { background: var(--orange); color: #fff; box-shadow: var(--sa); }
.c-btn-p:hover { background: var(--orange-d); transform: translateY(-2px); }

/* ── WHY IIMST ── */
#why-iimst { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-c { background: #fff; border-radius: var(--r3); padding: 36px 28px; border: 1px solid var(--border); transition: var(--tr); position: relative; overflow: hidden; }
.why-c::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--green),var(--green-l)); transform: scaleX(0); transform-origin: left; transition: var(--tr); }
.why-c:hover::before { transform: scaleX(1); }
.why-c:hover { box-shadow: var(--s2); transform: translateY(-6px); }
.why-n { font-family: var(--pf); font-size: 3.5rem; font-weight: 300; color: rgba(13,92,85,.07); line-height: 1; position: absolute; top: 14px; right: 18px; }
.why-ico { width: 54px; height: 54px; background: linear-gradient(135deg,var(--green),var(--green-l)); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; box-shadow: var(--sg); }
.why-t { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.why-d { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ── INTERNSHIPS ── */
#intern { background: #fff; }
.intern-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intern-vis { position: relative; }
.i-main { border-radius: var(--r3); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--s4); }
.i-main img { width: 100%; height: 100%; object-fit: cover; }
.i-sm { position: absolute; bottom: -30px; right: -30px; width: 55%; border-radius: var(--r3); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--s3); border: 5px solid #fff; }
.i-sm img { width: 100%; height: 100%; object-fit: cover; }
.i-badge { position: absolute; top: 28px; left: -28px; background: #fff; border-radius: var(--r2); padding: 16px 20px; box-shadow: var(--s3); text-align: center; }
.i-badge-val { font-family: var(--pf); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1; }
.i-badge-lbl { font-size: .68rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.intern-content .sec-p { margin-top: 14px; margin-bottom: 26px; }
.country-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.cntry { background: var(--cream); border-radius: var(--r2); padding: 14px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); transition: var(--tr); }
.cntry:hover { border-color: var(--green); background: var(--green-xl); transform: translateX(4px); }
.cflag { font-size: 1.8rem; line-height: 1; }
.cname { font-weight: 600; font-size: .88rem; color: var(--text); }
.ctype { font-size: .7rem; color: var(--muted); }
.intern-note { font-size: .82rem; color: var(--muted); margin-bottom: 24px; padding: 14px 18px; background: var(--green-xl); border-radius: var(--r2); border-left: 3px solid var(--green); }

/* ── EXPOSURE ── */
#exposure { background: var(--cream); }
.exp-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.exp-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px; gap: 14px; }
.exp-img { border-radius: var(--r2); overflow: hidden; transition: var(--tr); }
.exp-img:hover { transform: scale(1.02); box-shadow: var(--s2); }
.exp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-img.tall { grid-row: 1/3; }
.exp-content .sec-p { margin-top: 16px; margin-bottom: 24px; }
.exp-list { display: flex; flex-direction: column; gap: 14px; }
.exp-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: #fff; border-radius: var(--r2); border: 1px solid var(--border); transition: var(--tr); }
.exp-item:hover { border-color: var(--green-xl); box-shadow: var(--s1); }
.ei-ico { width: 38px; height: 38px; background: linear-gradient(135deg,var(--green),var(--green-l)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.ei-t { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 3px; }
.ei-d { font-size: .76rem; color: var(--muted); line-height: 1.5; }

/* ── PLACEMENTS ── */
#placements { background: linear-gradient(145deg,var(--green-d),var(--green)); position: relative; overflow: hidden; }
#placements::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.p-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 52px; }
.p-stat { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r3); padding: 32px 22px; text-align: center; transition: var(--tr); }
.p-stat:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.ps-ico { width: 50px; height: 50px; background: rgba(255,255,255,.15); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin: 0 auto 14px; }
.ps-n { font-family: var(--pf); font-size: 2.5rem; font-weight: 700; color: var(--orange-l); line-height: 1; margin-bottom: 6px; }
.ps-l { font-size: .78rem; color: rgba(255,255,255,.62); }
.p-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.p-feat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r2); padding: 28px; display: flex; align-items: flex-start; gap: 14px; transition: var(--tr); }
.p-feat:hover { background: rgba(255,255,255,.14); }
.pf-ico { width: 44px; height: 44px; background: rgba(247,147,30,.25); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.pf-t { font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: 5px; }
.pf-d { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.55; }

/* ── FEES ── */
#fees { background: var(--cream); }
.fees-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.fee-c { background: #fff; border-radius: var(--r4); padding: 44px 36px; box-shadow: var(--s2); border: 1px solid var(--border); transition: var(--tr); position: relative; overflow: hidden; }
.fee-c::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--green),var(--green-l)); }
.fee-c:hover { transform: translateY(-8px); box-shadow: var(--s3); }
.fee-c.pop { background: linear-gradient(145deg,var(--green-d),var(--green)); border: none; box-shadow: var(--s3); }
.fee-c.pop::before { background: linear-gradient(90deg,var(--orange),var(--orange-l)); }
.pop-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(247,147,30,.22); border: 1px solid rgba(247,147,30,.45); color: var(--orange-l); padding: 4px 13px; border-radius: 100px; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.fee-name { font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.fee-c.pop .fee-name { color: rgba(255,255,255,.62); }
.fee-amt { font-family: var(--pf); font-size: 3.2rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 4px; }
.fee-c.pop .fee-amt { color: #fff; }
.fee-curr { font-size: 1.5rem; font-weight: 300; }
.fee-inst { font-size: .8rem; color: var(--muted); margin-bottom: 26px; }
.fee-c.pop .fee-inst { color: rgba(255,255,255,.58); }
.fee-div { height: 1px; background: var(--border); margin-bottom: 22px; }
.fee-c.pop .fee-div { background: rgba(255,255,255,.14); }
.fee-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.fee-li { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--text); }
.fee-c.pop .fee-li { color: rgba(255,255,255,.84); }
.fee-li::before { content: '✓'; width: 18px; height: 18px; background: rgba(13,92,85,.1); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 700; flex-shrink: 0; }
.fee-c.pop .fee-li::before { background: rgba(247,147,30,.28); color: var(--orange-l); }

/* ── TESTIMONIALS ── */
#testi { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-c { background: var(--cream); border-radius: var(--r3); padding: 32px; border: 1px solid var(--border); transition: var(--tr); position: relative; }
.testi-c:hover { box-shadow: var(--s2); transform: translateY(-4px); background: #fff; }
.testi-bg-q { position: absolute; top: 20px; right: 24px; font-family: var(--pf); font-size: 6rem; color: var(--green); opacity: .06; line-height: 1; pointer-events: none; }
.testi-img { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 3px solid var(--green-xl); margin-bottom: 16px; }
.testi-img img { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--orange); font-size: .88rem; }
.testi-txt { font-size: .86rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testi-role { font-size: .72rem; color: var(--muted); }

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--r2); border: 1px solid var(--border); overflow: hidden; transition: var(--tr); }
.faq-item.open { border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,92,85,.07); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; text-align: left; font-weight: 600; font-size: .9rem; color: var(--text); cursor: pointer; transition: var(--tr); gap: 14px; }
.faq-q:hover, .faq-item.open .faq-q { color: var(--green); }
.faq-ico { width: 26px; height: 26px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .78rem; color: var(--green); border: 1px solid var(--border); transition: var(--tr); }
.faq-item.open .faq-ico { background: var(--green); color: #fff; transform: rotate(180deg); border-color: var(--green); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-ans-in { padding: 0 22px 20px; font-size: .86rem; color: var(--muted); line-height: 1.78; }

/* ── CTA ── */
#cta-fin { background: linear-gradient(145deg,#041e1b,var(--green-d)); position: relative; overflow: hidden; }
#cta-fin::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 50%,rgba(247,147,30,.12) 0%,transparent 55%); pointer-events: none; }
.cta-inner { text-align: center; position: relative; max-width: 680px; margin: 0 auto; }
.cta-h { font-family: var(--pf); font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.cta-h em { font-style: italic; color: var(--orange-l); }
.cta-p { font-size: .98rem; color: rgba(255,255,255,.68); line-height: 1.78; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; align-items: start; }
.contact-info .sec-p { margin: 14px 0 28px; }
.c-dets { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.c-det { display: flex; align-items: flex-start; gap: 14px; }
.c-det-ico { width: 42px; height: 42px; background: linear-gradient(135deg,var(--green),var(--green-l)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.c-det-lbl { font-size: .67rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.c-det-val { font-weight: 500; font-size: .88rem; color: var(--text); }
.wa-btn { display: inline-flex; align-items: center; gap: 9px; background: #25D366; color: #fff; padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: .88rem; transition: var(--tr); box-shadow: 0 6px 22px rgba(37,211,102,.3); }
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.42); }
.form-wrap { background: #fff; border-radius: var(--r4); padding: 44px; box-shadow: var(--s2); }
.form-h { font-family: var(--pf); font-size: 1.8rem; font-weight: 600; color: var(--text); margin-bottom: 28px; }
.fg { margin-bottom: 18px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.flbl { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; }
.finp, .fsel, .ftxt { width: 100%; padding: 12px 15px; background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--r1); font-family: var(--pb); font-size: .86rem; color: var(--text); transition: var(--tr); outline: none; -webkit-appearance: none; }
.finp:focus, .fsel:focus, .ftxt:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(13,92,85,.09); }
.ftxt { resize: vertical; min-height: 95px; }
.fsub { width: 100%; padding: 15px; background: var(--orange); color: #fff; border-radius: 100px; font-weight: 700; font-size: .92rem; box-shadow: var(--sa); transition: var(--tr); cursor: pointer; border: none; font-family: var(--pb); }
.fsub:hover { background: var(--orange-d); transform: translateY(-2px); }

/* ── FOOTER ── */
#footer { background: var(--green-d); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.ftr-logo { height: 50px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.ftr-desc { font-size: .82rem; color: rgba(255,255,255,.46); line-height: 1.78; margin-bottom: 22px; max-width: 280px; }
.socials { display: flex; gap: 9px; }
.soc { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.52); transition: var(--tr); border: 1px solid rgba(255,255,255,.09); }
.soc:hover { background: var(--green-l); color: #fff; border-color: var(--green-l); }
.fcol-t { font-weight: 700; font-size: .82rem; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flink { font-size: .82rem; color: rgba(255,255,255,.46); transition: var(--tr); }
.flink:hover { color: var(--orange-l); padding-left: 4px; }
.fci { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; color: rgba(255,255,255,.46); margin-bottom: 11px; line-height: 1.5; }
.fbot { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.fcopy { font-size: .76rem; color: rgba(255,255,255,.3); }
.flegal { display: flex; gap: 18px; }
.flegal a { font-size: .76rem; color: rgba(255,255,255,.3); transition: var(--tr); }
.flegal a:hover { color: rgba(255,255,255,.7); }

/* ── FLOATING ELEMENTS ── */
.float-wa { position: fixed; bottom: 32px; right: 32px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 6px 24px rgba(37,211,102,.44); z-index: 998; transition: var(--tr); }
.float-wa:hover { transform: scale(1.12); }
.mob-apply { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; padding: 14px 20px; background: linear-gradient(135deg,var(--orange),var(--orange-d)); color: #fff; font-weight: 700; font-size: .94rem; text-align: center; }
