/* ===================================================================
   VAMIKA ACADEMY — Global Stylesheet
   Theme: Deep Maroon (#7a0c10) + Gold (#d4af37), inspired by the logo
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --maroon: #7a0c10;
  --maroon-dark: #5a070b;
  --maroon-light: #9c1318;
  --gold: #d4af37;
  --gold-light: #f1c75b;
  --gold-dark: #b8902a;
  --ink: #2b2222;
  --muted: #6c6360;
  --cream: #fdf8f1;
  --cream-2: #f7eee2;
  --white: #ffffff;
  --line: #ece2d4;
  --shadow-sm: 0 2px 10px rgba(122, 12, 16, .08);
  --shadow-md: 0 10px 30px rgba(122, 12, 16, .12);
  --shadow-lg: 0 20px 50px rgba(122, 12, 16, .18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--ink); }
section { position: relative; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-maroon { color: var(--maroon); }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; }
.hidden { display: none !important; }

.section { padding: 84px 0; }
.section--cream { background: var(--cream-2); }
.section--maroon { background: var(--maroon); color: #fff; }
.section--maroon h1, .section--maroon h2, .section--maroon h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  font-family: var(--font-head); font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  letter-spacing: .2px; white-space: nowrap;
}
.btn i { font-size: .9em; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--maroon-dark); box-shadow: 0 8px 22px rgba(212, 175, 55, .35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(212, 175, 55, .5); }
.btn-maroon { background: var(--maroon); color: #fff; }
.btn-maroon:hover { background: var(--maroon-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold-dark); }
.btn-outline:hover { background: var(--gold); color: var(--maroon-dark); }
.btn-ghost-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--maroon); }

/* ---------- Section Heading ---------- */
.sec-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.sec-head .eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px; position: relative; padding: 0 16px;
}
.sec-head .eyebrow::before, .sec-head .eyebrow::after {
  content: ""; position: absolute; top: 50%; width: 22px; height: 2px; background: var(--gold);
}
.sec-head .eyebrow::before { left: -14px; } .sec-head .eyebrow::after { right: -14px; }
.sec-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ===================================================================
   HEADER / NAVBAR
   =================================================================== */
