/* ==========================================================================
   NETWORK HAWKS - LIGHT MODE DESIGN SYSTEM & RESPONSIVE ENGINE
   Primary Palette: Pure White, Soft Slate, Trust Blue (#2563eb), Cyan & Green
   Supports Desktop & Mobile Hamburger Nav Drawer + 100% Mobile Ergonomics
   ========================================================================== */

:root {
  /* Surface & Background Tokens */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --bg-blue-tint: #eff6ff;
  --bg-cyan-tint: #ecfeff;
  
  /* Primary Trust Blue Brand Colors */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-deep: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-subtle: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.2);
  
  /* Accent Colors */
  --accent-cyan: #0284c7;
  --accent-sky: #0ea5e9;
  --accent-emerald: #16a34a;
  --accent-gold: #f59e0b;
  
  /* Text Tokens */
  --text-main: #0f172a;       /* Deep slate heading */
  --text-body: #334155;       /* Readable dark slate */
  --text-muted: #64748b;      /* Secondary info */
  --text-dim: #94a3b8;        /* Micro labels */
  --text-white: #ffffff;
  
  /* Borders */
  --border-subtle: #e2e8f0;
  --border-blue: #bfdbfe;
  --border-focus: #2563eb;
  --border-active: #93c5fd;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Elevations */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 24px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.09);
  --shadow-blue: 0 10px 28px -4px rgba(37, 99, 235, 0.25);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-body);
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--bg-blue-tint);
  border: 1px solid var(--border-blue);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-title span.highlight {
  color: var(--primary);
  background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px; /* Ergonomic touch target */
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-blue-tint);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn-whatsapp:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.86rem;
  border-radius: var(--radius-sm);
  min-height: 40px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: #eff6ff;
  border-bottom: 1px solid var(--border-blue);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: #1e3a8a;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-msg {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.announcement-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.announcement-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1e40af;
  font-weight: 600;
}

.announcement-contact a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ==========================================================================
   NAVIGATION BAR (Desktop & Mobile Hamburger Drawer System)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid #cbd5e1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 64px;
}

.brand-logo img {
  height: 56px;
  width: auto;
  transition: transform 0.2s ease;
}

.brand-logo:hover img {
  transform: scale(1.02);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Hamburger Trigger Button (Visible on Desktop & Mobile) */
.hamburger-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1.5px solid var(--border-blue);
  color: var(--text-main);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hamburger-toggle:hover {
  background: var(--bg-blue-tint);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.hamburger-toggle i {
  font-size: 1.15rem;
  color: var(--primary);
}

/* ==========================================================================
   SLIDE-OVER NAVIGATION DRAWER (Desktop & Mobile)
   ========================================================================== */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 2rem 1.75rem;
}

.nav-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.drawer-header img {
  height: 44px;
  width: auto;
}

.drawer-close-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

.drawer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.02rem;
  transition: var(--transition);
}

.drawer-link i {
  width: 24px;
  text-align: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.drawer-link:hover, .drawer-link.active {
  background: var(--bg-blue-tint);
  color: var(--primary);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(191, 219, 254, 0.4) 0%, rgba(224, 242, 254, 0.2) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge-wrap .badge-icon {
  color: var(--accent-gold);
}

.hero-badge-wrap .badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.hero-title span.gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.8rem;
}

.hero-trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
}

.metric-item h4 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-item h4 span {
  color: var(--primary);
}

.metric-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Right Visual Stack */
.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 23, 42, 0.25) 100%);
  pointer-events: none;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-blue);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top {
  top: -1.2rem;
  right: -1rem;
}

.floating-badge.badge-bottom {
  bottom: -1.5rem;
  left: -1rem;
  animation-delay: -2s;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-icon.icon-blue {
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid var(--border-blue);
}

.floating-icon.icon-cyan {
  background: #ecfeff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.floating-content h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.floating-content p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SINGLE-LINE INFINITE CAROUSEL TICKER
   ========================================================================== */
.tech-banner {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 0;
  overflow: hidden;
}

.tech-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.tech-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tech-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.tech-ticker-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: tickerScroll 24s linear infinite;
  white-space: nowrap;
}

.tech-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #475569;
  transition: var(--transition);
  white-space: nowrap;
}

.tech-logo-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.tech-logo-item i {
  font-size: 1.4rem;
  color: var(--primary);
}

/* ==========================================================================
   ABOUT US BENTO GRID
   ========================================================================== */
.about-section {
  background: #ffffff;
  position: relative;
}

.about-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bento-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #0284c7);
}

.bento-icon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid var(--border-blue);
}

.bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

.bento-card p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.bento-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  list-style: none;
}

.bento-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
}

.bento-points li i {
  color: var(--accent-emerald);
  font-size: 1rem;
}

