/* ═══════════════════════════════════════════════
   SHIVALIK ACADEMY — style.css
   Color Palette: Navy #0f1c2e · Sky #1b6ca8 · Gold #f5a623
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink:   #0f1c2e;
  --sky:   #1b6ca8;
  --gold:  #f5a623;
  --mint:  #e8f4f0;
  --white: #ffffff;
  --soft:  #f7f9fc;
  --gray:  #718096;
  --border:#e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; }
h1,h2,h3,.serif { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── UTILITIES ── */
.center { text-align: center; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--mint); color: var(--sky);
  font-size: .74rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.testi-tag { background: rgba(245,166,35,.15); color: var(--gold); }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.55rem); line-height: 1.2; margin-bottom: 12px; }
.section-sub { color: var(--gray); font-size: 1rem; line-height: 1.75; max-width: 560px; margin-bottom: 36px; }
.section-head { margin-bottom: 0; }
.req { color: #e53e3e; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-weight: 700; padding: 13px 30px; border-radius: 50px;
  font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 20px rgba(245,166,35,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,.45); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--white);
  font-weight: 600; padding: 13px 26px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4); font-size: .95rem; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline-sky {
  display: inline-block; background: transparent; color: var(--sky);
  font-weight: 600; padding: 11px 24px; border-radius: 50px;
  border: 2px solid var(--sky); font-size: .9rem; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline-sky:hover { background: var(--sky); color: var(--white); }

.btn-call {
  display: inline-block; background: rgba(255,255,255,.1); color: var(--white);
  font-weight: 600; padding: 13px 26px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.3); font-size: .95rem; text-decoration: none;
  transition: background .2s;
}
.btn-call:hover { background: rgba(255,255,255,.18); }

.btn-submit {
  width: 100%; background: var(--sky); color: var(--white);
  padding: 14px; border: none; border-radius: 12px; font-size: .96rem;
  font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--ink); transform: translateY(-1px); }

#form-success, #career-success {
  display: none; color: var(--sky); font-weight: 600; text-align: center;
  margin-top: 12px; padding: 14px; background: var(--mint); border-radius: 10px;
}

/* ── NAV ── */
#main-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 2.5px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo-link { text-decoration: none; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.48rem; font-weight: 900; color: var(--sky); }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--ink); font-size: .91rem; letter-spacing: .3px; transition: color .2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--sky); transition: width .25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--sky); }
.nav-cta {
  background: var(--sky); color: var(--white); padding: 9px 22px; border-radius: 50px;
  font-weight: 600; font-size: .87rem; text-decoration: none; transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; display: block; transition: .3s; }
#mobile-menu { display: none; background: var(--white); border-top: 1px solid #eee; padding: 8px 24px 16px; }
#mobile-menu.open { display: block; }
#mobile-menu a { display: block; padding: 10px 0; font-weight: 500; color: var(--ink); text-decoration: none; border-bottom: 1px solid #f0f0f0; font-size: .95rem; }
#mobile-menu a.mobile-enroll { margin-top: 12px; background: var(--sky); color: var(--white); border-radius: 10px; padding: 12px 16px; text-align: center; border: none; font-weight: 700; }
@media(max-width:768px) { .hamburger { display: flex; } .nav-links, .nav-cta { display: none; } }

