/* ==========================================================================
   Prakshal IT Academy - Main Stylesheet
   Colors:
     Primary   : #9fce20
     Secondary : #398358
     Tertiary  : #020202
     Fourth    : #fffefe
   ========================================================================== */

:root {
  --primary: #9fce20;
  --primary-dark: #86b016;
  --secondary: #398358;
  --secondary-dark: #2c6644;
  --tertiary: #020202;
  --light: #fffefe;
  --grey: #f5f7f4;
  --grey-2: #eef1ec;
  --text: #333333;
  --muted: #6b7280;
  --shadow: 0 10px 30px rgba(2, 2, 2, 0.08);
  --shadow-lg: 0 20px 50px rgba(2, 2, 2, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* overflow-x: clip (not hidden) clips horizontal overflow WITHOUT creating a
   scroll container — so the sticky header keeps working while the mobile
   off-canvas menu still can't cause a horizontal scroll. */
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: clip; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.grad-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head { max-width: 680px; margin: 0 auto 55px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(159, 206, 32, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--tertiary);
  line-height: 1.2;
}
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  box-shadow: 0 6px 16px rgba(2, 2, 2, 0.12);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(2, 2, 2, 0.18); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--secondary); }
.btn-outline:hover { background: var(--primary); color: var(--light); border-color: var(--primary); }
.btn-white { background: var(--light); color: var(--secondary); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--tertiary);
  color: var(--light);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; }
.topbar-info i { color: var(--primary); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { transition: var(--transition); opacity: 0.9; }
.topbar-social a:hover { color: var(--primary); transform: translateY(-2px); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 254, 254, 0.98);
  /* NOTE: no backdrop-filter/transform here — it would make the fixed mobile
     .nav-menu anchor to the header and create horizontal overflow (swipe opens menu) */
  box-shadow: 0 2px 20px rgba(2, 2, 2, 0.06);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(2, 2, 2, 0.12); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav-logo img { height: 51px; width: auto; max-width: 100%; object-fit: contain; }
.nav-logo .logo-text { display: none; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--tertiary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--secondary); }
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after { transform: scaleX(1); }
.nav-menu .caret { font-size: 0.7rem; transition: transform 0.3s ease; }
.nav-menu li:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 240px;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  border-top: 3px solid var(--primary);
}
.nav-menu li:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-menu li a i { color: var(--primary); width: 18px; text-align: center; }
.dropdown-menu li a:hover { background: var(--grey); color: var(--secondary); padding-left: 20px; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--tertiary);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
/* Turn hamburger into a clean, centered X inside a soft circle */
.nav-toggle.open { background: rgba(2, 2, 2, 0.07); }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* In-panel close (X) button for the mobile drawer — hidden on desktop */
.nav-close { display: none; }

