/* ==========================================================================
   AGIOSZ OKTATÁSI KÖZPONT - 2026 Modern Dark Industrial Theme
   High-Tech Industrial Atmosphere, Animated Counters, Bold Yellow Accents
   ========================================================================== */

:root {
  /* Brand Industrial Color Palette - Agiosz Logo Yellow (#FECC00) */
  --ag-primary: #fecc00;        /* Exact Logo Industrial Yellow */
  --ag-primary-dark: #e5b800;   /* Hover Shade */
  --ag-primary-darker: #c9a100; /* Active Shade */
  --ag-primary-light: rgba(254, 204, 0, 0.12);
  --ag-primary-glow: rgba(254, 204, 0, 0.35);
  
  /* Modern Dark Slate & Graphite Architecture */
  --ag-bg-main: #0a0d14;        /* Deep Obsidian Base */
  --ag-bg-surface: #101622;     /* Surface Section Background */
  --ag-bg-card: #141b28;        /* Card & Module Surface */
  --ag-bg-card-hover: #192233;  /* Card Hover Background */
  --ag-bg-input: #0d121c;       /* Form Input Dark Background */
  
  --ag-border-subtle: rgba(255, 255, 255, 0.08);
  --ag-border-medium: rgba(255, 255, 255, 0.14);
  --ag-border-glow: rgba(254, 204, 0, 0.45);
  
  /* Text Colors - High Contrast for Dark Theme */
  --ag-text-heading: #ffffff;
  --ag-text-body: #cbd5e1;      /* Bright readable slate-300 */
  --ag-text-light: #f1f5f9;     /* Ultra-light slate-100 */
  --ag-text-muted: #94a3b8;     /* Crisp slate-400 */
  
  --ag-success: #10b981;
  --ag-danger: #ef4444;
  --ag-blue: #0284c7;
  
  /* Typography */
  --font-base: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Barlow Condensed', 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--ag-primary-glow);
  --shadow-card-glow: 0 10px 30px rgba(254, 204, 0, 0.12);
}

/* Base Reset & Smooth Scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  background-color: var(--ag-bg-main);
}

body {
  font-family: var(--font-base);
  color: var(--ag-text-body);
  background-color: var(--ag-bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ag-text-heading);
}

p, li, span {
  color: var(--ag-text-body);
}

.text-muted {
  color: var(--ag-text-body) !important;
}

.text-white-50 {
  color: rgba(241, 245, 249, 0.75) !important;
}

strong, b {
  color: #ffffff;
}

/* ==========================================================================
   TOP BAR & STATUS INDICATOR
   ========================================================================== */
.top-bar {
  background-color: #07090e;
  color: var(--ag-text-light);
  font-size: 0.84rem;
  border-bottom: 1px solid var(--ag-border-subtle);
}

