/* =====================================================
   InfraTech Coaching - Professional EdTech UI
   Primary: Navy   #0a2540
   Accent:  Orange  #ff6b35
   ===================================================== */

:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', system-ui, sans-serif;

  --color-navy: #0a2540;
  --color-navy-light: #123a5f;
  --color-navy-dark: #061827;
  --color-orange: #ff6b35;
  --color-orange-hover: #e85a28;
  --color-teal: #00b4d8;
  --color-green: #10b981;
  --color-yellow: #f59e0b;
  --color-purple: #7c3aed;

  --color-text: #334155;
  --color-text-muted: #64748b;
  --color-heading: #0f172a;
  --color-bg: #ffffff;
  --color-bg-light: #f8fafc;
  --color-bg-soft: #f1f5f9;
  --color-border: #e2e8f0;

  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-orange);
}

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

/* Spacing utilities */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 991.98px) {
  .py-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .py-7 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

.announcement-bar a:hover {
  color: var(--color-orange);
}

/* Navbar main */
.navbar-main {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-main.scrolled {
  box-shadow: var(--shadow-md);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--color-navy) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  max-height: 42px;
  width: auto;
}

.brand-text {
  color: var(--color-navy);
  font-weight: 800;
}

.navbar-main .nav-link {
  font-weight: 600;
  color: var(--color-heading) !important;
  padding: 0.6rem 1rem !important;
  border-radius: var(--radius-pill);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--color-orange) !important;
  background: rgba(255, 107, 53, 0.08);
}

.navbar-main .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem;
}

.navbar-main .dropdown-menu-lg {
  min-width: 260px;
}

.navbar-main .dropdown-item {
  border-radius: var(--radius-sm);
  font-weight: 500;
  padding: 0.6rem 1rem;
}

.navbar-main .dropdown-item:hover {
  background: var(--color-bg-soft);
  color: var(--color-orange);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--color-navy);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-cta-group .btn-primary {
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-phone {
  color: var(--color-heading);
}

.nav-phone:hover {
  color: var(--color-orange);
}

.nav-phone small {
  font-size: 0.7rem;
}

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.625rem 1.5rem;
  transition: var(--transition);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.btn-outline-primary:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}

.btn-navy {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.btn-light:hover {
  background: var(--color-bg-soft);
  color: var(--color-navy);
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1fbe58;
  border-color: #1fbe58;
  color: #fff;
}

/* Hero section */
.hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 55%, #0f4c81 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 15% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-section .container,
.hero-section .row {
  height: 100%;
}

/* Hero v2 — banner replacement */
.hero-section-v2 {
  padding: 6rem 0 5rem;
  min-height: auto;
}

.hero-section-v2 .hero-title {
  font-size: 3.2rem;
}

.hero-section-v2 .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-section-v2 .hero-highlights li {
  color: rgba(255, 255, 255, 0.9);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-orange);
  top: -120px;
  right: -120px;
}

.hero-bg-shape-2 {
  width: 360px;
  height: 360px;
  background: var(--color-teal);
  bottom: -100px;
  left: -80px;
}

.hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.hero-trust-badges {
  color: #fff;
}

.trust-badge-item {
  text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  min-width: 110px;
}

.trust-badge-item .trust-stars {
  font-weight: 700;
  color: var(--color-yellow);
}

.trust-badge-item .trust-value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.trust-badge-item small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  width: min(100%, 380px);
  height: auto;
  padding: 2rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card-main {
  text-align: center;
  width: 100%;
  max-width: 280px;
  z-index: 2;
  position: relative;
}

.hero-cards-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.hero-cards-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

.hero-cards-row .hero-card-floating {
  flex: 1 1 calc(50% - 0.875rem);
  min-width: 180px;
}

.hero-card-floating {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
  z-index: 3;
  width: 100%;
  max-width: 280px;
}

.hero-card-float-1,
.hero-card-float-2,
.hero-card-float-3 {
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.hero-card-float-1 {
  animation-delay: 0s;
}

.hero-card-float-2 {
  animation-delay: 1.2s;
}

.hero-card-float-3 {
  animation-delay: 2.4s;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-card-icon.icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-green);
}

.hero-card-icon.icon-orange {
  background: rgba(255, 107, 53, 0.12);
  color: var(--color-orange);
}

.hero-card-icon.icon-purple {
  background: rgba(124, 58, 237, 0.12);
  color: var(--color-purple);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-actions {
  margin-top: 2rem;
}

@media (max-width: 991.98px) {
  .hero-section-v2 {
    padding: 4rem 0 3.5rem;
    text-align: center;
  }

  .hero-section-v2 .hero-title {
    font-size: 2.4rem;
  }

  .hero-section-v2 .hero-subtitle,
  .hero-section-v2 .hero-highlights {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust-badges {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-section-v2 .hero-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0 3.5rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlights,
  .hero-actions,
  .hero-trust-badges {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
}

/* Section headers */
.section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }
}

/* Page header v2 */
.page-header-v2 {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 6rem 0 4rem;
}

.page-header-v2::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Partner logos */
.partners-section {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-placeholder {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .partner-placeholder {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
  }

  .partner-logo {
    max-height: 34px;
  }
}

.tracking-wide {
  letter-spacing: 0.1em;
}

/* Stats section */
.stats-section {
  background: var(--color-navy);
  color: #fff;
}

.stat-card {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-orange);
}

.stat-card-value {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.stat-card-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-top: 0.25rem;
}

.stat-card-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-card-value {
    font-size: 2rem;
  }
}

/* Course category tabs / pills */
.course-tabs .nav-link {
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--color-text);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--color-border);
  margin: 0 0.25rem 0.5rem 0.25rem;
  white-space: nowrap;
}