/* Mobile menu backdrop + scroll lock */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 2, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 990;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }
@media (min-width: 769px) { .nav-backdrop { display: none; } }
/* Lock background scroll while the mobile menu is open (html + body for cross-browser) */
html.nav-lock, body.nav-lock { overflow: hidden; touch-action: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(159, 206, 32, 0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(57, 131, 88, 0.12), transparent 40%),
    var(--grey);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero-badge i { color: var(--primary); }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--tertiary);
  margin-bottom: 20px;
}
.hero p { font-size: 1.08rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat h3 { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.hero-stats .stat p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.hero-visual { position: relative; }
.hero-visual img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.hero-float {
  position: absolute;
  background: var(--light);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-float i {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--light);
  font-size: 1.1rem;
}
.hero-float.f1 { top: 30px; left: -20px; animation: float 4s ease-in-out infinite; }
.hero-float.f1 i { background: var(--primary); }
.hero-float.f2 { bottom: 40px; right: -15px; animation: float 4s ease-in-out infinite 1s; }
.hero-float.f2 i { background: var(--secondary); }
.hero-float small { display: block; color: var(--muted); font-weight: 400; font-size: 0.75rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.blob {
  position: absolute;
  width: 460px; height: 460px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(10px);
  opacity: 0.15;
  z-index: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blobmorph 12s ease-in-out infinite;
}
@keyframes blobmorph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
  50% { border-radius: 58% 42% 37% 63% / 56% 59% 41% 44%; }
}

/* ---------- HERO SLIDER ---------- */
.hero-slider { padding: 0; }
.hero-slides { position: relative; }
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  padding: 70px 0 88px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.hero-slide.active .hero-text { animation: heroFadeUp 0.9s cubic-bezier(0.25,0.8,0.25,1) both; }
.hero-slide.active .hero-visual { animation: heroFadeIn 1s cubic-bezier(0.25,0.8,0.25,1) 0.1s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateX(45px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px; height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--light);
  color: var(--secondary);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.hero-arrow:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--light); transform: translateY(-50%) scale(1.08); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 12px; height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(57, 131, 88, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dots button.active {
  width: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ==========================================================================
   MARQUEE / TRUST BAR
   ========================================================================== */
.trust-bar { background: var(--tertiary); padding: 22px 0; overflow: hidden; }
.marquee { display: flex; gap: 60px; white-space: nowrap; animation: scroll-x 22s linear infinite; }
.marquee span { color: rgba(255,254,254,0.7); font-weight: 600; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 12px; }
.marquee span i { color: var(--primary); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   FEATURES / WHY US
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.feature-card {
  background: var(--light);
  padding: 34px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(159,206,32,0.15), rgba(57,131,88,0.15));
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--light); transform: rotateY(360deg); }
.feature-card h3 { font-size: 1.2rem; color: var(--tertiary); margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   COURSES
   ========================================================================== */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.course-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--grey-2);
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.course-thumb { position: relative; height: 190px; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card:hover .course-thumb img { transform: scale(1.08); }
.course-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary);
  color: var(--tertiary);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
}
.course-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-meta { display: flex; gap: 18px; font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.course-meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-meta i { color: var(--primary); }
.course-body h3 { font-size: 1.25rem; color: var(--tertiary); margin-bottom: 10px; }
.course-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.course-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--grey-2); padding-top: 16px; }
.course-foot .price { font-weight: 700; color: var(--secondary); font-size: 1.05rem; }
.course-foot a { font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.course-foot a:hover { gap: 12px; color: var(--primary-dark); }

/* Filter buttons */
.course-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 45px; }
.filter-btn {
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  box-shadow: inset 0 0 0 2px var(--grey-2);
  background: var(--light);
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  box-shadow: none;
}

/* ==========================================================================
   COUNTERS
   ========================================================================== */
.counters {
  background: linear-gradient(120deg, var(--secondary), var(--secondary-dark));
  color: var(--light);
}
.counters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.counter-item i { font-size: 2.4rem; color: var(--primary); margin-bottom: 14px; }
.counter-item h3 { font-size: 2.8rem; font-weight: 800; }
.counter-item p { opacity: 0.85; font-weight: 500; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.about-exp {
  position: absolute; bottom: -25px; right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-exp h3 { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-exp p { font-size: 0.85rem; }
.about-exp { z-index: 4; }

/* Reference-style floating stat cards + circle backdrop */
.about-circle {
  position: absolute;
  z-index: 0;
  width: 80%;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(159, 206, 32, 0.25), rgba(57, 131, 88, 0.06) 62%, transparent 70%);
  border-radius: 50%;
  animation: aboutPulse 6s ease-in-out infinite;
}
@keyframes aboutPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}
.about-main-img { position: relative; z-index: 1; }
.about-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: float 4.5s ease-in-out infinite;
}
.about-float h4 { font-size: 1.35rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.about-float span { font-size: 0.78rem; color: var(--muted); }
.af-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--light);
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.af-icon-2 { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.af-1 { top: 26px; left: -22px; }
.af-2 { top: 46%; right: -24px; animation-delay: 1.4s; }

/* Prakshal logo badge on images (branding) */
.brand-badge {
  position: absolute;
  bottom: -16px;
  left: 22px;
  z-index: 4;
  background: var(--light);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.brand-badge img { height: 26px; width: auto; }
.about-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--tertiary); margin-bottom: 18px; line-height: 1.2; }
.about-content > p { color: var(--muted); margin-bottom: 24px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about-list li i { color: var(--primary); background: rgba(159,206,32,0.15); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; }

/* ==========================================================================
   PLACEMENTS
   ========================================================================== */
.placement-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.placement-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--grey-2);
  transition: var(--transition);
  position: relative;
}
.placement-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.placement-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--primary);
  padding: 3px;
  background: var(--light);
}
.placement-card h3 { font-size: 1.15rem; color: var(--tertiary); }
.placement-role { color: var(--secondary); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.placement-company {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grey);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tertiary);
}
.placement-company i { color: var(--primary); }
.placement-pkg {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}
.placement-pkg strong { color: var(--secondary); }