/* ── HERO (Homepage) ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f1c2e 0%, #1b4a7a 55%, #1b6ca8 100%);
  padding: 90px 24px 100px; min-height: 90vh; display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(245,166,35,.12); top: -100px; right: -80px; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(27,108,168,.25); bottom: -60px; left: -60px; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(245,166,35,.18); border: 1px solid rgba(245,166,35,.4);
  color: var(--gold); font-size: .77rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); line-height: 1.13; color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.06rem; line-height: 1.72; max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-item .lbl { color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .5px; margin-top: 2px; }
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px); border-radius: 22px; overflow: hidden;
}
.hero-card-header { padding: 28px 28px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card-header h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.15rem; margin-bottom: 14px; }
.boards-row { display: flex; gap: 8px; }
.board-chip {
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.35);
  color: var(--gold); font-size: .77rem; font-weight: 700; letter-spacing: .8px;
  padding: 5px 13px; border-radius: 50px;
}
.hero-card-body { padding: 20px 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.class-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.class-chip { background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 500; padding: 5px 13px; border-radius: 50px; }
.hero-card-footer { padding: 20px 28px; }
.hero-card-footer p { color: rgba(255,255,255,.5); font-size: .8rem; margin-bottom: 6px; }
.hero-phone { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); text-decoration: none; font-weight: 700; }
@media(max-width:900px) { .hero-inner { grid-template-columns: 1fr; } .hero-sub { max-width: 100%; } .hero-stats { justify-content: flex-start; } }

/* ── MARQUEE ── */
.marquee-strip { background: var(--ink); padding: 13px 0; overflow: hidden; }
.marquee-inner {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner span { color: rgba(255,255,255,.55); font-size: .82rem; font-weight: 500; letter-spacing: .8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── WHY SECTION ── */
.section-why { padding: 80px 24px; background: var(--soft); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.why-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  border: 1.5px solid var(--border); transition: transform .22s, border-color .22s, box-shadow .22s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: 0 8px 28px rgba(27,108,168,.1); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.why-card p { color: var(--gray); font-size: .88rem; line-height: 1.7; }

/* ── SUBJECTS PREVIEW ── */
.section-subjects-preview { padding: 80px 24px; background: var(--white); }
.subjects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.subjects-scroll { display: flex; flex-wrap: wrap; gap: 14px; }
.subject-pill {
  background: var(--soft); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 10px 20px; font-weight: 600; font-size: .9rem;
  color: var(--ink); transition: border-color .2s, background .2s, color .2s;
  cursor: default;
}
.subject-pill:hover { border-color: var(--sky); background: var(--sky); color: var(--white); }
.subject-pill span { margin-right: 6px; }

/* ── TESTIMONIALS ── */
.section-testi {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f1c2e 0%, #1b4a7a 100%);
}
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.testi-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 28px; position: relative; overflow: hidden;
  transition: transform .22s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-featured {
  background: rgba(245,166,35,.08); border-color: rgba(245,166,35,.25);
  grid-column: span 1;
}
.testi-quote-icon {
  position: absolute; top: -10px; right: 20px;
  font-size: 5rem; color: rgba(245,166,35,.12); font-family: Georgia, serif; font-weight: 900; line-height: 1;
}
.stars { color: var(--gold); font-size: .95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,.8); font-size: .91rem; line-height: 1.78; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .88rem; flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--white); font-size: .9rem; }
.testi-role { color: rgba(255,255,255,.45); font-size: .77rem; margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner { padding: 64px 24px; background: linear-gradient(135deg, var(--sky) 0%, var(--ink) 100%); }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2rem); color: var(--white); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.65); max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f1c2e 0%, #1b4a7a 60%, #1b6ca8 100%);
  padding: 80px 24px 90px; text-align: center;
}
.page-hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); line-height: 1.15; margin: 16px 0 18px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.72; max-width: 600px; margin: 0 auto; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.page-hero-wave svg { width: 100%; display: block; }

/* ── ABOUT PAGE ── */
.about-mission-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
@media(max-width:800px) { .about-mission-grid { grid-template-columns: 1fr; } }
.mission-visual { display: flex; flex-direction: column; gap: 16px; }
.mission-card-big {
  background: linear-gradient(135deg, var(--sky), var(--ink));
  border-radius: 22px; padding: 36px; color: var(--white); position: relative; overflow: hidden;
}
.mission-card-big::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(245,166,35,.12);
}
.mission-icon-big { font-size: 2.5rem; margin-bottom: 14px; }
.mission-card-big h3 { font-size: 1.5rem; margin-bottom: 10px; }
.mission-card-big p { color: rgba(255,255,255,.72); line-height: 1.75; font-size: .95rem; }
.mission-tagline { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); font-style: italic; }
.mission-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mstat { background: var(--white); border-radius: 14px; padding: 16px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.mstat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--sky); }
.mstat-lbl { color: var(--gray); font-size: .76rem; font-weight: 500; margin-top: 3px; display: block; }

.reasons-showcase { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.reason-showcase-card {
  background: var(--soft); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 28px; position: relative; overflow: hidden;
  transition: transform .22s, border-color .22s;
}
.reason-showcase-card:hover { transform: translateY(-4px); border-color: var(--sky); }
.reason-primary { background: linear-gradient(135deg, var(--sky) 0%, var(--ink) 100%); border-color: transparent; }
.reason-primary h3, .reason-primary p { color: var(--white) !important; }
.reason-primary .rs-number, .reason-primary .rs-icon { color: rgba(255,255,255,.4) !important; }
.rs-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(0,0,0,.06); line-height: 1; margin-bottom: 4px; }
.rs-icon { font-size: 1.8rem; margin-bottom: 10px; }
.reason-showcase-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.reason-showcase-card p { color: var(--gray); font-size: .88rem; line-height: 1.72; }