.topbar {
  background: var(--maroon-dark); color: #f3e9d6; font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #f3e9d6; transition: var(--transition); }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-left span, .topbar .tb-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-left i { color: var(--gold); }
.topbar .tb-social { display: flex; gap: 14px; }
.topbar .tb-social a:hover { transform: translateY(-2px); }

.header {
  position: sticky; top: 0; z-index: 1000; background: #fff;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand .brand-text { font-family: var(--font-head); line-height: 1.05; }
.brand .brand-text b { display: block; color: var(--maroon); font-size: 1.2rem; letter-spacing: .5px; white-space: nowrap; line-height: 1.1; }
.brand .brand-text small { display: block; color: var(--gold-dark); font-size: .66rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600; white-space: nowrap; }

.menu { display: flex; align-items: center; gap: 6px; }
.menu > li > a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; line-height: 1;
  padding: 8px 14px; border-radius: 8px; color: var(--ink); transition: color var(--transition);
}
/* underline sits in-flow directly under the label (no absolute positioning) */
.menu > li > a::after {
  content: ""; display: block; height: 2px; width: 0; margin: 5px auto 0;
  background: var(--gold); border-radius: 2px; transition: width .3s ease;
}
.menu > li > a:hover, .menu > li > a.active { color: var(--maroon); }
.menu > li > a:hover::after, .menu > li > a.active::after { width: 22px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
.hamburger span { width: 26px; height: 3px; background: var(--maroon); border-radius: 3px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(circle at 20% 20%, #9c1318 0%, var(--maroon) 45%, var(--maroon-dark) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,.18) 0, transparent 38%),
    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='none' stroke='%23ffffff' stroke-opacity='0.04'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  min-height: 600px; padding: 70px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,.16);
  border: 1px solid rgba(212,175,55,.4); color: var(--gold-light);
  padding: 7px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  font-family: var(--font-head); letter-spacing: .5px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); color: #fff; margin-bottom: 18px; }
.hero h1 .gold { color: var(--gold-light); }
.hero p.lead { font-size: 1.12rem; color: #f3e2d6; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold-light); }
.hero-stats .lbl { font-size: .85rem; color: #e9d6c6; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); border-radius: var(--radius-lg); padding: 30px;
  width: 100%; max-width: 420px; box-shadow: var(--shadow-lg);
}
.hero-logo-ring {
  width: 180px; height: 180px; margin: 0 auto 24px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  box-shadow: 0 0 0 8px rgba(212,175,55,.25), var(--shadow-lg); animation: float 5s ease-in-out infinite;
}
.hero-logo-ring img { width: 130px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-card .mini-list { display: grid; gap: 12px; }
.hero-card .mini-list li { display: flex; align-items: center; gap: 12px; color: #fff; font-size: .95rem; }
.hero-card .mini-list i { color: var(--gold-light); background: rgba(212,175,55,.15); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }

.hero-wave { display: block; width: 100%; height: auto; margin-top: -1px; }

/* ===================================================================
   QUICK FEATURE STRIP
   =================================================================== */
.feature-strip { margin-top: -50px; position: relative; z-index: 5; }
.feature-strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature-card .ico {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: var(--gold-light); font-size: 1.5rem;
}
.feature-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: .92rem; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media .img-main {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  aspect-ratio: 4/3.4; display: grid; place-items: center; padding: 30px;
}
.about-media .img-main img { width: 70%; filter: drop-shadow(0 14px 24px rgba(0,0,0,.3)); }
.about-media .badge-exp {
  position: absolute; bottom: -22px; right: -10px; background: var(--gold);
  color: var(--maroon-dark); border-radius: var(--radius); padding: 18px 24px;
  box-shadow: var(--shadow-md); text-align: center; font-family: var(--font-head);
}
.about-media .badge-exp b { display: block; font-size: 2rem; line-height: 1; }
.about-media .badge-exp span { font-size: .8rem; font-weight: 600; }
.about-text .eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark);
}
.about-text h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 12px 0 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 24px 0 30px; }
.about-points li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.about-points i { color: var(--gold-dark); margin-top: 4px; }

/* ===================================================================
   PROGRAMS / COURSES
   =================================================================== */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: var(--transition); display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.course-card .chead {
  padding: 30px 26px 24px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
}
.course-card .chead::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px;
  background: rgba(212,175,55,.18); border-radius: 50%;
}
.course-card .chead .cico { font-size: 2.2rem; color: var(--gold-light); margin-bottom: 14px; position: relative; z-index: 2; }
.course-card .chead h3 { color: #fff; font-size: 1.3rem; position: relative; z-index: 2; }
.course-card .chead .level { font-size: .8rem; color: #f0ddc8; position: relative; z-index: 2; }
.course-card .cbody { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.course-card .cbody p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.course-card .clist { display: grid; gap: 9px; margin-bottom: 22px; }
.course-card .clist li { display: flex; gap: 9px; font-size: .9rem; color: var(--ink); }
.course-card .clist i { color: var(--gold-dark); margin-top: 5px; font-size: .7rem; }
.course-card .cfoot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--line); }
.course-card .cfoot .age { font-family: var(--font-head); font-weight: 600; color: var(--maroon); font-size: .9rem; }
.course-card .cfoot a { color: var(--gold-dark); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }
.course-card .cfoot a:hover { gap: 10px; }

/* ===================================================================
   WHY CHOOSE / BENEFITS
   =================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-item {
  display: flex; gap: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 24px; border-radius: var(--radius); transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-item .ico { flex: 0 0 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(212,175,55,.18); color: var(--gold-light); font-size: 1.4rem; }
.why-item h4 { color: #fff; margin-bottom: 6px; font-size: 1.1rem; }
.why-item p { color: #e9d6c6; font-size: .92rem; margin: 0; }

/* ===================================================================
   STATS COUNTER
   =================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: var(--transition); }
.stat-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-box .ico { font-size: 2rem; color: var(--gold-dark); margin-bottom: 10px; }
.stat-box .count { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--maroon); line-height: 1; }
.stat-box .lbl { color: var(--muted); font-weight: 500; margin-top: 8px; }

/* ===================================================================
   PROCESS / STEPS
   =================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; position: relative; }
.step .num {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--maroon-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); box-shadow: var(--shadow-sm); position: relative; z-index: 2;
}
.step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .92rem; }
.steps-grid .step:not(:last-child)::after {
  content: ""; position: absolute; top: 35px; left: 60%; width: 80%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); z-index: 1;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px 4px 24px; }
.testi-track::-webkit-scrollbar { height: 8px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }
.testi-card {
  flex: 0 0 360px; scroll-snap-align: start; background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative;
}
.testi-card .quote { font-size: 2.6rem; color: var(--gold); opacity: .35; position: absolute; top: 16px; right: 24px; font-family: Georgia, serif; }
.testi-card .stars { color: var(--gold); margin-bottom: 12px; }
.testi-card p { color: var(--ink); font-style: italic; margin-bottom: 20px; }
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .who .avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: var(--gold-light); font-weight: 700; font-family: var(--font-head); }
.testi-card .who b { display: block; color: var(--maroon); }
.testi-card .who span { font-size: .85rem; color: var(--muted); }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta {
  background: linear-gradient(120deg, var(--maroon-dark), var(--maroon) 60%, var(--maroon-light));
  color: #fff; border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta::before { content: "\f1ec"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute;
  font-size: 14rem; opacity: .06; right: 3%; top: 50%; transform: translateY(-50%); }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta p { color: #f3e2d6; max-width: 600px; margin: 0 auto 28px; }
.cta .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item {
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3;
  display: grid; place-items: center; cursor: pointer; transition: var(--transition);
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: #fff; text-align: center; padding: 20px;
}
.gal-item:nth-child(3n+2) { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--maroon-dark); }
.gal-item:nth-child(3n) { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
.gal-item .gal-ico { font-size: 2.6rem; margin-bottom: 10px; opacity: .9; }
.gal-item h4 { color: inherit; font-size: 1.05rem; }
.gal-item span { font-size: .82rem; opacity: .8; }
.gal-item::after { content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0; background: rgba(90,7,11,.55); color: #fff; display: grid; place-items: center;
  font-size: 1.6rem; opacity: 0; transition: var(--transition); }
.gal-item:hover::after { opacity: 1; }
.gal-item:hover { transform: scale(1.02); }

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: var(--transition); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--gold); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--maroon); }
.faq-q i { transition: var(--transition); color: var(--gold-dark); }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); margin: 0; }

/* ===================================================================
   PAGE HERO (inner pages)
   =================================================================== */
.page-hero {
  background: linear-gradient(120deg, var(--maroon-dark), var(--maroon) 70%); color: #fff;
  padding: 70px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.18), transparent 40%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 14px; color: #f0ddc8; font-size: .92rem; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: .65rem; align-self: center; color: var(--gold); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-info .ci-item { display: flex; gap: 18px; margin-bottom: 26px; }
.contact-info .ci-item .ico { flex: 0 0 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: var(--gold-light); font-size: 1.3rem; }
.contact-info .ci-item h4 { margin-bottom: 4px; }
.contact-info .ci-item p, .contact-info .ci-item a { color: var(--muted); }
.contact-info .ci-item a:hover { color: var(--maroon); }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; font-family: var(--font-head); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem; transition: var(--transition); background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .85rem; padding: 14px 16px; border-radius: 10px; margin-top: 8px; display: none; }
.form-note.ok { background: #e8f6ec; color: #1d7a3a; border: 1px solid #b7e0c2; display: block; }
.form-note.err { background: #fbeaea; color: #b3261e; border: 1px solid #f0c4c1; display: block; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid #fff; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--maroon-dark); color: #e6d6c4; padding-top: 64px; }
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--gold); border-radius: 3px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .f-brand img { height: 56px; background: #fff; border-radius: 12px; padding: 5px; }
.footer .f-brand b { font-family: var(--font-head); color: #fff; font-size: 1.2rem; display: block; }
.footer .f-brand small { color: var(--gold-light); letter-spacing: 2px; font-size: .7rem; }
.footer p { color: #d8c5b1; font-size: .92rem; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #d8c5b1; font-size: .93rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-links a i { color: var(--gold); font-size: .7rem; }
.f-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .92rem; color: #d8c5b1; }
.f-contact li i { color: var(--gold); margin-top: 4px; }
.f-social { display: flex; gap: 12px; margin-top: 18px; }
.f-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: var(--transition); }
.f-social a:hover { background: var(--gold); color: var(--maroon-dark); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; text-align: center; font-size: .88rem; color: #c9b7a3; }
.footer-bottom a { color: var(--gold-light); }

/* ---------- Back to top + Float WA ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--maroon); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transition: var(--transition); z-index: 900; border: none; cursor: pointer; }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--maroon-dark); }
.wa-float { position: fixed; left: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; z-index: 900;
  box-shadow: 0 10px 24px rgba(37,211,102,.45); transition: var(--transition); animation: pulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 56px 0; min-height: auto; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media .badge-exp { right: 20px; }
  .feature-strip .grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid, .stats-grid, .steps-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid .step::after { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .topbar .tb-left { gap: 14px; font-size: .78rem; }
  .topbar .tb-social { display: none; }
  .hamburger { display: flex; }
  .menu {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; padding: 90px 24px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,.15); transition: right .35s ease; gap: 4px; z-index: 1001;
  }
  .menu.open { right: 0; }
  .menu > li > a { display: block; padding: 14px 12px; border-radius: 8px; }
  .menu > li > a:hover { background: var(--cream-2); }
  .nav-cta .btn { display: none; }
  .nav-cta .btn.show-mobile { display: inline-flex; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(43,34,34,.5); opacity: 0; pointer-events: none; transition: var(--transition); z-index: 1000; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
  .cta { padding: 44px 24px; }
}
@media (max-width: 560px) {
  .feature-strip .grid, .course-grid, .stats-grid, .steps-grid, .gallery-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 85%; }
  .brand .brand-text small { display: none; }
  .hero-stats { gap: 22px; }
}

/* ===================================================================
   WHY VAMIKA (bilingual) · VISION/MISSION · CORE VALUES
   =================================================================== */
.ta { font-family: "Noto Sans Tamil", var(--font-body); line-height: 1.9; }

.why-name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-name-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.why-name-card h3 { color: var(--maroon); font-size: 1.1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.why-name-card h3 i { color: var(--gold-dark); }
.why-name-card p { color: var(--muted); margin-bottom: 12px; }
.why-name-card.ta p { color: var(--ink); }
.brand-quote { max-width: 860px; margin: 30px auto 0; text-align: center; font-size: 1.08rem; color: var(--ink);
  font-style: italic; background: #fff; border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.brand-quote i.fa-quote-left { color: var(--gold); opacity: .5; margin-right: 8px; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.vm-card .ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: var(--gold-light); }
.vm-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.vm-card p { color: var(--muted); }
.vm-card ul { display: grid; gap: 11px; margin-top: 6px; }
.vm-card li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); }
.vm-card li i { color: var(--gold-dark); margin-top: 4px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-card .ico { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: var(--gold-light); }
.value-card h4 { font-size: 1.08rem; margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: .9rem; }

@media (max-width: 768px) {
  .why-name-grid, .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* Home "Why Vamika" teaser */
.whyname-teaser { max-width: 840px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, #fff, var(--cream-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: var(--shadow-sm); }
.whyname-teaser .wt-badge { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--maroon-dark); }
.whyname-teaser h3 { font-size: 1.5rem; margin-bottom: 12px; }
.whyname-teaser p { color: var(--muted); margin-bottom: 22px; }
