/* ============================================================
   The ABC Team Training NW - A-Team Black & Red
   Colour scheme: black + red (A-Team inspired)
   ============================================================ */

:root {
  --primary: #b01c34;          /* softer A-Team red */
  --primary-dark: #7a1428;
  --primary-light: #d42a42;
  --accent: #e05a6e;           /* Bright red accent */
  --white: #FFFFFF;
  --off-white: #0f0f0f;
  --light: #1a1a1a;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-500: #c8c8c8;
  --gray-700: #f0f0f0;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --success: #10B981;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow: 0 4px 20px rgba(196,30,58,.2);
  --shadow-lg: 0 10px 40px rgba(196,30,58,.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', var(--font-sans);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: .875rem;
  padding: .6rem 0;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: var(--accent); }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-right: 1.25rem;
}

.topbar-item i { color: var(--accent); }

@media (max-width: 767px) {
  .topbar-item.d-none-mobile { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.95) !important;
  padding: .25rem .5rem;
}
.topbar-phone:hover { color: var(--accent) !important; }
.topbar-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.topbar-icon:hover { background: var(--primary); color: #fff; }

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
}

.brand img {
  height: 48px;
  width: auto;
}

.brand span { color: var(--primary); }

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

.nav-links a {
  padding: .6rem 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  font-size: .95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--light);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: .7rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(0,85,165,.35);
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: .5rem;
}

/* Mobile menu */
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
    transition: right .35s ease;
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,28,44,.5);
    z-index: 1000;
  }
  .nav-overlay.show { display: block; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0a0a0a 0%, #121212 60%, #1a0a0e 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-daf.jpg') center/cover no-repeat;
  opacity: .35;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-blue {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,85,165,.35);
}
.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  text-align: left;
}
.stat strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-display);
  color: var(--white);
}
.stat span {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ========== WHY US / FEATURES ========== */
.features {
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a1a1a, #2a1518);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: .95rem;
}

/* ========== COURSES ========== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--light);
}

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

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

.course-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

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

.course-body h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.course-meta {
  display: flex;
  gap: 1rem;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.course-meta i { color: var(--primary); margin-right: .3rem; }

.course-body p {
  color: var(--gray-500);
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ========== ABOUT PREVIEW ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-family: var(--font-display);
}

.about-content .eyebrow { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; margin-bottom: .75rem; display: block; }

.about-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  color: #f0f0f0;
}

.check-list i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, #0f0f0f, #1a0a0e);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.testimonial-card .stars {
  color: #F59E0B;
  margin-bottom: .75rem;
  font-size: .95rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  font-size: .98rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: .95rem;
}

.testimonial-author span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--white);
}

.contact-item a, .contact-item span {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}

.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: .4rem;
  color: var(--dark);
  font-size: .9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,85,165,.15);
}

.form-group textarea { min-height: 130px; resize: vertical; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand span { color: var(--accent); }

.footer p { font-size: .95rem; margin-bottom: 1.25rem; line-height: 1.7; }

.footer-links a {
  display: block;
  padding: .35rem 0;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.footer-links a:hover { color: var(--accent); padding-left: .35rem; }

.footer-contact li {
  display: flex;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .95rem;
}
.footer-contact i {
  color: var(--accent);
  margin-top: .2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .875rem;
}

/* ========== FLOATING CONTACT BUTTONS ========== */
.fab-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

.fab-call { background: var(--primary); }
.fab-whatsapp { background: var(--whatsapp); }
.fab-email { background: var(--dark-2); }

.fab-label {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  padding: .4rem .85rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(8px);
}

.fab-wrap {
  position: relative;
}

.fab-wrap:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .fab { width: 50px; height: 50px; font-size: 1.2rem; }
  .fab-label { display: none; }
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  color: var(--white);
  padding: 5.5rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: .75rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ========== BACK TO TOP ========== */
.back-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow);
}

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

.back-top:hover { background: var(--primary-dark); }