.top-bar a {
  color: var(--ag-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: var(--ag-primary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ag-border-medium);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.status-badge:hover {
  background-color: rgba(254, 204, 0, 0.12);
  border-color: var(--ag-primary);
  color: var(--ag-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.pulse-dot.open {
  background-color: var(--ag-success);
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

.pulse-dot.closed {
  background-color: #94a3b8;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.main-navbar {
  background-color: rgba(10, 13, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(254, 204, 0, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-logo-img {
  height: 62px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.navbar-brand:hover .site-logo-img {
  transform: scale(1.04);
}

.site-logo-footer {
  height: 65px;
  max-width: 290px;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.7));
}

@media (max-width: 991.98px) {
  .site-logo-img {
    height: 50px;
    max-width: 215px;
  }
}

@media (max-width: 575.98px) {
  .site-logo-img {
    height: 44px;
    max-width: 185px;
  }
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ag-text-light);
  padding: 0.45rem 0.75rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1250px) {
  .navbar-nav .nav-link {
    font-size: 0.84rem;
    padding: 0.35rem 0.5rem !important;
  }
  .site-logo-img {
    height: 52px;
    max-width: 220px;
  }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--ag-primary) !important;
  background-color: rgba(254, 204, 0, 0.08);
}

/* Call Button in Navbar */
.nav-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--ag-border-medium);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta-call:hover {
  background-color: var(--ag-primary);
  color: #000;
  border-color: var(--ag-primary);
}

.nav-cta-call .bi-telephone-fill {
  color: var(--ag-primary);
  transition: color 0.2s;
}

.nav-cta-call:hover .bi-telephone-fill {
  color: #000;
}

.nav-btn-quote {
  padding: 6px 14px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 14px rgba(254, 204, 0, 0.35) !important;
  letter-spacing: -0.2px;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  border-radius: var(--radius-sm) !important;
}

.nav-btn-quote i {
  font-size: 1.12rem !important;
}

.btn-ag-primary,
.btn-ag-primary:link,
.btn-ag-primary:visited {
  background: linear-gradient(135deg, #ffd700 0%, #fecc00 50%, #e5b800 100%);
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 4px 18px rgba(254, 204, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.25px;
}

.btn-ag-primary span,
.btn-ag-primary i {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  background: none !important;
}

.btn-ag-primary:hover,
.btn-ag-primary:focus {
  background: linear-gradient(135deg, #ffe033 0%, #ffd000 50%, #e5b800 100%);
  color: #0a0f1d !important;
  -webkit-text-fill-color: #0a0f1d !important;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 26px rgba(254, 204, 0, 0.5);
}

.btn-ag-primary:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(254, 204, 0, 0.35);
}

/* ==========================================================================
   Árajánlatkérő Kiemelt Küldés Gomb (Premium CTA Button)
   Optimális olvashatóság, prémium arany-sárga színátmenet, mikro-tipográfia
   ========================================================================== */
.btn-quote-submit {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px !important;
  background: linear-gradient(135deg, #ffd700 0%, #ffc400 48%, #f59e0b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  border-radius: var(--radius-md, 14px) !important;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  text-decoration: none;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 8px 24px -4px rgba(245, 158, 11, 0.45),
    0 3px 8px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

.btn-quote-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: 0.65s;
  pointer-events: none;
}

.btn-quote-submit:hover::before {
  left: 140%;
}

.btn-quote-submit:hover {
  background: linear-gradient(135deg, #ffe033 0%, #ffcd00 48%, #f59e0b 100%) !important;
  color: #0a0f1d !important;
  -webkit-text-fill-color: #0a0f1d !important;
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 12px 30px -3px rgba(245, 158, 11, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

.btn-quote-submit:active {
  transform: translateY(1px);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(245, 158, 11, 0.3) !important;
}

.btn-quote-submit:disabled,
.btn-quote-submit:has(.spinner-border) {
  justify-content: center !important;
  font-size: 1.1rem;
  font-weight: 700;
  gap: 10px;
  opacity: 0.9;
  cursor: wait;
}

/* Bal oldali ikon jelvény */
.btn-quote-icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(15, 23, 42, 0.11);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0f172a;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn-quote-submit:hover .btn-quote-icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(15, 23, 42, 0.16);
}

/* Középső szövegcsoport */
.btn-quote-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
  padding: 0 16px;
}

.btn-quote-title {
  font-family: var(--font-base, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1.25;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  letter-spacing: 0.3px;
}

.btn-quote-subtitle {
  font-family: var(--font-base, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(15, 23, 42, 0.78) !important;
  -webkit-text-fill-color: rgba(15, 23, 42, 0.78) !important;
  margin-top: 2px;
  letter-spacing: 0.15px;
}

/* Jobb oldali nyíl */
.btn-quote-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0f172a;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-quote-submit:hover .btn-quote-arrow {
  transform: translateX(5px);
}

/* Reszponzív nézet mobilon */
@media (max-width: 576px) {
  .btn-quote-submit {
    padding: 12px 14px !important;
    gap: 8px;
  }
  .btn-quote-icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }
  .btn-quote-text-group {
    padding: 0 8px;
  }
  .btn-quote-title {
    font-size: 1.05rem;
  }
  .btn-quote-subtitle {
    font-size: 0.72rem;
  }
  .btn-quote-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.15rem;
  }
}

/* Bootstrap Theme Overrides for Yellow Accents */
.text-warning {
  color: #fecc00 !important;
}

.bg-warning {
  background-color: #fecc00 !important;
  color: #000000 !important;
}

.btn-warning,
.btn-warning *,
.btn-warning:link,
.btn-warning:visited {
  background-color: #fecc00 !important;
  border-color: #fecc00 !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 700;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning:hover * {
  background-color: #e5b800 !important;
  border-color: #e5b800 !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-industrial {
  position: relative;
  background-color: #070a10;
  color: #fff;
  padding: 90px 0 70px;
  overflow: hidden;
  border-bottom: 3px solid var(--ag-primary);
}

.hero-industrial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(254, 204, 0, 0.09) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-industrial::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.16) 0%, rgba(254, 204, 0, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background-color: rgba(254, 204, 0, 0.12);
  border: 1px solid rgba(254, 204, 0, 0.4);
  color: var(--ag-primary);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--ag-primary);
  text-shadow: 0 0 30px rgba(254, 204, 0, 0.35);
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ag-text-light);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-lead strong {
  color: #fff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--ag-border-medium);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero-call:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-hero-call .bi-telephone-fill {
  color: var(--ag-primary);
}

.btn-hero-call:hover .bi-telephone-fill {
  color: #000;
}

/* Hero Carousel & Floating Badge */
.hero-visual-card,
.hero-carousel-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(254, 204, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  background: #000;
}

.hero-carousel-inner .carousel-item {
  position: relative;
}

.hero-carousel-inner .carousel-item img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: brightness(0.95);
  display: block;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-carousel-inner .carousel-item.active img {
  transform: scale(1.04);
}

.hero-slide-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(254, 204, 0, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.hero-slide-tag .badge-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ag-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
}

.hero-slide-tag .badge-title {
  font-size: 0.92rem;
  font-weight: 750;
  color: #ffffff;
  line-height: 1.2;
}

/* Custom Sleek Indicators */
.hero-carousel-inner .carousel-indicators {
  margin-bottom: 85px;
  gap: 6px;
  z-index: 6;
}

.hero-carousel-inner .carousel-indicators [data-bs-target] {
  width: 22px;
  height: 4px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 0;
  opacity: 0.7;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.hero-carousel-inner .carousel-indicators .active {
  width: 38px;
  background-color: var(--ag-primary);
  opacity: 1;
  box-shadow: 0 0 10px rgba(254, 204, 0, 0.6);
}

/* Custom Hover Controls */
.hero-carousel-control {
  width: 42px;
  height: 42px;
  top: calc(50% - 30px);
  border-radius: 50%;
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(254, 204, 0, 0.4);
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 7;
}

.hero-carousel-control.carousel-control-prev {
  left: 14px;
}

.hero-carousel-control.carousel-control-next {
  right: 14px;
}

.hero-carousel-wrap:hover .hero-carousel-control {
  opacity: 0.9;
}

.hero-carousel-control:hover {
  background: var(--ag-primary);
  border-color: var(--ag-primary);
  opacity: 1;
  transform: scale(1.08);
}

.hero-carousel-control:hover .carousel-control-prev-icon,
.hero-carousel-control:hover .carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 991.98px) {
  .hero-carousel-inner .carousel-item img {
    height: 330px;
  }
  .hero-carousel-inner .carousel-indicators {
    margin-bottom: 75px;
  }
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254, 204, 0, 0.4);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

@media (max-width: 575.98px) {
  .hero-floating-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 14px;
    gap: 10px;
  }
  .hero-floating-badge .badge-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .hero-floating-badge .badge-text h6 {
    font-size: 0.92rem;
  }
  .hero-floating-badge .badge-text p {
    font-size: 0.72rem;
  }
}

.hero-floating-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--ag-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-floating-badge .badge-text h6 {
  color: #fff;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-floating-badge .badge-text p {
  color: var(--ag-text-light);
  margin: 0;
  font-size: 0.78rem;
}

/* Stats Counter Bar */
.hero-stats-row {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  clear: both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ag-border-subtle);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.stat-item:hover {
  background: rgba(254, 204, 0, 0.06);
  border-color: rgba(254, 204, 0, 0.4);
  transform: translateY(-3px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--ag-primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(254, 204, 0, 0.4);
  margin-bottom: 2px;
  white-space: nowrap;
}

.stat-desc {
  font-size: 0.84rem;
  color: var(--ag-text-muted);
  line-height: 1.35;
  width: 100%;
}

.stat-desc strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: normal;
}

.stat-desc span {
  display: block;
  color: var(--ag-text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   CATEGORY QUICK NAV CARDS
   ========================================================================== */
.section-categories {
  position: relative;
  background-color: var(--ag-bg-surface);
  padding: 70px 0;
  border-bottom: 1px solid var(--ag-border-subtle);
  overflow: hidden;
}

.section-categories::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.12) 0%, rgba(254, 204, 0, 0.02) 60%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.section-categories .container {
  position: relative;
  z-index: 2;
}

.category-card {
  background-color: var(--ag-bg-card);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--ag-border-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  background-color: var(--ag-bg-card-hover);
  box-shadow: var(--shadow-card-glow);
  border-color: rgba(254, 204, 0, 0.6);
}

.category-card:hover::before {
  background-color: var(--ag-primary);
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: rgba(254, 204, 0, 0.12);
  color: var(--ag-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  border: 1px solid rgba(254, 204, 0, 0.25);
  transition: all 0.3s;
}

.category-card:hover .cat-icon-wrap {
  background-color: var(--ag-primary);
  color: #000;
  box-shadow: 0 0 20px rgba(254, 204, 0, 0.4);
}

.cat-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.cat-text {
  font-size: 0.88rem;
  color: var(--ag-text-body);
  margin-bottom: 16px;
  flex-grow: 1;
}

.cat-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ag-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.category-card:hover .cat-link {
  gap: 10px;
}

/* ==========================================================================
   COURSE CATALOG & FILTERABLE CARDS
   ========================================================================== */
.section-catalog {
  position: relative;
  background-color: var(--ag-bg-main);
  padding: 85px 0;
  overflow: hidden;
}

.section-catalog::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -5%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.13) 0%, rgba(254, 204, 0, 0.02) 55%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.section-catalog::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -8%;
  width: 550px;
  height: 450px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.section-catalog .container {
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ag-primary);
  background-color: rgba(254, 204, 0, 0.12);
  border: 1px solid rgba(254, 204, 0, 0.3);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.section-heading + p,
.section-subheading,
.section-lead,
.section-desc {
  color: var(--ag-text-body) !important;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.catalog-controls {
  background-color: var(--ag-bg-card);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ag-border-subtle);
  margin-bottom: 35px;
  box-shadow: var(--shadow-sm);
}

.search-box {
  position: relative;
}

.search-box .bi-search {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ag-primary);
  font-size: 1.1rem;
}

.search-input {
  background-color: var(--ag-bg-input);
  border: 1px solid var(--ag-border-medium);
  color: #fff;
  padding: 12px 16px 12px 46px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.search-input:focus {
  background-color: #080c13;
  border-color: var(--ag-primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(254, 204, 0, 0.2);
}

.search-input::placeholder {
  color: var(--ag-text-muted);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ag-border-subtle);
  color: var(--ag-text-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background-color: rgba(254, 204, 0, 0.1);
  color: var(--ag-primary);
  border-color: var(--ag-primary);
}

.filter-btn.active {
  background: var(--ag-primary);
  color: #000;
  border-color: var(--ag-primary);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(254, 204, 0, 0.35);
}

/* Machine Card Structure */
.course-card {
  background-color: var(--ag-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--ag-border-subtle);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover {
  transform: translateY(-6px);
  background-color: var(--ag-bg-card-hover);
  box-shadow: var(--shadow-card-glow);
  border-color: rgba(254, 204, 0, 0.55);
}

.course-thumb-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #000;
}

.course-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.course-code-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 13, 20, 0.9);
  backdrop-filter: blur(8px);
  color: var(--ag-primary);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(254, 204, 0, 0.4);
  letter-spacing: 0.5px;
}

.course-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(254, 204, 0, 0.95);
  color: #000;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.3;
  min-height: 3.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  background: var(--ag-bg-input);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ag-border-subtle);
  font-size: 0.86rem;
  flex-grow: 1;
  min-height: 115px;
}

.course-specs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--ag-text-light);
}

.course-specs-list li:last-child {
  margin-bottom: 0;
}

.course-specs-list li i {
  color: var(--ag-primary);
  font-size: 1rem;
}

.course-specs-list strong {
  color: #fff;
}

.course-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.btn-card-apply {
  position: relative;
  flex: 1;
  background: linear-gradient(135deg, #ffd700 0%, #ffc400 48%, #f59e0b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: var(--radius-sm, 8px);
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  font-family: var(--font-base, 'Plus Jakarta Sans', sans-serif);
  font-weight: 750 !important;
  font-size: 1.02rem;
  letter-spacing: 0.25px;
  padding: 11px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  box-sizing: border-box;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 4px 14px rgba(245, 158, 11, 0.32),
    0 2px 5px rgba(0, 0, 0, 0.18) !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

.btn-card-apply::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.65s;
  pointer-events: none;
}

.btn-card-apply:hover::before {
  left: 140%;
}

.btn-card-apply span,
.btn-card-apply i {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  background: none !important;
}

.btn-card-apply i {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.btn-card-apply:hover {
  background: linear-gradient(135deg, #ffe033 0%, #ffcd00 48%, #f59e0b 100%) !important;
  color: #0a0f1d !important;
  -webkit-text-fill-color: #0a0f1d !important;
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 22px -2px rgba(245, 158, 11, 0.55),
    0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

.btn-card-apply:hover i {
  transform: scale(1.15) rotate(-5deg);
}

.btn-card-apply:active {
  transform: translateY(1px);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(245, 158, 11, 0.25) !important;
}

.btn-card-call {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffd700;
  font-size: 1.2rem;
  width: 48px;
  min-height: 48px;
  height: 100%;
  border-radius: var(--radius-sm, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-card-call i {
  color: #ffd700;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-card-call:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffc400 50%, #f59e0b 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-card-call:hover i {
  color: #0f172a !important;
  transform: scale(1.1);
}

.btn-card-call:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FEATURES / BENEFITS SECTION
   ========================================================================== */
.section-features,
.section-advantages {
  position: relative;
  background-color: var(--ag-bg-surface);
  padding: 85px 0;
  border-top: 1px solid var(--ag-border-subtle);
  border-bottom: 1px solid var(--ag-border-subtle);
  overflow: hidden;
}

.section-features::before,
.section-advantages::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.13) 0%, rgba(254, 204, 0, 0.02) 60%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.section-features .container,
.section-advantages .container {
  position: relative;
  z-index: 2;
}

.feature-box {
  background-color: var(--ag-bg-card);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ag-border-subtle);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  transform: translateY(-6px);
  background-color: var(--ag-bg-card-hover);
  border-color: rgba(254, 204, 0, 0.5);
  box-shadow: var(--shadow-card-glow);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(254, 204, 0, 0.12);
  color: var(--ag-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  border: 1px solid rgba(254, 204, 0, 0.3);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--ag-text-body);
  margin: 0;
  flex-grow: 1;
}

/* ==========================================================================
   TRAINING STEPS / PROCESS
   ========================================================================== */
.section-steps,
.section-process {
  position: relative;
  background-color: var(--ag-bg-main);
  padding: 85px 0;
  overflow: hidden;
}

.section-steps::before,
.section-process::before {
  content: "";
  position: absolute;
  top: 15%;
  right: -5%;
  width: 600px;
  height: 450px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.12) 0%, rgba(254, 204, 0, 0.02) 55%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.section-steps .container,
.section-process .container {
  position: relative;
  z-index: 2;
}

.step-card {
  background-color: var(--ag-bg-card);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ag-border-subtle);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  background-color: var(--ag-bg-card-hover);
  border-color: rgba(254, 204, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-glow);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(254, 204, 0, 0.4);
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--ag-text-body);
  margin: 0;
}

/* ==========================================================================
   SYLLABUS / DOWNLOADS SECTION
   ========================================================================== */
.section-syllabus {
  position: relative;
  background-color: var(--ag-bg-surface);
  padding: 85px 0;
  border-top: 1px solid var(--ag-border-subtle);
  border-bottom: 1px solid var(--ag-border-subtle);
  overflow: hidden;
}

.section-syllabus::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10%;
  width: 650px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.12) 0%, rgba(254, 204, 0, 0.02) 60%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.section-syllabus .container {
  position: relative;
  z-index: 2;
}

.syllabus-controls {
  background-color: var(--ag-bg-card);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ag-border-subtle);
  margin-bottom: 30px;
}

.syllabus-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background-color: var(--ag-bg-card);
  border: 1px solid var(--ag-border-subtle);
  text-decoration: none;
  transition: all 0.25s ease;
  height: 100%;
}