.tagline-section { background: linear-gradient(135deg, #0f1c2e, #1b4a7a); padding: 80px 24px; text-align: center; }
.tagline-inner { max-width: 700px; margin: 0 auto; }
.tagline-deco { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; }
.tagline-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); font-style: italic; margin-bottom: 14px; }
.tagline-inner p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; }

/* ── SERVICES PAGE ── */
.boards-classes-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:600px) { .boards-classes-row { grid-template-columns: 1fr; } }
.bc-card { background: var(--white); border-radius: 18px; padding: 28px; border: 1.5px solid var(--border); }
.bc-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 16px; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; font-size: .82rem; }
.boards-big { display: flex; gap: 12px; flex-wrap: wrap; }
.board-big-chip { padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: 1rem; letter-spacing: 1px; }
.cbse { background: rgba(27,108,168,.1); color: var(--sky); border: 2px solid var(--sky); }
.gseb { background: rgba(245,166,35,.1); color: #c47f00; border: 2px solid var(--gold); }
.icse { background: rgba(15,28,46,.08); color: var(--ink); border: 2px solid var(--ink); }
.classes-big-row { display: flex; gap: 10px; flex-wrap: wrap; }
.class-big-chip {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--soft); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; color: var(--ink);
}
.class-big-chip.highlight { background: var(--sky); color: var(--white); border-color: var(--sky); }

.stream-block { margin-bottom: 48px; }
.stream-label { margin-bottom: 20px; }
.stream-badge { display: inline-block; padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: .88rem; }
.foundation-badge { background: rgba(27,108,168,.1); color: var(--sky); border: 1.5px solid rgba(27,108,168,.25); }
.science-badge { background: rgba(72,187,120,.1); color: #276749; border: 1.5px solid rgba(72,187,120,.3); }
.commerce-badge { background: rgba(245,166,35,.1); color: #8a5700; border: 1.5px solid rgba(245,166,35,.3); }
.subjects-detailed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.subject-detail-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.subject-detail-card:hover { border-color: var(--sky); box-shadow: 0 6px 22px rgba(27,108,168,.1); transform: translateY(-3px); }
.sd-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.sd-body h4 { font-weight: 700; font-size: .97rem; margin-bottom: 7px; }
.sd-body p { color: var(--gray); font-size: .85rem; line-height: 1.68; margin-bottom: 12px; }
.sd-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.sd-tags span { background: var(--soft); border: 1px solid var(--border); color: var(--gray); font-size: .74rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }

.method-steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center; }
.method-step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 24px 16px; }
.ms-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--sky); color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.method-step h4 { font-weight: 700; margin-bottom: 8px; font-size: .97rem; }
.method-step p { color: var(--gray); font-size: .85rem; line-height: 1.68; }
.ms-arrow { font-size: 1.5rem; color: var(--border); align-self: center; padding: 0 8px; margin-top: -18px; }
@media(max-width:600px) { .ms-arrow { display: none; } .method-steps { gap: 12px; } }

/* ── CONTACT PAGE ── */
.quick-contact-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.quick-contact-card {
  background: var(--white); border-radius: 16px; padding: 22px 18px;
  border: 1.5px solid var(--border); display: flex; gap: 14px; align-items: center;
  text-decoration: none; color: var(--ink); transition: border-color .2s, box-shadow .2s, transform .2s;
}
.quick-contact-card:hover { border-color: var(--sky); box-shadow: 0 6px 20px rgba(27,108,168,.1); transform: translateY(-3px); }
.qc-icon { font-size: 1.8rem; flex-shrink: 0; }
.quick-contact-card h4 { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.quick-contact-card p { font-size: .88rem; color: var(--sky); font-weight: 600; margin-bottom: 2px; }
.quick-contact-card span { font-size: .76rem; color: var(--gray); }

.contact-main-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
@media(max-width:800px) { .contact-main-grid { grid-template-columns: 1fr; } }
.contact-detail-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cdl-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--soft); border-radius: 12px; border: 1px solid var(--border); }
.cdl-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cdl-icon.sky { background: rgba(27,108,168,.1); }
.cdl-icon.gold { background: rgba(245,166,35,.1); }
.cdl-icon.mint { background: var(--mint); }
.cdl-icon.soft { background: var(--soft); border: 1px solid var(--border); }
.cdl-item strong { display: block; font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; margin-bottom: 2px; }
.cdl-item a, .cdl-item span { color: var(--ink); font-weight: 500; font-size: .92rem; text-decoration: none; }
.cdl-item a:hover { color: var(--sky); }
.contact-whatsapp-note {
  background: linear-gradient(135deg, #25d366, #128c7e); border-radius: 14px; padding: 18px;
  display: flex; gap: 14px; align-items: flex-start; color: var(--white);
}
.wa-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-whatsapp-note strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.contact-whatsapp-note p { font-size: .85rem; line-height: 1.6; opacity: .9; }
.contact-whatsapp-note a { color: rgba(255,255,255,.9); font-weight: 700; }
.contact-form-panel { background: var(--soft); border-radius: 22px; padding: 38px; border: 1.5px solid var(--border); }

.subject-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.checkbox-label {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--border);
  padding: 6px 12px; border-radius: 50px; font-size: .84rem; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.checkbox-label:hover { border-color: var(--sky); }
.checkbox-label input { accent-color: var(--sky); }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; background: var(--soft); border: none; padding: 18px 22px;
  font-family: 'DM Sans', sans-serif; font-size: .97rem; font-weight: 600; cursor: pointer;
  text-align: left; color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: var(--mint); }