/* Placement stats banner */
.placement-banner {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 45px;
  color: var(--light);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.placement-banner .pb-item h3 { font-size: 2.6rem; font-weight: 800; }
.placement-banner .pb-item p { opacity: 0.9; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.testi-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-2);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card .quote { font-size: 3rem; color: var(--primary); opacity: 0.25; position: absolute; top: 16px; right: 24px; font-family: Georgia, serif; }
.testi-stars { color: #f5a623; margin-bottom: 14px; }
/* clamp long reviews so every card stays the same tidy height */
.testi-card p {
  color: var(--text); margin-bottom: 22px; font-style: italic;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6;
  line-clamp: 6; overflow: hidden;
}
.testi-card .testi-author { margin-top: auto; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author h4 { font-size: 1rem; color: var(--tertiary); }
.testi-author span { font-size: 0.82rem; color: var(--muted); }

/* ---- Testimonials slider / carousel ---- */
.testi-slider { position: relative; }
.testi-viewport { overflow: hidden; padding: 10px 4px; }
.testi-track { display: flex; gap: 28px; transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1); }
.testi-slider .testi-card { flex: 0 0 calc((100% - 56px) / 3); }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: #fff; color: var(--secondary); box-shadow: var(--shadow);
  cursor: pointer; display: grid; place-items: center; font-size: 1rem; z-index: 3;
  transition: var(--transition);
}
.testi-arrow:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; transform: translateY(-50%) scale(1.08); }
.testi-prev { left: -18px; }
.testi-next { right: -18px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--grey-2); cursor: pointer; padding: 0; transition: var(--transition); }
.testi-dots button.active { width: 26px; border-radius: 6px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
@media (max-width: 900px) { .testi-slider .testi-card { flex: 0 0 calc((100% - 28px) / 2); } }
@media (max-width: 600px) {
  .testi-slider .testi-card { flex: 0 0 100%; }
  .testi-arrow { display: none; }
}

/* ==========================================================================
   GALLERY  (grid of photos + full-screen lightbox with prev / next)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: var(--grey-2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 2, 2, 0.55), rgba(2, 2, 2, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
/* zoom hint in the centre on hover (no captions — photos can be anything) */
.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--tertiary);
  background: var(--primary);
  font-size: 1.15rem;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
