/* ============================================================
   CADD CENTRE - styles.css
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --red: #ed1c24;
  --dark-red: #c0151c;
  --gray: #6b7280;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --black: #000000;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --radius: 15px;
  --font: 'Poppins', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: #111827;
  background: var(--white);
  line-height: 1.6;
  overflow-x: auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-red { color: var(--red); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.hidden { display: none; }

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  padding: 2rem 0;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.topbar-links { display: flex; align-items: center; gap: 0; }

.topbar-links a {
  font-size: 0.8125rem;
  padding: 0.25rem 0.5rem;
  border-right: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
  border-radius: 2px;
}

.topbar-links a:last-child { border-right: none; }
.topbar-links a:hover { background: var(--red); color: var(--white); }

.topbar-right { display: flex; align-items: center; gap: 0.75rem; }

.topbar-right .fjp-logo img { width: 150px; height: auto; }

.topbar-phone {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  padding: 0.35rem 0.75rem;
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.topbar-phone:hover { background: var(--red); }

.topbar-phone .phone-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #ef4444;
}

.topbar-phone:hover .phone-sub { color: #fca5a5; }

.topbar-login {
  padding: 0.35rem 0.75rem;
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.topbar-login:hover { background: var(--red); }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo { padding: 1rem 0; }
.nav-logo img { width: 220px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a, .nav-links .nav-item {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  color: #111827;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links .nav-item:hover { color: var(--red); }

.nav-hamburger {
  display: none;
  padding: 0.5rem;
  color: #374151;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger svg { width: 20px; height: 20px; }

/* Mega Menu */
.nav-mega-wrapper { position: relative; }
.nav-mega-wrapper:hover .mega-menu { display: flex; }

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -200px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  gap: 1.5rem;
  min-width: 900px;
  z-index: 200;
  border-top: 3px solid var(--red);
}

.mega-col { flex: 1; min-width: 200px; }

.mega-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  background: #FFF3E8;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.mega-col a {
  display: block;
  font-size: 0.8125rem;
  padding: 0.35rem 0.5rem;
  color: #374151;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.mega-col a:hover { background: var(--red); color: var(--white); }

.badge-new {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.625rem;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  margin-left: 0.35rem;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   HERO / BANNER SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.slides-track { display: flex; transition: transform 0.5s ease; }

.slide { min-width: 100%; position: relative; height: 442px; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mobile slides - hidden on desktop */
.slide.mobile-slide { display: none; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  background: var(--white);
}

.slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background 0.2s;
}

.slider-dots button.active { background: var(--red); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 44px;
  min-width: 44px;
}

.slider-arrow:hover { background: var(--red); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  overflow-x: hidden;
}

.about-section h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin-bottom: 0.5rem;
}

.about-section h3 {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: #374151;
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text p { font-size: 1.0625rem; color: #374151; margin-bottom: 1rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: #FFF3E8;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
}

.stat-card .stat-num {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--red);
  display: block;
}

.stat-card .stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* ============================================================
   COURSE SLIDER / CARDS
   ============================================================ */
.course-section {
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  overflow-x: hidden;
}

.course-slider-wrapper { position: relative; }

.course-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 0 1.5rem 1rem 1.5rem;
  margin: 0 -1.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.course-track::-webkit-scrollbar { display: none; }

.course-card {
  min-width: 280px;
  max-width: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: box-shadow 0.25s;
  flex-shrink: 0;
}

.course-card:hover { box-shadow: var(--shadow-lg); }

.course-card-img { position: relative; }
.course-card-img img { width: 100%; height: 170px; object-fit: cover; display: block; }

.fjp-badge {
  position: absolute;
  bottom: 0; left: 0;
}

.fjp-badge img { width: 120px; height: auto; }

.course-card-body { padding: 0.75rem 1rem 1rem; text-align: center; }

.course-title {
  font-size: 1.0625rem;
  font-weight: 500;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #111827;
}

.course-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  justify-items: center;
}

.course-tag {
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  justify-content: center;
}

.course-tag svg { width: 12px; height: 12px; flex-shrink: 0; }

.course-features {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.course-features span { color: var(--red); margin: 0 0.15rem; }

.bjustify-content: center;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  min-width: 44px
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--red); color: var(--white); }