.bento-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bento-card-mini {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bento-card-mini:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bento-card-mini h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bento-card-mini h4 i {
  color: var(--primary);
}

.bento-card-mini p {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ==========================================================================
   FLAGSHIP COURSES SECTION
   ========================================================================== */
.courses-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.courses-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--bg-blue-tint);
  border-color: var(--border-blue);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-card-top {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.course-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-card-top img {
  transform: scale(1.06);
}

.course-top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.course-badge-track {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.course-pricing-tag {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  background: #ffffff;
  border: 1px solid var(--border-blue);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.course-pricing-tag .fee-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.course-pricing-tag .fee-amount {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.course-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-code {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.course-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.course-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.course-highlights {
  list-style: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.course-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-body);
}

.course-highlights li i {
  color: var(--primary);
  font-size: 0.85rem;
}

.course-card-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.course-card-footer .btn {
  flex: 1;
}

/* ==========================================================================
   INTERACTIVE CAREER & ELIGIBILITY MATRIX
   ========================================================================== */
.matrix-section {
  background: #ffffff;
  position: relative;
}

.matrix-nav-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.matrix-tab {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.matrix-tab:hover {
  border-color: var(--border-blue);
  color: var(--primary);
  background: var(--bg-blue-tint);
}

.matrix-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.matrix-content-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.matrix-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.matrix-title-group h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.matrix-title-group p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.matrix-salary-badge {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: right;
}

.salary-sub {
  font-size: 0.75rem;
  color: #059669;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.salary-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

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

.matrix-col {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.matrix-col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.matrix-col-header.jobs-border {
  border-bottom-color: var(--accent-cyan);
}

.matrix-col-header h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.matrix-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.matrix-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.matrix-list li i {
  color: var(--accent-emerald);
  font-size: 1.05rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.matrix-cta-row {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.matrix-cta-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.matrix-cta-info i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.matrix-cta-info p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.matrix-cta-info strong {
  color: var(--text-main);
}

/* ==========================================================================
   WHY CHOOSE NETWORK HAWKS
   ========================================================================== */
.why-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #eff6ff;
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   YOUTUBE & FREE LEARNING HUB
   ========================================================================== */
.youtube-section {
  background: #ffffff;
  position: relative;
}

.yt-box {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.yt-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.yt-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.yt-content p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.yt-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  margin-bottom: 2.2rem;
}

.yt-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.yt-features li i {
  color: #dc2626;
}

.yt-video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.yt-thumbnail {
  width: 100%;
  height: 270px;
  object-fit: cover;
  opacity: 0.85;
  display: block;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  transition: transform 0.3s ease;
}

.yt-video-card:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================================
   COURSE FEEDBACK & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.feedback-breakdown-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
}

.overall-score {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  padding-right: 2rem;
}

.overall-score .score-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.score-stars {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.total-reviews-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.star-label {
  width: 60px;
  text-align: right;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: flex-end;
}

.star-label i {
  color: var(--accent-gold);
}

.progress-track {
  flex-grow: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border-radius: var(--radius-full);
}

.percent-label {
  width: 45px;
  font-weight: 600;
  color: var(--text-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.author-info .company-tag {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   HIGH CONVERTING CONTACT & DEMO HUB
   ========================================================================== */
.contact-section {
  background: #ffffff;
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

.form-header-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding-bottom: 0.85rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
}

.form-sub-notice {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-sub-notice i {
  color: var(--accent-emerald);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.form-label span.req {
  color: #dc2626;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1rem; /* 16px font prevents iOS automatic page zoom on form focus! */
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: #ffffff;
  color: var(--text-main);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Contact Info Sidebar Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-widget-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-widget-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.widget-title i {
  color: var(--primary);
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-method-item:last-child {
  margin-bottom: 0;
}

.method-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid var(--border-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.method-details h6 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.method-details a, .method-details p {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
}

.method-details a:hover {
  color: var(--primary);
}

/* Working Hours Grid Pills */
.hours-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hours-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hours-pill .day {
  color: var(--text-muted);
  font-weight: 600;
}

.hours-pill .time {
  color: var(--text-main);
  font-weight: 700;
}

.hours-pill.active-today {
  border-color: var(--primary);
  background: #eff6ff;
}

.hours-pill.closed-day {
  opacity: 0.75;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.faq-list {
  max-width: 850px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-blue);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.3rem;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FLOATING MOBILE ACTION BAR & MODALS
   ========================================================================== */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1rem;
  z-index: 999;
  backdrop-filter: blur(12px);
}

.floating-mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Modal Popup */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2050;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

/* ==========================================================================
   DEEP MOBILE & TABLET RESPONSIVE AUDIT & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-metrics {
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-image-card img {
    height: 380px;
  }
  .about-bento-grid {
    grid-template-columns: 1fr;
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback-breakdown-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .overall-score {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .yt-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .announcement-bar {
    display: none;
  }
  .nav-container {
    height: 76px;
  }
  .brand-logo {
    height: 48px;
  }
  .brand-logo img {
    height: 42px;
  }
  .hamburger-toggle span {
    display: none;
  }
  .hamburger-toggle {
    padding: 0.55rem 0.8rem;
  }
  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.4rem);
    line-height: 1.18;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-image-card img {
    height: 280px;
  }
  
  /* Floating Badges Position Fix for Mobile */
  .floating-badge.badge-top {
    position: static;
    margin-bottom: 1rem;
    width: 100%;
    animation: none;
  }
  .floating-badge.badge-bottom {
    position: static;
    margin-top: 1rem;
    width: 100%;
    animation: none;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  /* Matrix Responsive Tweaks */
  .matrix-content-box {
    padding: 1.5rem 1.1rem;
  }
  .matrix-nav-pills {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  .matrix-tab {
    flex-shrink: 0;
    padding: 0.6rem 1.1rem;
    font-size: 0.88rem;
  }
  .matrix-columns-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .matrix-col {
    padding: 1.25rem 1rem;
  }
  .matrix-cta-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .matrix-cta-row .btn {
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Form Responsive Tweaks */
  .contact-form-card {
    padding: 1.5rem 1.1rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hours-pill-grid {
    grid-template-columns: 1fr;
  }

  .floating-mobile-bar {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero-trust-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .modal-container {
    padding: 1.5rem 1.1rem;
  }
}