.faq-arrow { font-size: .8rem; color: var(--sky); transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 16px 22px 20px; color: var(--gray); line-height: 1.72; font-size: .93rem; }

/* ── CAREERS PAGE ── */
.career-perks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.career-perk-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 26px 22px;
  transition: transform .2s, border-color .2s;
}
.career-perk-card:hover { transform: translateY(-4px); border-color: var(--sky); }
.cp-icon { font-size: 2rem; margin-bottom: 14px; }
.career-perk-card h4 { font-weight: 700; margin-bottom: 8px; }
.career-perk-card p { color: var(--gray); font-size: .88rem; line-height: 1.7; }

.looking-for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media(max-width:800px) { .looking-for-grid { grid-template-columns: 1fr; } }
.looking-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.looking-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: #4a5568; }
.ll-check { color: var(--sky); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.apply-steps-card {
  background: linear-gradient(135deg, var(--sky), var(--ink)); border-radius: 22px; padding: 36px;
}
.apply-steps-card h3 { color: var(--white); margin-bottom: 8px; }
.apply-step { display: flex; gap: 16px; margin-bottom: 22px; }
.as-num {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15);
  color: var(--gold); font-weight: 900; font-family: 'Playfair Display', serif;
  font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.apply-step strong { display: block; color: var(--white); font-weight: 700; margin-bottom: 5px; }
.apply-step p { color: rgba(255,255,255,.65); font-size: .87rem; line-height: 1.65; }
.apply-actions { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
.btn-gold-full {
  display: block; background: var(--gold); color: var(--ink);
  font-weight: 700; padding: 14px 20px; border-radius: 12px;
  text-decoration: none; text-align: center; font-size: .95rem;
  transition: opacity .2s, transform .2s;
}
.btn-gold-full:hover { opacity: .88; transform: translateY(-2px); }
.apply-email-note { text-align: center; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 10px; }
.apply-or { text-align: center; color: rgba(255,255,255,.3); font-size: .8rem; margin: 14px 0; }
.apply-phone-link { display: block; text-align: center; font-weight: 700; color: var(--gold); text-decoration: none; font-size: 1.1rem; }
.career-form-wrap { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: 22px; padding: 40px; border: 1.5px solid var(--border); }

/* ── FORMS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .84rem; color: #4a5568; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: .92rem; font-family: 'DM Sans', sans-serif;
  background: var(--white); color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(27,108,168,.08); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,.5); padding: 52px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo-text { font-size: 1.35rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: .85rem; line-height: 1.72; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a { font-size: 1.2rem; text-decoration: none; transition: opacity .2s; }
.footer-socials a:hover { opacity: .7; }
.footer-col h5 { font-weight: 700; color: var(--white); font-size: .88rem; margin-bottom: 14px; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul span { color: rgba(255,255,255,.4); font-size: .84rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom span { font-size: .8rem; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  background: var(--gold); color: var(--ink); font-weight: 700;
  padding: 12px 22px; border-radius: 50px; text-decoration: none; font-size: .88rem;
  box-shadow: 0 6px 22px rgba(245,166,35,.4); transition: transform .2s, box-shadow .2s;
}
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,.5); }
@media(max-width:500px) { .float-cta { bottom: 16px; right: 16px; padding: 11px 18px; font-size: .82rem; } }

/* ── SCROLL ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