/* video tiles: play badge always visible + a darker base so it pops */
.gallery-item.is-video::after { opacity: 0.4; }
.gallery-item.is-video .gallery-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  width: 62px;
  height: 62px;
  font-size: 1.3rem;
  padding-left: 4px; /* optically centre the play triangle */
}
.gallery-item.is-video:hover .gallery-play { transform: translate(-50%, -50%) scale(1.1); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: rgba(2, 2, 2, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  margin: 0;
  max-width: min(1000px, 88vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.lb-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lb-img.is-in { opacity: 1; transform: scale(1); }
.lb-video {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lb-video.is-in { opacity: 1; transform: scale(1); }
.lb-count {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.lb-close:hover { background: var(--primary); color: var(--tertiary); transform: rotate(90deg); }
.lb-nav {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.lb-nav:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); transform: scale(1.1); }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .gallery-cap { opacity: 1; transform: none; font-size: 0.8rem; left: 10px; right: 10px; bottom: 10px; }
  .gallery-item::after { opacity: 1; }
  .lightbox { padding: 12px; gap: 4px; }
  .lb-nav { position: absolute; bottom: 14px; z-index: 4; background: rgba(255, 255, 255, 0.18); }
  .lb-prev { left: 16px; }
  .lb-next { right: 16px; }
  .lb-close { top: 10px; right: 12px; }
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
  background:
    linear-gradient(120deg, rgba(2,2,2,0.85), rgba(57,131,88,0.9)),
    url('../images/cta-bg.jpg') center/cover;
  color: var(--light);
  text-align: center;
  padding: 80px 0;
}
.cta-strip h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-strip p { opacity: 0.9; max-width: 600px; margin: 0 auto 30px; }
.cta-strip .hero-cta { justify-content: center; }

/* ==========================================================================
   PAGE HERO (inner pages) - shared animated hero for About / Contact / etc.
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--light);
  text-align: center;
  padding: 84px 0 120px;
  background:
    radial-gradient(circle at 85% 130%, rgba(159,206,32,0.35), transparent 45%),
    linear-gradient(120deg, #06180f, #0c4b33 42%, #398358 72%, #6ba011);
  background-size: auto, 300% 300%;
  animation: heroGradient 15s ease infinite;
}
@keyframes heroGradient { 0%{background-position:0% 50%, 0% 50%} 50%{background-position:0% 50%, 100% 50%} 100%{background-position:0% 50%, 0% 50%} }
.page-hero::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  top: -120px; left: -70px; background: rgba(159,206,32,0.28); filter: blur(60px); z-index: 0;
  animation: heroFloat 9s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(26px) } }
/* wavy separator into the page below */
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2070'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%23fffefe'%20d='M0,40%20C240,80%20480,0%20720,25%20C960,50%201200,80%201440,35%20L1440,70%20L0,70%20Z'/%3E%3C/svg%3E") no-repeat center bottom / 100% 70px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: #d7ef9c; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 18px; border-radius: 30px; margin-bottom: 18px; backdrop-filter: blur(6px);
  animation: heroFadeDown .7s ease both;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 0; animation: heroFadeUp .7s .05s ease both; }
.page-hero h1 span { color: #cdea8f; }
.page-hero p { max-width: 620px; margin: 16px auto 0; font-size: 1.05rem; opacity: .93; animation: heroFadeUp .7s .15s ease both; }
@keyframes heroFadeUp { from{ opacity:0; transform: translateY(24px) } to{ opacity:1; transform:none } }
@keyframes heroFadeDown { from{ opacity:0; transform: translateY(-16px) } to{ opacity:1; transform:none } }
.breadcrumb { display: flex; gap: 10px; justify-content: center; align-items: center; font-size: 0.9rem; opacity: 0.92; margin-top: 18px; animation: heroFadeUp .7s .25s ease both; }
.breadcrumb a { color: var(--light); }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb i { font-size: 0.7rem; opacity: 0.7; }
.breadcrumb i { font-size: 0.65rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 45px; align-items: start; }
.contact-info-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 1px solid var(--grey-2);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.contact-info-card .ci-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  font-size: 1.2rem;
}
.contact-info-card h4 { color: var(--tertiary); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--muted); font-size: 0.92rem; }
.contact-info-card a:hover { color: var(--secondary); }

.contact-form {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
  border: 1px solid var(--grey-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--grey);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--light);
  box-shadow: 0 0 0 4px rgba(159,206,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 55px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ==========================================================================
   COURSE DETAILS PAGE
   ========================================================================== */
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 45px; align-items: start; }
.detail-main img.detail-hero-img { border-radius: var(--radius); margin-bottom: 30px; box-shadow: var(--shadow); }
.detail-main h2 { color: var(--tertiary); margin: 30px 0 16px; font-size: 1.6rem; }
.detail-main p { color: var(--muted); margin-bottom: 16px; }
.syllabus-item {
  background: var(--light);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.syllabus-q {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--tertiary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.syllabus-q:hover { color: var(--secondary); }
.syllabus-q i { transition: transform 0.3s ease; color: var(--primary); }
.syllabus-item.open .syllabus-q i { transform: rotate(45deg); }
.syllabus-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.syllabus-a p { padding: 0 22px 18px; margin: 0; }

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.detail-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid var(--grey-2);
  margin-bottom: 24px;
}
.detail-price { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 6px; }
.detail-meta-list { margin: 20px 0; }
.detail-meta-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--grey-2); font-size: 0.92rem; }
.detail-meta-list li span:first-child { color: var(--muted); display: inline-flex; gap: 8px; align-items: center; }
.detail-meta-list li i { color: var(--primary); }
.detail-meta-list li span:last-child { font-weight: 600; color: var(--tertiary); }
.detail-card .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--tertiary); color: rgba(255,254,254,0.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: var(--light); font-size: 1.1rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 42px; height: 3px; background: var(--primary); border-radius: 3px; }
.footer-about img { height: 60px; margin-bottom: 18px; background: var(--light); padding: 8px 12px; border-radius: 10px; }
.footer-about p { font-size: 0.92rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,254,254,0.1);
  color: var(--light);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--tertiary); transform: translateY(-4px); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.92rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); font-size: 0.8rem; }