.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  min-width: 44px
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.slide-btn:hover { background: var(--red); color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--gray-50);
  box-shadow: var(--shadow);
  padding: 3rem 1.5rem;
  margin: 2rem 0;
  overflow-x: hidden;
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonials-text h3 {
  font-size: 1.875rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-text p { color: #374151; font-size: 1rem; }

.testimonials-video { border-radius: 8px; overflow: hidden; }
.testimonials-video a img { width: 100%; border-radius: 8px; transition: opacity 0.2s; }
.testimonials-video a:hover img { opacity: 0.9; }

/* ============================================================
   WORLD CLASS STATS
   ============================================================ */
.world-stats {
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 2rem 1.5rem 3rem;
}

.world-stats h2 {
  font-size: 1.875rem;
  color: var(--red);
  text-align: center;
  font-weight: 700;
  padding: 2rem 0;
}

.world-stats-grid {
  display: flex;
  justify-content: center;
}

.world-stat-item {
  text-align: center;
  padding: 1.5rem 2.5rem;
  border-right: 1px solid var(--red);
}

.world-stat-item:last-child { border-right: none; }

.world-stat-item .big-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  display: block;
}

.world-stat-item .big-label {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 180px;
  margin: 0 auto;
}

/* ============================================================
   CADD DIVISIONS
   ============================================================ */
.divisions-section h2 {
  font-size: 1.875rem;
  color: var(--red);
  text-align: center;
  font-weight: 700;
  padding: 2rem 0 0;
  overflow-x: hidden;
}

.divisions-grid {
  display: grid;
  overflow-x: hidden;
  grid-template-columns: repeat(3, 1fr);
}

.division-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem 2rem;
  text-align: center;
  background: var(--gray-50);
}

.division-card.highlight { background: var(--red); }

.division-card img { width: 80px; height: auto; padding: 1rem; margin-bottom: 0.5rem; }

.division-card .div-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--red);
}

.division-card.highlight .div-title { color: var(--white); }

.division-card .div-desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.division-card.highlight .div-desc { color: #ffe5e6; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.4rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-white:hover { background: var(--white); color: var(--red); }

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--red);
  color: var(--black);
  padding: 0.4rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-red:hover { background: var(--red); color: var(--white); }

/* ============================================================
   EVENTS SLIDER
   ============================================================ */
.events-section {
  overflow-x: hidden;
  padding: 2rem 1.5rem 3rem;
}

.events-section h2 {
  font-size: 1.875rem;
  color: var(--red);
  text-align: center;
  font-weight: 700;
  padding: 2rem 0;
}

.events-slider { position: relative; overflow: hidden; }
.events-track { display: flex; transition: transform 0.5s ease; }
.event-slide { min-width: 100%; }
.event-slide a { display: block; }
.event-slide img { border-radius: 8px; width: 100%; max-height: 150px; object-fit: cover; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding-top: 2.5rem;
  border-top: 4px solid var(--red);
  background: var(--white);
  overflow-x: hidden;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  overflow-x: hidden;
}

.footer-col { min-width: 160px; }

.footer-brand { max-width: 280px; }
.footer-brand img { width: 220px; margin-top: 1rem; }

.footer-col-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--red);
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  padding: 0.2rem 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--red); }