.syllabus-item-card:hover {
  background-color: var(--ag-bg-card-hover);
  border-color: rgba(254, 204, 0, 0.6);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-glow);
}

.syllabus-pdf-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--ag-danger);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.syllabus-details h6 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px 0;
}

.syllabus-details span {
  font-size: 0.78rem;
  color: var(--ag-text-muted);
}

.syllabus-code-badge {
  color: var(--ag-primary);
  font-weight: 800;
  margin-right: 4px;
}

.syllabus-download-btn {
  color: var(--ag-text-muted);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.syllabus-item-card:hover .syllabus-download-btn {
  color: var(--ag-primary);
}

/* ==========================================================================
   QUOTE FORM & DIRECT CALL CTA
   ========================================================================== */
.section-quote-cta,
.section-quote-form {
  position: relative;
  background-color: var(--ag-bg-surface);
  padding: 85px 0;
  border-top: 1px solid var(--ag-border-subtle);
  overflow: hidden;
}

.section-quote-cta::before,
.section-quote-form::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -5%;
  width: 650px;
  height: 550px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.14) 0%, rgba(254, 204, 0, 0.02) 60%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.section-quote-cta .container,
.section-quote-form .container {
  position: relative;
  z-index: 2;
}

.form-wrapper-card {
  background-color: var(--ag-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--ag-border-subtle);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.form-wrapper-card h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.form-type-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.form-type-toggle input[type="radio"] {
  display: none;
}

.form-type-toggle label {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background-color: var(--ag-bg-input);
  border: 1px solid var(--ag-border-medium);
  color: var(--ag-text-light);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-type-toggle input[type="radio"]:checked + label {
  background-color: rgba(254, 204, 0, 0.15);
  border-color: var(--ag-primary);
  color: var(--ag-primary);
}

.form-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 6px;
}

.form-control, .form-select {
  background-color: var(--ag-bg-input);
  border: 1px solid var(--ag-border-medium);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-control:focus, .form-select:focus {
  background-color: #080c13;
  border-color: var(--ag-primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(254, 204, 0, 0.2);
}

.form-control::placeholder {
  color: var(--ag-text-muted);
}

.form-select option {
  background-color: #101622;
  color: #fff;
}

.form-select optgroup {
  background-color: #070a10;
  color: var(--ag-primary);
  font-weight: 700;
}

/* ==========================================================================
   MULTI-COURSE PICKER COMPONENT
   ========================================================================== */
.courses-picker-wrapper {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ag-border-medium);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all 0.2s ease;
}

.courses-picker-wrapper.is-invalid-box {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.quick-bundles-bar {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.btn-bundle-pill {
  background: rgba(254, 204, 0, 0.1);
  border: 1px solid rgba(254, 204, 0, 0.35);
  color: #ffdb4d;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-bundle-pill:hover,
.btn-bundle-pill.active {
  background: var(--ag-primary);
  color: #000000 !important;
  border-color: var(--ag-primary);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(254, 204, 0, 0.3);
}

.selected-courses-box {
  min-height: 52px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(254, 204, 0, 0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
}

.selected-courses-empty {
  font-size: 0.86rem;
  color: var(--ag-text-muted);
  font-style: italic;
}

.selected-courses-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.selected-course-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fecc00, #e5b800);
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: chipAppear 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chipAppear {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.selected-course-chip .chip-code {
  background: rgba(0, 0, 0, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.78rem;
}

.selected-course-chip .btn-remove-chip {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.selected-course-chip .btn-remove-chip:hover {
  opacity: 1;
  transform: scale(1.2);
}

.multi-course-discount-alert {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 10px;
  animation: chipAppear 0.3s ease;
}

.direct-call-box {
  background: linear-gradient(135deg, #161f2e 0%, #0d121c 100%);
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1px solid rgba(254, 204, 0, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.direct-call-box::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.25), transparent 70%);
  pointer-events: none;
}

.call-big-btn,
.call-big-btn *,
.call-big-btn span,
.call-big-btn i {
  background: var(--ag-primary);
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 26px rgba(254, 204, 0, 0.4);
  transition: all 0.25s ease;
  margin-top: 20px;
}

.call-big-btn:hover,
.call-big-btn:hover * {
  background: var(--ag-primary-dark);
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 204, 0, 0.55);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.section-faq {
  position: relative;
  background-color: var(--ag-bg-surface);
  padding: 85px 0;
  border-top: 1px solid var(--ag-border-subtle);
  overflow: hidden;
}

.section-faq::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.12) 0%, rgba(254, 204, 0, 0.02) 60%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.section-faq .container {
  position: relative;
  z-index: 2;
}

.accordion-item {
  background-color: var(--ag-bg-card);
  border: 1px solid var(--ag-border-subtle);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--ag-bg-card);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 22px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--ag-primary);
  background-color: rgba(254, 204, 0, 0.08);
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background-color: var(--ag-bg-card);
  color: var(--ag-text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 20px 22px;
  border-top: 1px solid var(--ag-border-subtle);
}

/* ==========================================================================
   CONTACT SECTION & OPENING TABLE
   ========================================================================== */
.section-contact {
  position: relative;
  background-color: var(--ag-bg-main);
  padding: 85px 0;
  border-top: 1px solid var(--ag-border-subtle);
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 5%;
  width: 550px;
  height: 480px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.12) 0%, rgba(254, 204, 0, 0.02) 55%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.section-contact .container {
  position: relative;
  z-index: 2;
}

.contact-card-info {
  background-color: var(--ag-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ag-border-subtle);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  margin-bottom: 0;
  border-radius: 12px;
  background: rgba(254, 204, 0, 0.12);
  color: var(--ag-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(254, 204, 0, 0.3);
  flex-shrink: 0;
}

.opening-hours-table {
  width: 100%;
  font-size: 0.88rem;
}

.opening-hours-table td {
  padding: 7px 0;
  border-bottom: 1px solid var(--ag-border-subtle);
  color: var(--ag-text-light);
}

.opening-hours-table tr.highlight-day {
  background-color: rgba(254, 204, 0, 0.12);
  font-weight: 700;
  color: var(--ag-primary);
}

.opening-hours-table tr.closed-day td {
  color: var(--ag-text-muted);
}

.map-container {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ag-border-subtle);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #06080d;
  color: var(--ag-text-body);
  padding: 75px 0 25px;
  border-top: 2px solid rgba(254, 204, 0, 0.35);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 10%;
  width: 650px;
  height: 420px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.14) 0%, rgba(254, 204, 0, 0.02) 60%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 550px;
  height: 350px;
  background: radial-gradient(circle, rgba(254, 204, 0, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-about-text {
  color: #e2e8f0 !important;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--ag-primary);
  transform: translateX(3px);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ag-border-medium);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: var(--ag-primary);
  color: #000;
  border-color: var(--ag-primary);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--ag-border-subtle);
  font-size: 0.85rem;
  color: var(--ag-text-muted);
}

.footer-bottom a {
  color: var(--ag-text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--ag-primary);
}

/* ==========================================================================
   MOBILE FLOATING ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  z-index: 1040;
  border-top: 1px solid rgba(254, 204, 0, 0.3);
}

@media (min-width: 992px) {
  .mobile-action-bar {
    display: none;
  }
}

.btn-mobile-call,
.btn-mobile-call *,
.btn-mobile-call span,
.btn-mobile-call i {
  flex: 1;
  background: var(--ag-primary);
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 800;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(254, 204, 0, 0.35);
}

.btn-mobile-quote {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--ag-border-medium);
  font-weight: 800;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ag-bg-card);
  border: 1px solid var(--ag-primary);
  color: var(--ag-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1030;
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .back-to-top {
    bottom: 30px;
  }
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--ag-primary);
  color: #000;
  transform: translateY(-3px);
}

/* ==========================================================================
   COOKIE CONSENT BANNER & LEGAL PAGES
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(254, 204, 0, 0.4);
  padding: 14px 0;
  z-index: 1060;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.6);
  animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpCookie {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.legal-content {
  background-color: var(--ag-bg-card) !important;
  color: var(--ag-text-light);
  border: 1px solid var(--ag-border-subtle);
}

.legal-content h2, .legal-content h1 {
  color: #fff !important;
}

.legal-content table {
  background-color: var(--ag-bg-input);
  color: var(--ag-text-light);
}

.legal-content table th {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.legal-content table td {
  color: var(--ag-text-light);
}

.legal-content .card {
  background-color: var(--ag-bg-surface);
  border: 1px solid var(--ag-border-subtle);
}

.legal-content .card-header {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--ag-primary);
}

.modal-custom-content {
  background-color: var(--ag-bg-card);
  color: #fff;
  border: 1px solid rgba(254, 204, 0, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.modal-custom-content .modal-title {
  color: #fff;
}

.modal-custom-content .text-muted {
  color: var(--ag-text-body) !important;
}

.modal-custom-content .bg-light {
  background-color: var(--ag-bg-input) !important;
  border: 1px solid var(--ag-border-subtle);
}

/* Zero inline styles semantic classes */
.catalog-no-results {
  display: none;
}

.company-only-field {
  display: none;
}

/* ==========================================================================
   THEME TOGGLE BUTTON STYLES
   ========================================================================== */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--ag-border-medium);
  color: var(--ag-text-light);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.theme-toggle-btn:hover {
  background-color: rgba(254, 204, 0, 0.15);
  border-color: var(--ag-primary);
  color: var(--ag-primary);
  transform: translateY(-1px);
}

.theme-toggle-btn i {
  font-size: 0.95rem;
}

/* ==========================================================================
   LIGHT MODE OVERRIDES ([data-theme="light"])
   Clean, Modern, High-Contrast 2026 Industrial Light Palette
   ========================================================================== */
[data-theme="light"] {
  /* Surfaces & Backgrounds */
  --ag-bg-main: #f4f6f9;
  --ag-bg-surface: #ffffff;
  --ag-bg-card: #ffffff;
  --ag-bg-card-hover: #f8fafc;
  --ag-bg-input: #ffffff;
  
  --ag-border-subtle: #e2e8f0;
  --ag-border-medium: #cbd5e1;
  --ag-border-glow: rgba(254, 204, 0, 0.5);
  
  /* Text Colors */
  --ag-text-heading: #0f172a;
  --ag-text-body: #334155;
  --ag-text-light: #475569;
  --ag-text-muted: #64748b;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.12);
  --shadow-card-glow: 0 10px 25px rgba(254, 204, 0, 0.2);
}

[data-theme="light"] html,
[data-theme="light"] body {
  background-color: var(--ag-bg-main);
  color: var(--ag-text-body);
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: var(--ag-text-heading);
}

[data-theme="light"] strong,
[data-theme="light"] b {
  color: #0f172a;
}

/* Light Top Bar & Navbar */
[data-theme="light"] .top-bar {
  background-color: #0f172a;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .main-navbar {
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .navbar-nav .nav-link {
  color: #1e293b;
}

[data-theme="light"] .navbar-nav .nav-link:hover,
[data-theme="light"] .navbar-nav .nav-link.active {
  color: #000 !important;
  background-color: rgba(254, 204, 0, 0.18);
}

[data-theme="light"] .navbar-toggler i {
  color: #0f172a !important;
}

[data-theme="light"] .nav-cta-call {
  background-color: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

[data-theme="light"] .nav-cta-call:hover {
  background-color: var(--ag-primary);
  color: #000;
  border-color: var(--ag-primary);
}

/* Light Hero Section */
[data-theme="light"] .hero-industrial {
  background-color: #f8fafc;
  border-bottom: 3px solid var(--ag-primary);
}

[data-theme="light"] .hero-industrial::before {
  background-image: 
    radial-gradient(rgba(254, 204, 0, 0.15) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .hero-industrial::after {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.18) 0%, transparent 70%);
}

[data-theme="light"] .hero-title {
  color: #0f172a;
}

[data-theme="light"] .hero-title .highlight {
  color: #b45309;
  text-shadow: none;
}

[data-theme="light"] .hero-lead {
  color: #475569;
}

[data-theme="light"] .hero-lead strong {
  color: #0f172a;
}

[data-theme="light"] .btn-hero-call {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .btn-hero-call:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

[data-theme="light"] .btn-hero-call:hover .bi-telephone-fill {
  color: var(--ag-primary);
}

[data-theme="light"] .hero-industrial .text-white-50 {
  color: #64748b !important;
}

[data-theme="light"] .hero-industrial .text-white {
  color: #1e293b !important;
}

/* Light Floating Badge & Stats */
[data-theme="light"] .hero-floating-badge {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(254, 204, 0, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .hero-floating-badge .badge-text h6 {
  color: #0f172a;
}

[data-theme="light"] .hero-floating-badge .badge-text p {
  color: #475569;
}

[data-theme="light"] .hero-stats-row {
  border-top: 1px solid #e2e8f0;
}

[data-theme="light"] .stat-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .stat-num {
  color: #b45309;
  text-shadow: none;
}

[data-theme="light"] .stat-desc strong {
  color: #0f172a;
}

[data-theme="light"] .stat-desc span {
  color: #64748b;
}

/* Light Cards, Catalog & Controls */
[data-theme="light"] .catalog-controls,
[data-theme="light"] .syllabus-controls {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .search-input {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .search-input:focus {
  background-color: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .filter-btn {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  color: #334155;
}

[data-theme="light"] .category-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .category-card:hover {
  background-color: #f8fafc;
}

[data-theme="light"] .category-card .cat-title {
  color: #0f172a;
}

[data-theme="light"] .category-card .cat-text {
  color: #475569;
}

[data-theme="light"] .course-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .course-card:hover {
  background-color: #f8fafc;
}

[data-theme="light"] .course-title {
  color: #0f172a;
}

[data-theme="light"] .course-specs-list {
  background-color: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .course-specs-list li {
  color: #475569;
}

[data-theme="light"] .course-specs-list strong {
  color: #0f172a;
}

[data-theme="light"] .course-code-pill {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border-color: #cbd5e1;
}

[data-theme="light"] .btn-card-call {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .btn-card-call:hover {
  background-color: var(--ag-primary);
  border-color: var(--ag-primary);
}

/* Light Feature & Step Cards */
[data-theme="light"] .feature-box,
[data-theme="light"] .step-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .feature-title,
[data-theme="light"] .step-title {
  color: #0f172a;
}

[data-theme="light"] .step-number {
  color: rgba(254, 204, 0, 0.6);
}

/* Light Syllabus Cards */
[data-theme="light"] .syllabus-item-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .syllabus-item-card:hover {
  background-color: #f8fafc;
}

[data-theme="light"] .syllabus-details h6 {
  color: #0f172a;
}

[data-theme="light"] .syllabus-details span {
  color: #64748b;
}

/* Light Quote Form */
[data-theme="light"] .form-wrapper-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .form-wrapper-card h3 {
  color: #0f172a;
}

[data-theme="light"] .form-label {
  color: #0f172a;
}

[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  background-color: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .form-type-toggle label {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

[data-theme="light"] .form-type-toggle input[type="radio"]:checked + label {
  background-color: rgba(254, 204, 0, 0.2);
  border-color: var(--ag-primary);
  color: #000;
}

/* Light FAQ */
[data-theme="light"] .accordion-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .accordion-button {
  background-color: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .accordion-button:not(.collapsed) {
  color: #b45309;
  background-color: rgba(254, 204, 0, 0.12);
}

[data-theme="light"] .accordion-button::after {
  filter: none;
}

[data-theme="light"] .accordion-body {
  background-color: #ffffff;
  color: #334155;
  border-top: 1px solid #e2e8f0;
}

/* Light Contact */
[data-theme="light"] .contact-info-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .contact-info-card h3,
[data-theme="light"] .contact-info-card h6 {
  color: #0f172a !important;
}

[data-theme="light"] .opening-hours-table td {
  color: #334155;
  border-color: #e2e8f0;
}

[data-theme="light"] .opening-hours-table tr.closed-day td {
  color: #94a3b8;
}

[data-theme="light"] .opening-hours-table tr.highlight-day {
  background-color: rgba(254, 204, 0, 0.15);
  color: #000;
}

[data-theme="light"] .legal-content {
  background-color: #ffffff !important;
  color: #334155 !important;
  border: 1px solid #e2e8f0 !important;
}

[data-theme="light"] .legal-content h2,
[data-theme="light"] .legal-content h1,
[data-theme="light"] .legal-content strong {
  color: #0f172a !important;
}

[data-theme="light"] .legal-content table {
  background-color: #f8fafc;
  color: #334155;
}

[data-theme="light"] .legal-content table th {
  background-color: #f1f5f9;
  color: #0f172a;
}

[data-theme="light"] .legal-content table td {
  color: #334155;
}

/* Light Mode - Dark Border on Quote / Application Buttons */
[data-theme="light"] .btn-ag-primary,
[data-theme="light"] .btn-quote-submit,
[data-theme="light"] .btn-card-apply,
[data-theme="light"] .call-big-btn,
[data-theme="light"] .btn-mobile-call,
[data-theme="light"] .btn-warning {
  border: 2px solid #0f172a !important;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14) !important;
}

[data-theme="light"] .btn-ag-primary:hover,
[data-theme="light"] .btn-quote-submit:hover,
[data-theme="light"] .btn-card-apply:hover,
[data-theme="light"] .call-big-btn:hover,
[data-theme="light"] .btn-mobile-call:hover,
[data-theme="light"] .btn-warning:hover {
  border-color: #000000 !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.24) !important;
}

[data-theme="light"] .nav-btn-quote {
  border: 2px solid #0f172a !important;
}

/* Light Mode - Multi Course Picker */
[data-theme="light"] .courses-picker-wrapper {
  background-color: #ffffff;
  border-color: #cbd5e1;
}

[data-theme="light"] .courses-picker-wrapper label {
  color: #0f172a !important;
}

[data-theme="light"] .quick-bundles-bar {
  background-color: #f1f5f9;
}

[data-theme="light"] .quick-bundle-label {
  color: #475569 !important;
}

[data-theme="light"] .btn-bundle-pill {
  background: #fef9c3;
  border-color: #eab308;
  color: #854d0e;
}

[data-theme="light"] .btn-bundle-pill:hover,
[data-theme="light"] .btn-bundle-pill.active {
  background: #fecc00;
  color: #000000 !important;
  border-color: #0f172a;
}

[data-theme="light"] .selected-courses-box {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

[data-theme="light"] .selected-courses-empty {
  color: #64748b;
}

[data-theme="light"] .selected-course-chip {
  background: #fecc00;
  border: 1.5px solid #0f172a;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .multi-course-discount-alert {
  background-color: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}

[data-theme="light"] .text-muted {
  color: #64748b !important;
}

[data-theme="light"] .section-heading + p,
[data-theme="light"] .section-subheading,
[data-theme="light"] .section-lead,
[data-theme="light"] .section-desc {
  color: #475569 !important;
}

/* Light Mode - Rich Ambient Glowing Backlights & Golden Sunburst Auras */
[data-theme="light"] .hero-industrial {
  background: radial-gradient(circle at 85% 20%, rgba(254, 204, 0, 0.22) 0%, rgba(254, 204, 0, 0.04) 50%, transparent 70%), #f8fafc;
}

[data-theme="light"] .hero-industrial::after {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.24) 0%, rgba(254, 204, 0, 0.06) 50%, transparent 75%);
  opacity: 1;
}

[data-theme="light"] .hero-visual-card,
[data-theme="light"] .hero-carousel-wrap {
  border: 2px solid rgba(254, 204, 0, 0.65);
  box-shadow: 0 20px 50px rgba(254, 204, 0, 0.24), 0 10px 25px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .section-categories::before {
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.20) 0%, rgba(254, 204, 0, 0.04) 60%, transparent 80%);
  opacity: 1;
}

[data-theme="light"] .section-catalog::before {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.22) 0%, rgba(254, 204, 0, 0.05) 55%, transparent 75%);
  opacity: 1;
}

[data-theme="light"] .section-catalog::after {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.16) 0%, transparent 70%);
  opacity: 1;
}

[data-theme="light"] .section-features::before,
[data-theme="light"] .section-advantages::before {
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.22) 0%, rgba(254, 204, 0, 0.04) 60%, transparent 80%);
  opacity: 1;
}

[data-theme="light"] .section-steps::before,
[data-theme="light"] .section-process::before {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.20) 0%, rgba(254, 204, 0, 0.04) 55%, transparent 75%);
  opacity: 1;
}

[data-theme="light"] .section-syllabus::before {
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.20) 0%, rgba(254, 204, 0, 0.04) 60%, transparent 80%);
  opacity: 1;
}

[data-theme="light"] .section-quote-cta::before,
[data-theme="light"] .section-quote-form::before {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.24) 0%, rgba(254, 204, 0, 0.05) 60%, transparent 75%);
  opacity: 1;
}

[data-theme="light"] .section-faq::before {
  background: radial-gradient(ellipse, rgba(254, 204, 0, 0.20) 0%, rgba(254, 204, 0, 0.04) 60%, transparent 80%);
  opacity: 1;
}

[data-theme="light"] .section-contact::before {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.20) 0%, rgba(254, 204, 0, 0.04) 55%, transparent 75%);
  opacity: 1;
}

[data-theme="light"] .site-footer {
  background-color: #0c1017;
  color: #cbd5e1;
  border-top: 3px solid var(--ag-primary);
}

[data-theme="light"] .site-footer .footer-heading {
  color: #ffffff;
}

[data-theme="light"] .site-footer .footer-links a {
  color: #cbd5e1;
}

[data-theme="light"] .site-footer .footer-links a:hover {
  color: var(--ag-primary);
}

[data-theme="light"] .site-footer .footer-about-text {
  color: #e2e8f0 !important;
}

[data-theme="light"] .site-footer .footer-social-link {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .site-footer .footer-social-link:hover {
  background: var(--ag-primary);
  color: #000000;
  border-color: var(--ag-primary);
}

[data-theme="light"] .site-footer::before {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.18) 0%, rgba(254, 204, 0, 0.04) 60%, transparent 75%);
  opacity: 1;
}

[data-theme="light"] .site-footer::after {
  background: radial-gradient(circle, rgba(254, 204, 0, 0.14) 0%, transparent 70%);
  opacity: 1;
}

/* Light Mode - Enhanced Hover Glow on Interactive Cards */
[data-theme="light"] .course-card:hover,
[data-theme="light"] .category-card:hover,
[data-theme="light"] .feature-box:hover,
[data-theme="light"] .step-card:hover,
[data-theme="light"] .syllabus-item-card:hover {
  background-color: #ffffff !important;
  border-color: rgba(254, 204, 0, 0.9) !important;
  box-shadow: 0 14px 35px rgba(254, 204, 0, 0.28), 0 4px 12px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-5px);
}

/* Light Mode - Icon Box Highlights */
[data-theme="light"] .cat-icon-wrap,
[data-theme="light"] .feature-icon,
[data-theme="light"] .contact-icon-box {
  background-color: rgba(254, 204, 0, 0.18);
  border: 1.5px solid rgba(254, 204, 0, 0.5);
  box-shadow: 0 4px 15px rgba(254, 204, 0, 0.2);
}

/* Light Mode - Direct Call Side Box */
[data-theme="light"] .direct-call-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 2px solid rgba(254, 204, 0, 0.6);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18), 0 0 30px rgba(254, 204, 0, 0.2);
}

[data-theme="light"] .direct-call-box h3 {
  color: #ffffff !important;
}

[data-theme="light"] .direct-call-box p {
  color: #cbd5e1 !important;
}

/* Google reCAPTCHA v3 - A lebegő jelvény elrejtése (a hivatalos jogi nyilatkozat az űrlap alján szerepel) */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