.footer-links a:hover { color: var(--light); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.92rem; align-items: flex-start; }
.footer-contact li i { color: var(--primary); margin-top: 4px; }
.footer-contact a:hover { color: var(--light); }
.footer-bottom {
  border-top: 1px solid rgba(255,254,254,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--primary); }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.7rem;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.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); }
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .about-visual { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .section-pad { padding: 60px 0; }
  .topbar-info { display: none; }
  .topbar .container { justify-content: center; }

  .nav-toggle { display: flex; }
  /* Bigger logo on mobile — scales with available width (ratio preserved),
     large on normal phones, auto-shrinks on tiny screens so it never
     collides with the hamburger. Logo aspect ratio is ~5.3:1 (very wide). */
  .nav-logo img {
    height: auto;
    max-height: 60px;
    max-width: calc(100vw - 110px);
  }
  .nav-menu {
    position: fixed;
    top: 0;                       /* start from the very top (full-height drawer) */
    right: 0;
    width: min(340px, 88%);
    height: 100vh;
    height: 100dvh;
    background: var(--light);
    flex-direction: column;
    align-items: stretch;
    padding: 66px 0 30px;         /* room at top for the close button; items go edge-to-edge for dividers */
    gap: 0;
    box-shadow: -10px 0 40px rgba(2,2,2,0.18);
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    z-index: 995;                 /* above backdrop (990); covers the header logo/hamburger */
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { border-bottom: 1px solid var(--grey-2); }
  .nav-menu > li:first-child { border-top: 1px solid var(--grey-2); }
  .nav-menu > li > a { padding: 16px 24px; border-radius: 0; font-size: 1rem; }
  .nav-menu > li > a::after { display: none; }

  /* Close (X) button inside the drawer, top-left (reference style) */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    left: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--tertiary);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
  }
  .nav-close:hover { background: var(--grey); color: var(--secondary); transform: rotate(90deg); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    transition: max-height 0.35s ease;
    border-left: 2px solid var(--grey-2);
    margin: 0 0 10px 30px;
  }
  .nav-menu > li.dropdown.open .dropdown-menu { max-height: 500px; padding: 6px 0 6px 12px; }
  .nav-actions .btn { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .about-float { padding: 10px 13px; gap: 9px; }
  .about-float h4 { font-size: 1.1rem; }
  .about-float span { font-size: 0.72rem; }
  .af-icon { width: 38px; height: 38px; font-size: 1rem; }
  .af-1 { top: 12px; left: -6px; }
  .af-2 { top: auto; bottom: 70px; right: -6px; }
  .hero-stats { gap: 24px; }
  .hero-slide { padding: 40px 0 70px; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 18px; }
  .hero-float { padding: 9px 13px; font-size: 0.8rem; }
  .hero-float i { width: 36px; height: 36px; font-size: 0.95rem; }
  .hero-float small { font-size: 0.68rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .counter-item h3 { font-size: 2.2rem; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; left: 16px; bottom: 16px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { width: 100%; justify-content: space-between; }
  .contact-form { padding: 26px 20px; }
}