.footer-address {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-phone-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  transform: skewX(-12deg);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.footer-phone-box a {
  color: var(--white);
  transform: skewX(12deg);
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.footer-phone-sub {
  font-size: 0.6875rem;
  transform: skewX(12deg);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a { display: block; }
.footer-socials img { width: 32px; height: 32px; }

.footer-divider {
  height: 1px;
  background: #d1d5db;
  margin: 1.5rem 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.875rem; }

.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--white);
  padding: 0 0.5rem;
  border-right: 2px solid var(--white);
  transition: color 0.15s;
}
.footer-bottom-links a:last-child { border-right: none; }
.footer-bottom-links a:hover { color: #000; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.mobile-nav.open { display: flex; }

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.mobile-nav-drawer {
  position: relative;
  z-index: 1000;
  width: 300px;
  background: var(--white);
  height: 100%;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

.mobile-nav-drawer a {
  display: block;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: #374151;
  transition: color 0.15s;
}

.mobile-nav-drawer a:hover { color: var(--red); }

/* ============================================================
   LEAD CAPTURE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--red);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.modal-subtext {
  font-size: 0.9375rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

#lead-form {
  display: flex;
  flex-direction: column;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input::-webkit-outer-spin-button,
.form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-input[type="number"] {
  -moz-appearance: textfield;
}

.modal-submit-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 44px;
}

.modal-submit-btn:hover {
  background: var(--dark-red);
}

.modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.msg-success {
  background: #d1fae5;
  color: #065f46;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: none;
  font-size: 0.9375rem;
}

.msg-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: none;
  font-size: 0.9375rem;
}

.msg-success.show {
  display: block;
}

.msg-error.show {
  display: block;
}

/* ============================================================
   CAREER COUNSELING SECTION (Two-Column Layout)
   ============================================================ */
.career-counseling-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 3rem 1.5rem;
  margin: 2.5rem 0;
}

.counseling-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.counseling-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.counseling-left > p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.counseling-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.counseling-benefits li {
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 0.75rem;
  padding-left: 0;
  line-height: 1.6;
}

.counseling-highlight {
  background: var(--white);
  padding: 1.25rem;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  font-size: 0.95rem;
  color: #111827;
}

.counseling-highlight strong {
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.counseling-right {
  display: flex;
  justify-content: center;
}

.counseling-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.counseling-form-card h3 {
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.form-subtext {
  font-size: 0.9375rem;
  color: #374151;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.lead-form-inline {
  display: flex;
  flex-direction: column;
}

.btn-submit-counseling {
  width: 100%;
  padding: 0.875rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  min-height: 44px;
}

.btn-submit-counseling:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-submit-counseling:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mobile adjustments for counseling section */
@media (max-width: 1024px) {
  .career-counseling-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .counseling-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .counseling-left h2 {
    font-size: 1.5rem;
  }

  .counseling-left > p {
    font-size: 0.95rem;
  }

  .counseling-form-card {
    padding: 1.5rem;
  }

  .counseling-form-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .career-counseling-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
  }

  .counseling-container {
    gap: 1.5rem;
  }

  .counseling-left h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .counseling-left > p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .counseling-benefits li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .counseling-highlight {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .counseling-form-card {
    padding: 1.25rem;
  }

  .counseling-form-card h3 {
    font-size: 1.125rem;
  }

  .form-input {
    font-size: 16px;
  }

  .btn-submit-counseling {
    font-size: 0.95rem;
  }
}

/* Mobile adjustments for modal */
@media (max-width: 640px) {
  .modal-box {
    padding: 1.25rem;
  }

  .form-input,
  .modal-submit-btn {
    font-size: 16px;
  }

  .modal-header h2 {
    font-size: 1.25rem;
  }
}

/* ============================================================
   ANIMATE CHARCTER (NEW badge)
   ============================================================ */
.animate-charcter {
  background: linear-gradient(to right, #f32170, #ff6b08, #cf23cf, #f32170);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% auto;
  animation: animateGrad 2s linear infinite;
  font-size: 1.25rem;
}

@keyframes animateGrad {
  to { background-position: 200% center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   TABLET & MOBILE (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --font-size-h1: 1.5rem;
    --font-size-h2: 1.375rem;
    --font-size-h3: 1.125rem;
    --font-size-body: 0.9375rem;
  }

  /* TOPBAR: Hide completely on tablets/mobile */
  .topbar { display: none !important; }

  /* NAVBAR */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mega-menu { display: none; }

  /* SECTIONS - Padding adjustments */
  .about-section { padding: 2rem 1rem; }
  .course-section { padding: 0 1rem; margin-bottom: 2rem; }
  .testimonials-section { padding: 2rem 1rem; }
  .world-stats { padding: 2rem 1rem 2rem; }
  .divisions-section { padding: 0 1rem; }
  .events-section { padding: 1.5rem 1rem 2rem; }

  /* ABOUT SECTION */
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-section h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .about-section h3 { font-size: 1.125rem; margin-bottom: 1.5rem; }
  .about-text p { font-size: 0.9375rem; }
  .stat-card { padding: 1rem; }
  .stat-card .stat-num { font-size: 1.5rem; }
  .stat-card .stat-label { font-size: 0.875rem; }

  /* HERO SLIDER */
  .hero-slider { min-height: 200px; }
  .slide { height: 320px; display: block; }
  .slide.mobile-slide { display: none; }
  .slide img { height: 100%; }
  .slider-arrow { width: 44px; height: 44px; font-size: 1rem; min-height: 44px; min-width: 44px; }
  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }
  .slider-dots button:not(.mobile-dot) { display: inline-block; }
  .slider-dots button.mobile-dot { display: none; }

  /* COURSE CARDS */
  .course-card { min-width: 260px; max-width: 260px; }
  .course-card-img img { height: 150px; }
  .course-title { font-size: 0.9375rem; min-height: 55px; }
  .course-meta { gap: 0.35rem; }
  .course-tag { font-size: 0.7rem; padding: 0.2rem 0.4rem; }
  .course-features { font-size: 0.75rem; }
  .btn-outline { padding: 0.4rem 1.2rem; font-size: 0.8125rem; min-height: 44px; min-width: 44px; }
  .slider-nav { margin-top: 0.75rem; }
  .slide-btn { width: 44px; height: 44px; font-size: 0.9rem; min-height: 44px; min-width: 44px; }
  .course-track { gap: 1rem; padding: 0 1rem 0.75rem 1rem; margin: 0 -1rem; -webkit-overflow-scrolling: touch; }

  /* TESTIMONIALS */
  .testimonials-inner { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-text h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
  .testimonials-text p { font-size: 0.9375rem; }
  .testimonials-video a img { border-radius: 8px; }

  /* WORLD CLASS STATS - 2x2 grid on mobile */
  .world-stats h2 { font-size: 1.5rem; padding: 1.5rem 0; }
  .world-stats-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .world-stat-item { 
    border-right: none; 
    border-bottom: 1px solid var(--red); 
    padding: 1.25rem; 
  }
  .world-stat-item:nth-child(3),
  .world-stat-item:nth-child(4) { border-bottom: none; }
  .world-stat-item .big-num { font-size: 2rem; }
  .world-stat-item .big-label { font-size: 0.875rem; }

  /* CADD DIVISIONS */
  .divisions-grid { grid-template-columns: 1fr; }
  .division-card { padding: 2rem 1.5rem; }
  .division-card img { width: 60px; }
  .division-card .div-title { font-size: 1.125rem; }
  .division-card .div-desc { font-size: 0.875rem; }

  /* EVENTS SLIDER */
  .events-section h2 { font-size: 1.5rem; padding: 1.5rem 0; }
  .event-slide img { max-height: 120px; }
  .slider-arrow { width: 32px; height: 32px; }

  /* FOOTER */
  .footer-top { flex-direction: column; gap: 1.5rem; padding: 0 1rem; }
  .footer-col { min-width: 100%; }
  .footer-brand { max-width: 100%; }
  .footer-brand img { width: 180px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1rem; gap: 1rem; }
  .footer-bottom-links { justify-content: center; gap: 0; }

  /* SECTION TITLES */
  .section-title { font-size: 1.375rem; padding: 1.5rem 0; }

  /* BUTTONS - Touch targets */
  .btn-outline { 
    padding: 0.4rem 1.2rem; 
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .slide-btn { min-height: 44px; min-width: 44px; }
  .slider-arrow { min-height: 44px; min-width: 44px; }
  .nav-hamburger { min-height: 44px; min-width: 44px; }
}

/* ============================================================
   MOBILE (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --font-size-h1: 1.25rem;
    --font-size-h2: 1.125rem;
    --font-size-h3: 1rem;
    --font-size-body: 0.9375rem;
  }

  /* BASE ADJUSTMENTS */
  body { font-size: 0.9375rem; }
  .container { padding: 0 1rem; }

  /* NAVBAR */
  .nav-inner { padding: 0 1rem; }
  .nav-logo img { width: 160px; }

  /* HERO SLIDER - Show mobile slides */
  .slide { display: none; }
  .slide.mobile-slide { display: block; height: auto; }
  .slide.mobile-slide img { height: auto; max-height: none; }
  .hero-slider { min-height: auto; }
  .slider-dots button:not(.mobile-dot) { display: none; }
  .slider-dots button.mobile-dot { display: inline-block; }
  .slider-dots { padding: 0.5rem 0; gap: 0.4rem; }
  .slider-dots button { width: 8px; height: 8px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 0.9rem; min-height: 44px; min-width: 44px; }
  .slider-arrow.prev { left: 0.35rem; }
  .slider-arrow.next { right: 0.35rem; }

  /* ABOUT SECTION */
  .about-section { padding: 1rem; }
  .about-section h1 { font-size: 1.25rem; margin-bottom: 0.5rem; }
  .about-section h3 { font-size: 1rem; margin-bottom: 1rem; }
  .about-text p { font-size: 0.9375rem; margin-bottom: 0.75rem; }
  .stats-grid { gap: 0.75rem; }
  .stat-card { padding: 0.85rem; border-radius: 6px; }
  .stat-card .stat-num { font-size: 1.25rem; }
  .stat-card .stat-label { font-size: 0.8125rem; line-height: 1.3; }

  /* SECTION PADDING */
  .course-section { padding: 0 1rem; margin-bottom: 1.5rem; }
  .testimonials-section { padding: 1.5rem 1rem; }
  .world-stats { padding: 1.5rem 1rem; }
  .divisions-section { padding: 0 1rem; }
  .events-section { padding: 1rem; }
  footer { padding-top: 1.5rem; }

  /* COURSE CARDS */
  .course-card { min-width: 260px; max-width: 260px; }
  .course-card-img img { height: 140px; }
  .course-title { font-size: 0.875rem; min-height: 50px; }
  .course-meta { grid-template-columns: 1fr; gap: 0.3rem; }
  .course-tag { font-size: 0.65rem; padding: 0.2rem 0.35rem; }
  .course-tag svg { width: 10px; height: 10px; }
  .course-features { font-size: 0.7rem; margin-bottom: 0.75rem; }
  .btn-outline { padding: 0.4rem 1rem; font-size: 0.75rem; min-height: 44px; min-width: 44px; }
  .slider-nav { margin-top: 0.5rem; }
  .slide-btn { width: 44px; height: 44px; font-size: 0.85rem; min-height: 44px; min-width: 44px; }
  .course-track { 
    gap: 0.85rem; 
    padding: 0 0.75rem 0.5rem 0.75rem; 
    margin: 0 -0.75rem;
    -webkit-overflow-scrolling: touch;
  }

  /* TESTIMONIALS */
  .testimonials-inner { gap: 1.5rem; }
  .testimonials-text h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
  .testimonials-text p { font-size: 0.9375rem; }
  .testimonials-video a img { border-radius: 6px; }

  /* SECTION TITLES */
  .section-title { font-size: 1.125rem; padding: 1rem 0; margin: 0; }

  /* WORLD CLASS STATS */
  .world-stats h2 { font-size: 1.25rem; padding: 1rem 0; }
  .world-stats-grid { gap: 1rem; }
  .world-stat-item { padding: 1rem; }
  .world-stat-item .big-num { font-size: 1.75rem; }
  .world-stat-item .big-label { font-size: 0.8125rem; line-height: 1.3; }

  /* CADD DIVISIONS */
  .divisions-section h2 { font-size: 1.25rem; padding: 1rem 0; }
  .divisions-grid { grid-template-columns: 1fr; }
  .division-card { padding: 1.5rem 1rem; }
  .division-card img { width: 50px; padding: 0.75rem; }
  .division-card .div-title { font-size: 1rem; }
  .division-card .div-desc { font-size: 0.8125rem; margin-bottom: 1rem; }
  .btn-outline-red { padding: 0.35rem 1rem; font-size: 0.8125rem; }
  .btn-outline-white { padding: 0.35rem 1rem; font-size: 0.8125rem; }

  /* EVENTS SLIDER */
  .events-section h2 { font-size: 1.25rem; padding: 1rem 0; }
  .event-slide img { max-height: 100px; border-radius: 6px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 0.8rem; min-height: 44px; min-width: 44px; }
  .slider-arrow.prev { left: 0.25rem; }
  .slider-arrow.next { right: 0.25rem; }

  /* FOOTER */
  .footer-divider { margin: 1rem 0; }
  .footer-top { gap: 1rem; padding: 0 1rem; flex-wrap: wrap; }
  .footer-col { min-width: 100%; }
  .footer-col a { font-size: 0.8125rem; padding: 0.15rem 0; }
  .footer-col-title { font-size: 0.9375rem; margin-bottom: 0.4rem; }
  .footer-brand img { width: 140px; margin-top: 0.75rem; }
  .footer-address { font-size: 0.8125rem; margin-bottom: 0.75rem; }
  .footer-phone-box { padding: 0.35rem 0.75rem 0.35rem 0.5rem; margin-bottom: 0.75rem; max-width: 90%; }
  .footer-phone-box a { font-size: 0.9rem; }
  .footer-phone-sub { font-size: 0.625rem; }
  .footer-socials { gap: 0.5rem; margin-top: 1rem; }
  .footer-socials img { width: 28px; height: 28px; }
  .footer-bottom { padding: 0.75rem; }
  .footer-bottom p { font-size: 0.75rem; }
  .footer-bottom-links a { font-size: 0.75rem; padding: 0 0.35rem; }

  /* BUTTONS - Touch targets */
  .btn-outline, .btn-outline-red, .btn-outline-white { min-height: 44px; min-width: 44px; }
  .slide-btn, .slider-arrow { min-height: 44px; min-width: 44px; }
  .nav-hamburger { min-height: 44px; min-width: 44px; padding: 0.5rem; }
  .mobile-nav-drawer a { 
    padding: 0.65rem 0.5rem; 
    font-size: 0.9375rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ============================================================
   EXTRA SMALL DEVICES (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .nav-inner { padding: 0 0.75rem; }
  .nav-logo img { width: 140px; }
  
  /* HERO - Show mobile slides */
  .slide { display: none; }
  .slide.mobile-slide { display: block; height: auto; }
  .slide.mobile-slide img { height: auto; }
  .slider-dots button:not(.mobile-dot) { display: none; }
  .slider-dots button.mobile-dot { display: inline-block; }
  
  .about-section h1 { font-size: 1.125rem; }
  .about-section h3 { font-size: 0.9375rem; }
  .about-text p { font-size: 0.875rem; }
  .stat-card .stat-num { font-size: 1.125rem; }
  .stat-card .stat-label { font-size: 0.75rem; }

  .section-title { font-size: 1rem; padding: 0.75rem 0; }
  .course-card { min-width: 240px; max-width: 240px; }
  
  .world-stat-item .big-num { font-size: 1.5rem; }
  .world-stat-item .big-label { font-size: 0.75rem; }
  
  .division-card .div-title { font-size: 0.9375rem; }
  .division-card .div-desc { font-size: 0.75rem; }
  
  .footer-top { gap: 0.75rem; padding: 0 0.75rem; }
}

/* ============================================================
   DESKTOP (min-width: 1025px)
   ============================================================ */
@media (min-width: 1025px) {
  /* Show desktop elements */
  .topbar { display: flex !important; }
  .nav-hamburger { display: none; }
  .mobile-nav { display: none; }
  .nav-links { display: flex; }

  /* HERO SLIDER */
  .slide { display: block; height: 442px; }
  .slide.mobile-slide { display: none; }
  .slide img { height: 100%; }
  .slider-dots button:not(.mobile-dot) { display: inline-block; }
  .slider-dots button.mobile-dot { display: none; }

  /* WORLD CLASS STATS - Horizontal with right borders */
  .world-stats-grid { display: flex; flex-wrap: nowrap; justify-content: center; }
  .world-stat-item { 
    border-right: 1px solid var(--red); 
    border-bottom: none;
  }
  .world-stat-item:last-child { border-right: none; }

  /* COURSE CARDS */
  .course-card { min-width: 280px; max-width: 280px; }
  .course-track { -webkit-overflow-scrolling: touch; }

  /* SECTIONS - Full desktop padding */
  .about-section { padding: 3rem 1.5rem; }
  .course-section { padding: 0 1.5rem; margin-bottom: 2.5rem; }
  .testimonials-section { padding: 3rem 1.5rem; }
  .world-stats { padding: 2rem 1.5rem 3rem; }
  .events-section { padding: 2rem 1.5rem 3rem; }
}