.course-tabs .nav-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.course-tabs .nav-link.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.course-tabs {
  flex-wrap: wrap;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.category-pill {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

/* Course cards */
.course-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.course-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.course-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

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

.course-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.course-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.course-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.course-card-title a {
  color: var(--color-heading);
}

.course-card-title a:hover {
  color: var(--color-orange);
}

.course-card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.course-card-fee {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
}

.course-card-fee small {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.bg-primary-light {
  background: rgba(13, 110, 253, 0.1) !important;
}

.text-primary {
  color: #0d6efd !important;
}

/* Course card partial adjustments */
.course-card-img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.course-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.course-card-img-placeholder i {
  color: #fff;
}

.course-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.course-category-label {
  color: var(--color-orange);
  font-weight: 600;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: auto;
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Why choose us / Value cards / Feature cards */
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover,
.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  height: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.icon-blue {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.icon-orange {
  background: rgba(255, 107, 53, 0.12);
  color: var(--color-orange);
}

.icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-green);
}

.icon-teal {
  background: rgba(0, 180, 216, 0.12);
  color: var(--color-teal);
}

.icon-purple {
  background: rgba(124, 58, 237, 0.12);
  color: var(--color-purple);
}

.icon-yellow {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-yellow);
}

/* Success stories */
.success-section {
  background: var(--color-bg);
}

.success-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.success-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.success-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--color-orange);
  padding: 3px;
}

.success-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-orange);
  font-size: 1.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.success-badge {
  display: inline-block;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.success-quote {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Batches section */
.batches-section {
  background: var(--color-bg-light);
}

.batch-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.batch-card h5 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.batch-card .badge {
  font-size: 0.75rem;
}

.batch-card ul {
  flex: 1;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.batch-card .btn {
  margin-top: auto;
}

.batch-table {
  width: 100%;
  margin-bottom: 0;
}

.batch-table th {
  background: var(--color-bg-soft);
  color: var(--color-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 1rem;
}

.batch-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.batch-table tr:last-child td {
  border-bottom: none;
}

.batch-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.status-open {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-green);
}

.status-closed {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.status-waitlist {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-yellow);
}

/* Resources */
.resource-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  height: 100%;
}

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

.resource-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-bg-light);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-yellow);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-soft);
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq-section {
  background: var(--color-bg);
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--color-heading);
  background: transparent;
  padding: 1.25rem 0;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-orange);
}

.faq-accordion .accordion-button::after {
  background-size: 1.1rem;
}

.faq-accordion .accordion-body {
  padding: 0 0 1.25rem 0;
  color: var(--color-text-muted);
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 5rem 0;
  color: #fff;
}

.cta-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(4px);
}

.cta-box h2 {
  color: #fff;
}

@media (max-width: 991.98px) {
  .cta-box {
    padding: 2rem;
    text-align: center;
  }

  .cta-box .text-lg-end {
    text-align: center !important;
  }
}

/* Contact form & info */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--color-orange);
  color: #fff;
}

.contact-info-icon.whatsapp-bg {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.social-links-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-fb { background: #1877f2; }
.social-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-yt { background: #ff0000; }
.social-li { background: #0a66c2; }

.map-section {
  padding-bottom: 0;
}

.map-placeholder {
  background: var(--color-bg-soft);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
}

/* Course detail */
.course-detail-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
  padding: 5rem 0 3rem;
}

.course-detail-hero h1 {
  color: #fff;
}

.course-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.course-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.course-header-v2 {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
  padding: 5rem 0 3rem;
}

.course-header-v2 h1 {
  color: #fff;
}

.course-tag-large {
  display: inline-block;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.course-header-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.course-header-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.enroll-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.enroll-fee {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.course-description {
  line-height: 1.8;
}

.course-description p,
.about-content p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.course-description h2,
.course-description h3,
.about-content h2,
.about-content h3,
.course-description h4,
.about-content h4 {
  color: var(--color-heading);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.course-description ul,
.about-content ul,
.course-description ol,
.about-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.course-description li,
.about-content li {
  margin-bottom: 0.4rem;
}

/* About page */
.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

/* Footer v2 - site-footer */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand:hover {
  color: #fff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.trust-mini {
  margin-bottom: 1rem;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
}

.rating-badge i {
  color: var(--color-yellow);
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
  color: var(--color-orange);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
  color: var(--color-orange);
}

.site-footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 0.5rem;
  transition: var(--transition);
}

.site-footer .social-links a:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  z-index: 1030;
  transition: var(--transition);
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* Back-to-top */
#backToTop {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

#backToTop:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

/* Forms */
.form-control,
.form-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

textarea.form-control {
  min-height: 140px;
}

/* Alerts */
.alert {
  border-radius: var(--radius);
  border: none;
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.5em 0.85em;
  border-radius: var(--radius-pill);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .contact-form-card {
    padding: 1.5rem;
  }

  .cta-box {
    padding: 1.5rem;
  }

  .course-detail-hero {
    padding: 4rem 0 2rem;
  }

  .footer-top {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .trust-badge-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 100px;
  }

  .batch-card {
    padding: 1.5rem;
  }

  .feature-card,
  .value-card,
  .success-card,
  .testimonial-card,
  .resource-card {
    padding: 1.5rem;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-section-v2 .hero-title {
    font-size: 1.7rem;
  }

  .hero-section-v2 .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge-v2 {
    font-size: 0.75rem;
  }

  .hero-actions .btn-lg {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  .trust-badge-item {
    padding: 0.5rem 0.6rem;
    min-width: auto;
  }

  .trust-badge-item .trust-value {
    font-size: 1.1rem;
  }

  .course-tabs .nav-link,
  .category-pill {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
