/* ============================================================
   BAYROOT INTERNATIONAL – Main Stylesheet
   Primary: #024461 | Accent: #66c431 | Font: Outfit/Manrope
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #024461;
  --primary-dark: #01313f;
  --primary-light: #035a7c;
  --secondary: #66c431;
  --secondary-dark: #52a327;
  --accent: #66c431;
  --bg: #FDFBF7;
  --bg-paper: #FFFFFF;
  --bg-light: #F0F7F9;
  --text: #1a2332;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --success: #66c431;
  --radius-card: 16px;
  --radius-btn: 50px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-nav: 0 2px 20px rgba(0,0,0,0.08);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
a:hover { color: var(--accent); }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(102, 196, 49, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(102, 196, 49, 0.3);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 196, 49, 0.4);
  color: #fff;
}
.btn-primary.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.9rem; }
.btn-primary.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-primary.btn-block { width: 100%; justify-content: center; }

/* Outline button (secondary style) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { 
  background: var(--primary); 
  color: #fff; 
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: #fff; color: var(--primary); }
.btn-secondary.btn-lg { padding: 1rem 2.5rem; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: background var(--transition);
  font-size: 1rem;
}
.btn-whatsapp:hover { background: #128C7E; color: #fff; }
.btn-whatsapp.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
  height: 72px;
}
.navbar.scrolled { box-shadow: var(--shadow-nav); }
.nav-container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
/* Text logo fallback */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-bay { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.logo-root { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.logo-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 56px; width: auto; }
.footer-logo .logo-bay { font-size: 1.8rem; color: #fff; }
.footer-logo .logo-root { font-size: 1.8rem; color: var(--accent); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.6); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  background: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(2,68,97,0.05); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.dropdown-item:hover { background: rgba(2,68,97,0.06); color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: color var(--transition);
}
.btn-call:hover { color: var(--secondary); }
.btn-call i { color: var(--secondary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu-overlay.show { display: block; opacity: 1; }

/* ---------- MAIN CONTENT OFFSET ---------- */
main { padding-top: 72px; }

/* ---------- BANNER CAROUSEL ---------- */
.banner-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--primary-dark);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.carousel-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.carousel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-btn);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 6px 25px rgba(227, 100, 20, 0.4);
  transition: background var(--transition), transform var(--transition);
}
.carousel-btn:hover { background: var(--secondary-dark); transform: translateY(-2px); color: #fff; }

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.3);
}
.carousel-prev:hover, .carousel-next:hover { background: rgba(255,255,255,0.35); }
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--primary);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ---------- SWIPE SECTIONS ---------- */
.swipe-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.swipe-nav {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 2px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  z-index: 5;
}
.swipe-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.swipe-container {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.swipe-container::-webkit-scrollbar { display: none; }
.swipe-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* ---------- VIDEO CARDS ---------- */
.video-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.video-thumb {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--primary-dark);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-thumb:hover img { transform: scale(1.05); }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background var(--transition);
}
.video-thumb:hover .play-overlay { background: rgba(0,0,0,0.35); }
.play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform var(--transition);
}
.video-thumb:hover .play-btn { transform: scale(1.1); }
.video-info { padding: 1rem; }
.video-info h4 { font-size: 0.9rem; color: var(--text); font-weight: 600; }

/* ---------- INSTAGRAM REELS SECTION ---------- */
.reels-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}
.reels-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.reels-section .section-badge {
  background: rgba(102, 196, 49, 0.2);
  color: var(--accent);
}
.reels-section .section-title {
  color: #fff;
}
.reels-section .section-subtitle {
  color: rgba(255,255,255,0.75);
}
.reels-swipe-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels-swipe-container::-webkit-scrollbar { display: none; }

.reel-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}
.reel-card:hover {
  transform: scale(1.03);
}
.reel-card iframe,
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.reel-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 1;
  transition: opacity var(--transition);
}
.reel-card:hover .reel-play-overlay {
  opacity: 0.8;
}
.reel-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.reel-card.playing .reel-play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Mobile reel autoplay indicator */
.reel-mute-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 0.9rem;
}