/* ========== UTILITIES ========== */
.text-primary { color: var(--primary) !important; }
.bg-light { background: var(--off-white); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Course detail sections */
.course-detail {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.course-detail:last-child { border-bottom: none; }

.course-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .course-detail-grid { grid-template-columns: 1fr; }
}

.price-tag {
  display: inline-block;
  background: rgba(176, 28, 52, 0.2);
  color: #e05a6e;
  border: 1px solid rgba(176, 28, 52, 0.45);
  font-weight: 700;
  font-size: 1.1rem;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.include-list li {
  padding: .5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-700);
}

.include-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ */
.faq-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  color: #f0f0f0 !important;
}
.faq-answer {
  color: #c8c8c8 !important;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question i { transition: transform .3s; color: var(--primary); }
.faq-item.open .faq-question i { transform: rotate(180deg); }

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

.faq-answer-inner {
  padding: 0 1.35rem 1.25rem;
  color: var(--gray-500);
  font-size: .98rem;
}

/* SEO / accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Print & reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ========== NAV DROPDOWN ========== */
.nav-dropdown {
  position: relative;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  padding: .5rem 0;
  z-index: 1002;
  border: 1px solid #e5e5e5;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: .7rem 1.25rem;
  color: #1a1a1a;
  font-size: .925rem;
  font-weight: 500;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: #b01c34;
}

@media (max-width: 991px) {
  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: transparent;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    border-bottom: 1px solid var(--gray-200);
  }
}

/* New logo adjustments */
.brand-logo {
  height: 64px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .brand-logo {
    height: 48px !important;
    max-width: 140px;
  }
}



/* Dark theme overrides for cards, sections etc */
.section, .course-card, .why-card, .testimonial-card, .card, .feature-card {
  background: var(--dark-2) !important;
  border-color: var(--gray-300) !important;
  color: var(--gray-700);
}
.section-title, .course-card h3, h2, h3 {
  color: var(--white) !important;
}
p, .text-muted, .lead {
  color: #c8c8c8 !important;
}
.check-list li {
  color: #f0f0f0 !important;
}
.about-content p,
.feature-card p,
.course-card p {
  color: #d0d0d0 !important;
}
.btn-primary, .btn-cta {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
}
.btn-primary:hover, .btn-cta:hover {
  background: var(--primary-light) !important;
}
.navbar, header, .site-header {
  background: var(--dark) !important;
  border-bottom: 1px solid var(--gray-300);
}

/* ========== A-TEAM LOGO (matches classic title treatment) ========== */
.a-team-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none !important;
  line-height: 1;
}
.a-team-logo-mark {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 4px 0;
}
.a-team-logo-mark::before,
.a-team-logo-mark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: #111;
}
.a-team-logo-mark::before { top: 0; }
.a-team-logo-mark::after { bottom: 0; }

.a-team-the {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #111;
  margin-right: 4px;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 2px;
}
.a-team-a {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: #b01c34;
  line-height: 0.9;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 0 #000;
  letter-spacing: -0.02em;
}
.a-team-team {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: #b01c34;
  letter-spacing: -0.02em;
  line-height: 0.9;
  position: relative;
  z-index: 1;
  margin-left: 3px;
}
.a-team-sub {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #b01c34;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Dark header version – invert bars for black background */
.navbar .a-team-the {
  color: #fff;
  background: transparent;
}
.navbar .a-team-logo-mark::before,
.navbar .a-team-logo-mark::after {
  background: #fff;
}

/* ========== A-TEAM VAN STYLE STRIPE ========== */
.a-team-stripe {
  height: 8px;
  background: #b01c34;
  position: relative;
  z-index: 50;
  overflow: hidden;
}
/* Diagonal cut inspired by the classic GMC Vandura red stripe */
.a-team-stripe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 45%;
  height: 100%;
  background: #0a0a0a;
  transform: skewX(-35deg);
  transform-origin: top left;
}
.a-team-stripe::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 20%;
  height: 100%;
  background: #0a0a0a;
  transform: skewX(-35deg);
}

/* Remove old brand-logo size rules that assumed an image */
.brand-logo { display: none !important; }

/* Course card action buttons – clearly separate */
.course-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.course-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn-outline-course {
  background: transparent !important;
  color: #f0f0f0 !important;
  border: 2px solid #555 !important;
  font-weight: 600;
}
.btn-outline-course:hover {
  border-color: var(--primary) !important;
  color: #fff !important;
  background: rgba(176, 28, 52, 0.15) !important;
}
.course-actions .btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
  border: 2px solid var(--primary) !important;
}

/* Floating email button – visible on dark pages */
.fab-email {
  background: #3a3a3a !important;
  border: 1px solid #666 !important;
}
.fab-email:hover {
  background: #555 !important;
}

/* Sharper body text on dark */
body, p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
