/* ===== GENIO EDUCATION — GLOBAL STYLES ===== */
/* Design Tokens */
:root {
  --green:       #1E8A3C;
  --green-dark:  #145C28;
  --green-light: #E8F5EC;
  --orange:      #F5A623;
  --orange-dark: #D4881A;
  --orange-light:#FFF5E0;
  --charcoal:    #1A1A2E;
  --grey:        #6B7280;
  --grey-light:  #F4F6F9;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--orange); text-decoration: none; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar i { margin-right: 5px; color: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 40px;
  width: 100%;
}
.logo img { height: 60px; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 10px 14px;
  color: var(--charcoal); text-decoration: none;
  font-weight: 700; font-size: 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--green); background: var(--green-light); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 240px;
  padding: 10px 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); border-top: 3px solid var(--green);
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: var(--charcoal);
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--green-light); color: var(--green); padding-left: 26px; }
.dropdown li a i { color: var(--green); width: 18px; text-align: center; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-apply {
  background: var(--green); color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 800; font-size: 14px; text-decoration: none;
  transition: var(--transition); box-shadow: 0 4px 15px rgba(30,138,60,0.3);
}
.btn-apply:hover { background: var(--green-dark); transform: translateY(-2px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; display: block; transition: var(--transition); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--charcoal); padding: 24px;
  flex-direction: column; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-header img { height: 48px; filter: brightness(0) invert(1); }
.mobile-nav-close { background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; padding: 14px 0;
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-weight: 700; font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav ul li a:hover { color: var(--orange); padding-left: 8px; }
.mobile-nav-cta { margin-top: 28px; }
.mobile-nav-cta .btn-apply { display: block; text-align: center; padding: 14px; font-size: 16px; }

/* ===== SHARED LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; }
.section-eyebrow {
  display: inline-block; color: var(--green);
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 900;
  color: var(--charcoal); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-subtitle { color: var(--grey); font-size: 17px; max-width: 640px; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0D2E1A 0%, #1A4A2E 50%, #1E3A5F 100%);
  padding: 80px 0 90px;
  position: relative; overflow: hidden;
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-shape {
  position: absolute; border-radius: 50%;
  width: 400px; height: 400px;
  background: var(--orange); opacity: 0.05;
  top: -150px; right: -100px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 14px;
  font-weight: 600; margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--orange); text-decoration: none; }
.page-hero .breadcrumb i { font-size: 10px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 900;
  color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 580px; }

/* ===== TRUST TICKER ===== */
.trust-bar { background: var(--green); overflow: hidden; }
.trust-ticker { display: flex; align-items: center; white-space: nowrap; animation: ticker 25s linear infinite; }
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; color: var(--white);
  font-size: 14px; font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-item i { color: var(--orange); font-size: 18px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  transition: var(--transition); box-shadow: 0 6px 20px rgba(30,138,60,0.3);
  border: none; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,138,60,0.4); }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  transition: var(--transition); box-shadow: 0 6px 20px rgba(245,166,35,0.3);
  border: none; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green);
  padding: 13px 28px; border-radius: 50px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  border: 2px solid var(--green); transition: var(--transition);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid #E5E7EB; border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 15px;
  color: var(--charcoal); transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,138,60,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 2px solid transparent;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); transform: translateY(-4px); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  padding: 60px 0; text-align: center;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px); color: var(--white);
  font-weight: 900; margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
.btn-cta-white {
  background: var(--white); color: var(--orange-dark);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 6px; transition: var(--transition);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-cta-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 6px; transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ===== FOOTER ===== */
footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 15px; margin-bottom: 20px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; background: rgba(255,255,255,0.07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 16px; transition: var(--transition);
}
.social-btn:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-item i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; font-size: 14px;
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wa-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== COUNTER SECTION ===== */
.counter-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2A6E1A 100%); padding: 80px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.counter-item { padding: 24px; }
.counter-icon { font-size: 48px; margin-bottom: 16px; }
.counter-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: var(--white); display: block; line-height: 1; margin-bottom: 8px; }
.counter-suffix { color: var(--orange); }
.counter-label { color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 12px 24px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .nav-container { padding: 12px 20px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .topbar .topbar-right { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 70px; }
}