/* ---------- COUNTRY CARDS ---------- */
.country-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 220px;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.country-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.country-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
}
.country-info h3 { font-size: 1.1rem; color: #fff; font-weight: 700; }
.country-fee { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-top: 0.25rem; }
.country-card-footer {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- UNIVERSITY CARDS ---------- */
.university-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.university-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.uni-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--primary-dark);
}
.uni-img img { width: 100%; height: 100%; object-fit: cover; }
.uni-country-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.uni-body { padding: 1rem; flex: 1; }
.uni-name {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}
.uni-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 0.5rem; }
.uni-stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.uni-stat i { color: var(--secondary); font-size: 0.75rem; flex-shrink: 0; }
.uni-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.uni-footer { padding: 1rem; border-top: 1px solid var(--border); }
.btn-admission {
  width: 100%;
  padding: 0.65rem;
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-admission:hover { background: var(--secondary-dark); transform: translateY(-1px); }

/* ---------- STUDENT CARDS ---------- */
.student-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 240px;
}
.student-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.student-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-light);
}
.student-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.student-body { padding: 1rem; flex: 1; }
.student-name { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.5rem; }
.student-country, .student-uni, .student-course {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.student-country i, .student-uni i, .student-course i { color: var(--secondary); font-size: 0.75rem; }
.student-quote {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
  border-left: 3px solid var(--secondary);
  padding-left: 0.5rem;
  line-height: 1.4;
}
.student-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.btn-chat, .btn-call-student {
  flex: 1;
  padding: 0.55rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all var(--transition);
}
.btn-chat {
  background: rgba(15, 76, 92, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 76, 92, 0.2);
}
.btn-chat:hover { background: var(--primary); color: #fff; }
.btn-call-student {
  background: rgba(227, 100, 20, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(227, 100, 20, 0.2);
}
.btn-call-student:hover { background: var(--secondary); color: #fff; }

/* ---------- COURSE CARDS ---------- */
.course-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.course-img { height: 160px; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; }
.course-body { padding: 1rem; flex: 1; }
.course-title { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.5rem; }
.course-desc { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.course-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.4rem 0;
  transition: color var(--transition);
}
.course-dropdown-toggle:hover { color: var(--secondary); }
.course-list { margin-top: 0.75rem; padding: 0; }
.course-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}
.course-list i { color: var(--success); font-size: 0.7rem; }
.course-footer { padding: 0.75rem 1rem; border-top: 1px solid var(--border); }
.btn-course-apply {
  width: 100%;
  padding: 0.6rem;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-course-apply:hover { background: var(--primary-dark); }

/* ---------- TESTIMONIAL CARDS ---------- */
.testimonial-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-width: 300px;
}
.testimonial-quote { color: var(--secondary); font-size: 1.5rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; flex: 1; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--primary-dark); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); display: block; }
.t-country { color: var(--secondary); font-weight: 600; }

/* ---------- ABOUT SECTION ---------- */
.about-section { background: var(--bg-paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-content .section-title { text-align: left; margin-top: 0.75rem; }
.about-content p { margin-bottom: 1rem; }
.about-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.about-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.about-service-item i { color: var(--success); }
.about-image img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  width: 100%;
  object-fit: cover;
  max-height: 450px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(15, 76, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}
.why-card h4 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.page-hero-sm { min-height: 35vh; align-items: center; padding-bottom: 0; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-hero-content h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ---------- COUNTRY STATS ---------- */
.country-stats-section { background: var(--primary); padding: 2rem 0; }
.country-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.country-stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.stat-card-icon { font-size: 1.5rem; color: rgba(255,255,255,0.8); flex-shrink: 0; }
.stat-card-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-card-value { display: block; font-size: 0.88rem; color: #fff; font-weight: 700; font-family: var(--font-heading); margin-top: 0.2rem; }

/* ---------- ELIGIBILITY GRID ---------- */
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.eligibility-card {
  text-align: center;
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.eligibility-card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.eligibility-card h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.eligibility-card p { font-size: 0.85rem; }

/* ---------- WHY STUDY LIST ---------- */
.why-study-list { margin: 1.5rem 0; }
.why-study-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.why-study-item i { color: var(--success); flex-shrink: 0; }

/* ---------- COURSES PAGE ---------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.course-detail-card {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.course-detail-img { height: 200px; overflow: hidden; }
.course-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.course-detail-body { padding: 1.5rem; flex: 1; }
.course-detail-title { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 0.75rem; }
.course-detail-desc { font-size: 0.9rem; margin-bottom: 1rem; }
.course-detail-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.course-pill {
  background: rgba(15, 76, 92, 0.07);
  color: var(--primary);
  border: 1px solid rgba(15, 76, 92, 0.15);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ---------- SERVICES PAGE ---------- */
.services-timeline { position: relative; }
.service-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; }

/* ---------- ABOUT INLINE STATS ---------- */
.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-inline-item { text-align: center; }
.stat-inline-item strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary); }
.stat-inline-item span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-box h2 { margin-bottom: 0.5rem; }
.contact-form-box p { margin-bottom: 1.5rem; }
.contact-info-box { display: flex; flex-direction: column; gap: 1.25rem; }
.office-card {
  display: flex;
  gap: 1rem;
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.office-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(15, 76, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.office-card h4 { font-size: 0.95rem; color: var(--primary-dark); margin-bottom: 0.25rem; }
.office-card p { font-size: 0.83rem; margin-bottom: 0.35rem; }
.office-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.office-phone:hover { color: var(--secondary); }
.social-links-large { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity var(--transition);
  color: #fff;
}
.social-btn:hover { opacity: 0.85; color: #fff; }
.social-btn.linkedin { background: #0077B5; }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #E1306C, #833AB4); }
.social-btn.youtube { background: #FF0000; }
.contact-socials h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }

/* ---------- LEAD POPUP ---------- */
.lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.lead-popup-overlay.open { display: flex; opacity: 1; }
.lead-popup {
  background: var(--bg-paper);
  border-radius: 20px;
  padding: 2rem;
  max-width: 580px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popupIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.popup-close:hover { background: rgba(0,0,0,0.12); color: var(--text); }
.popup-header { margin-bottom: 1.5rem; }
.popup-header h3 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 0.25rem; }
.popup-header p { font-size: 0.9rem; }

/* ---------- FORMS ---------- */
.lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-privacy { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }
.form-privacy i { color: var(--success); }

/* ---------- FORM SUCCESS ---------- */
.form-success { text-align: center; padding: 2rem; }
.success-icon { font-size: 3rem; color: var(--success); margin-bottom: 1rem; }
.form-success h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.form-success p { margin-bottom: 1.5rem; }

/* ---------- VIDEO MODAL ---------- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-modal-overlay.open { display: flex; }
.video-modal-container { position: relative; width: 100%; max-width: 900px; }
.modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.8rem;
  transition: color var(--transition);
}
.modal-close:hover { color: #fff; }
.video-modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { background: var(--primary-dark); color: #fff; padding: 5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--secondary); color: #fff; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}
.footer-contact-item i { color: var(--accent); width: 14px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: #fff; }
/* Footer offices */
.footer-col-offices h4 { margin-bottom: 1.25rem; }
.footer-office {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-office:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-office strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.35rem;
}
.footer-office p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}
.footer-office a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--accent);
}
.footer-office a:hover { color: #fff; }
.footer-office a i { font-size: 0.75rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* ---------- FLOATING ELEMENTS ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 1.5rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-paper);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}
.sticky-consult-btn {
  flex: 1;
  padding: 0.7rem;
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .btn-call { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 999;
    gap: 0;
  }
  .nav-menu.open .nav-link {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-menu.open .nav-dropdown { width: 100%; }
  .nav-menu.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 0.5rem 0;
    display: none;
  }
  .nav-menu.open .nav-dropdown.open .dropdown-menu { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .country-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .eligibility-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stats-inline { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Prevent horizontal scroll */
  html, body { overflow-x: hidden; }
  
  /* Banner */
  .banner-carousel { height: 60vh; min-height: 380px; }
  .carousel-btn { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .carousel-prev, .carousel-next { width: 36px; height: 36px; font-size: 0.85rem; }
  .carousel-prev { left: 0.5rem; }
  .carousel-next { right: 0.5rem; }
  
  /* Sections */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.95rem; }
  .section-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
  
  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; }
  .country-stats-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .country-stat-card { padding: 0.75rem; }
  .stat-card-icon { font-size: 1.2rem; }
  .stat-card-label { font-size: 0.68rem; }
  .stat-card-value { font-size: 0.82rem; }
  
  /* Cards */
  .swipe-item { flex: 0 0 85vw; max-width: 300px; }
  .swipe-container { gap: 0.75rem; padding: 0.25rem 0 0.75rem; }
  .university-card { min-width: 260px; }
  .student-card { min-width: 240px; }
  .testimonial-card { min-width: 280px; }
  .video-card { min-width: 260px; }
  .country-card { min-width: 200px; }
  .course-card { min-width: 260px; }
  
  /* Swipe navigation */
  .swipe-nav { display: none; }
  .swipe-wrapper { gap: 0; }
  
  /* Grid layouts */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.25rem; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-services { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .courses-grid { grid-template-columns: 1fr; }
  .stats-inline { grid-template-columns: repeat(2, 1fr); }
  
  /* CTA */
  .cta-section { padding: 3rem 0; }
  .cta-content h2 { font-size: 1.4rem; }
  .cta-content p { font-size: 0.95rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .cta-actions .btn-primary, .cta-actions .btn-secondary { width: 100%; justify-content: center; }
  
  /* Forms */
  .lead-form .form-row { grid-template-columns: 1fr; }
  .lead-popup { padding: 1.5rem; border-radius: 16px; }
  .popup-header h3 { font-size: 1.2rem; }
  
  /* Page hero */
  .page-hero { min-height: 40vh; padding-bottom: 2.5rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.95rem; }
  .breadcrumb { font-size: 0.75rem; }
  
  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-brand .footer-tagline { font-size: 0.82rem; }
  .footer-col h4 { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .footer-col a { font-size: 0.85rem; }
  
  /* Sticky bottom bar */
  .sticky-call-bar { display: flex; }
  .whatsapp-float { bottom: 80px; right: 1rem; width: 48px; height: 48px; font-size: 1.3rem; }
  
  /* Services timeline */
  .service-step { flex-direction: column; gap: 1rem; }
  .step-number { width: 48px; height: 48px; font-size: 1rem; }
  
  /* Container padding */
  .container { padding: 0 1rem; }
  
  /* Navbar */
  .nav-container { padding: 0 1rem; }
  .nav-actions .btn-primary { padding: 0.5rem 1rem; font-size: 0.85rem; }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .banner-carousel { height: 55vh; min-height: 340px; }
  .carousel-btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
  .swipe-item { flex: 0 0 90vw; }
  .section-title { font-size: 1.35rem; }
  .stat-number { font-size: 1.3rem; }
  .nav-logo .logo-bay, .nav-logo .logo-root { font-size: 1.3rem; }
  .nav-logo .logo-sub { font-size: 0.55rem; }
}

