/* ============================================
   LEGALCRAFT - Custom Styles
   ============================================ */

:root {
  --lc-primary: #1a2a4a;
  --lc-primary-dark: #0f1a2e;
  --lc-accent: #c9a227;
  --lc-accent-light: #e8d48b;
  --lc-light: #f8f9fc;
  --lc-text: #2c3e50;
  --lc-muted: #6c757d;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0f1a2e 0%, #1a2a4a 55%, #243b6b 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  padding: 1.5rem;
}

.scales-animation {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.scales-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scales-base,
.scales-pillar,
.scales-pivot {
  fill: var(--lc-accent);
}

.scales-beam {
  transform-origin: 60px 35px;
  animation: scales-balance 1.6s ease-in-out infinite;
}

.scales-beam rect {
  fill: var(--lc-accent-light);
}

.scales-pan-left line,
.scales-pan-right line {
  stroke: var(--lc-accent-light);
}

.scales-pan-left path,
.scales-pan-right path {
  fill: none;
  stroke: var(--lc-accent);
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.scales-pan-left {
  animation: pan-counter-left 1.6s ease-in-out infinite;
  transform-origin: 26px 37px;
}

.scales-pan-right {
  animation: pan-counter-right 1.6s ease-in-out infinite;
  transform-origin: 94px 37px;
}

@keyframes scales-balance {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

@keyframes pan-counter-left {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-8deg); }
}

@keyframes pan-counter-right {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-8deg); }
}

.preloader-brand {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}

.preloader-tagline {
  margin: 0.4rem 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lc-accent-light);
}

.preloader-bar {
  width: 140px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--lc-accent), var(--lc-accent-light));
  animation: preloader-progress 1.2s ease-in-out infinite;
}

@keyframes preloader-progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

body.preload-lock {
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .scales-animation {
    width: 100px;
    height: 100px;
  }

  .preloader-brand {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }
}

/* ---- Base ---- */
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--lc-text);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--lc-primary);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.section-title .subtitle {
  color: var(--lc-muted);
  font-size: 1.1rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--lc-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ---- Navbar ---- */
.navbar-legalcraft {
  background: var(--lc-primary);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s ease;
}

.navbar-legalcraft.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand .navbar-logo {
  width: 231px;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .navbar-brand .navbar-logo {
    width: 140px;
  }
}

.navbar-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.navbar-brand .brand-tag {
  font-size: 0.65rem;
  color: var(--lc-accent-light);
  letter-spacing: 1px;
  display: block;
  line-height: 1.2;
}

.navbar-legalcraft .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.navbar-legalcraft .nav-link:hover,
.navbar-legalcraft .nav-link.active {
  color: var(--lc-accent) !important;
}

/* ---- Hero ---- */
.hero-section {
  background: linear-gradient(135deg, var(--lc-primary-dark) 0%, var(--lc-primary) 50%, #243b6b 100%);
  color: #fff;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero-pattern.svg") repeat;
  opacity: 0.05;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--lc-accent);
  color: var(--lc-accent-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.hero-slogan {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--lc-accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--lc-accent-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 700px;
}

.hero-stats {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat-1 {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25) 0%, rgba(201, 162, 39, 0.08) 100%);
  border-color: rgba(201, 162, 39, 0.35);
}

.hero-stat-2 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-stat-3 {
  background: linear-gradient(135deg, rgba(36, 59, 107, 0.6) 0%, rgba(26, 42, 74, 0.4) 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stat .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lc-accent);
  display: block;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.hero-stat-2 .number {
  color: #fff;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.35rem;
  display: block;
}

.btn-accent {
  background: var(--lc-accent);
  color: var(--lc-primary-dark);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-accent:hover {
  background: var(--lc-accent-light);
  color: var(--lc-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-light-custom:hover {
  background: #fff;
  color: var(--lc-primary);
  border-color: #fff;
}

.hero-section .btn-outline-light-custom {
  background: #fff;
  border-color: #fff;
  color: var(--lc-primary);
}

.hero-section .btn-outline-light-custom:hover {
  background: var(--lc-accent-light);
  border-color: var(--lc-accent-light);
  color: var(--lc-primary-dark);
}

.hero-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.availability-pill i {
  color: var(--lc-accent);
  font-size: 1rem;
}

.hero-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.hero-form-title {
  color: var(--lc-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-form-subtitle {
  color: var(--lc-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-form-card .form-label {
  color: var(--lc-primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.hero-form-card .form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form-card .form-control:focus {
  border-color: var(--lc-accent);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
}

.hero-form-card .form-control::placeholder {
  color: #adb5bd;
}

.hero-form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.3);
  border-radius: 8px;
  color: #198754;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-form-success i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---- Main Content Layout ---- */
.main-content-area {
  padding-top: 1rem;
}

.main-content-area .section-padding {
  padding: 3.5rem 0;
}

.main-content-area .section-padding:first-child {
  padding-top: 2rem;
}

/* ---- Sticky Course Card ---- */
.sticky-course-sidebar {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.course-card-image {
  position: relative;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.course-card-body {
  padding: 1.5rem;
}

.course-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lc-primary);
  margin-bottom: 0.75rem;
}

.course-card-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lc-accent);
  margin-bottom: 1.25rem;
}

.course-card-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lc-muted);
}

.course-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.course-card-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--lc-text);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.course-card-highlights li:last-child {
  margin-bottom: 0;
}

.course-card-highlights li i {
  color: var(--lc-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.course-card-highlights li.course-card-feature {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.05) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: var(--lc-primary);
}

.course-card-highlights li.course-card-feature i {
  color: var(--lc-accent);
}

/* ---- About ---- */
.main-content-area .about-section {
  background: #f6f2e5;
  border-radius: 16px;
  padding: 20px;
}

.about-icon {
  width: 60px;
  height: 60px;
  background: var(--lc-primary);
  color: var(--lc-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.about-feature-card {
  background: #fff;
  border: 1px solid rgba(26, 42, 74, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.about-feature-card h5 {
  color: var(--lc-primary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.about-feature-card p {
  margin-bottom: 0;
  color: #5d6d7e;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---- Benefits Section ---- */
.main-content-area .benefits-section {
  background: linear-gradient(135deg, #f4f6fb 0%, #edf1fa 100%);
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  border: 1px solid rgba(26, 42, 74, 0.08);
}

.benefits-banner {
  width: 100%;
  height: 270px;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a2a4a 0%, #27437a 55%, #355a9f 100%);
  position: relative;
  overflow: hidden;
}

.benefits-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: #34495e;
  margin-bottom: 1.25rem;
}

.benefits-card {
  background: #fff;
  border: 1px solid rgba(26, 42, 74, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.benefits-card-title {
  color: var(--lc-primary);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  line-height: 1.55;
  color: #34495e;
}

.benefits-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--lc-accent);
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.benefit-stat-card {
  background: #fff;
  border: 1px solid rgba(26, 42, 74, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  height: 100%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.benefit-stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.85rem;
  background: var(--lc-primary);
  color: var(--lc-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
}

.benefit-stat-card h6 {
  margin-bottom: 0.3rem;
  color: var(--lc-primary);
  font-size: 1rem;
}

.benefit-stat-card p {
  margin-bottom: 0;
  color: #5d6d7e;
  font-size: 0.9rem;
}

/* ---- Modules ---- */
.module-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  overflow: hidden;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
}

.module-card .card-header {
  background: var(--lc-primary);
  color: #fff;
  border: none;
  padding: 1.15rem 1.35rem 1.25rem;
}

.module-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.module-card .module-number {
  display: inline-flex;
  align-items: center;
  background: var(--lc-accent);
  color: var(--lc-primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.module-card .card-header h5 {
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.module-duration {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lc-accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(232, 212, 139, 0.35);
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .module-card .card-header {
    padding: 1rem 1rem 1.1rem;
  }

  .module-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
  }

  .module-card .module-number {
    font-size: 0.88rem;
    padding: 0.35rem 0.75rem;
  }

  .module-card .card-header h5 {
    font-size: 1.05rem;
  }

  .module-duration {
    font-size: 0.78rem;
    white-space: normal;
  }
}

.module-card .card-body {
  padding: 1.5rem;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Vertical timeline line */
.module-card ul::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(26, 42, 74, 0.35);
}

.module-card ul li {
  position: relative;
  padding-left: 2.6rem;
  padding-bottom: 1.1rem;
  margin-bottom: 0;
  border-bottom: none;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--lc-text);
}

.module-card ul li:last-child {
  padding-bottom: 0;
}

/* Timeline round bullet with check icon */
.module-card ul li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--lc-accent);
  color: var(--lc-primary);
  font-size: 1.52rem;
  line-height: 25px;
  text-align: center;
  z-index: 1;
}

.module-card ul li::marker {
  content: none;
}

/* ---- Director / Profile ---- */
.main-content-area .director-section {
  background: var(--lc-light);
  border-radius: 16px;
  padding: 20px;
}

.profile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.profile-card .col-md-4 {
  display: flex;
  padding: 0;
}

.profile-image-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 280px;
  padding: 0;
  margin: 0;
  background: var(--lc-primary);
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: none;
  border-radius: 0;
}

.profile-info {
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-info h3 {
  margin-bottom: 0.25rem;
}

.profile-info .designation {
  color: var(--lc-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.experience-list li:last-child {
  border-bottom: none;
}

.experience-list li i {
  color: var(--lc-accent);
  margin-right: 0.5rem;
}

@media (max-width: 767.98px) {
  .profile-image-wrapper,
  .profile-image {
    min-height: 320px;
    max-height: 360px;
  }
}

/* ---- Sample Certificate ---- */
.main-content-area .certificate-section {
  background: linear-gradient(135deg, #f8f6f0 0%, #f1eee4 100%);
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  border: 1px solid rgba(26, 42, 74, 0.08);
}

.certificate-frame {
  width: 100%;
  margin: 0 auto 1.25rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0.75rem;
}

.certificate-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  aspect-ratio: 1017 / 720;
  object-fit: contain;
  background: #faf9f6;
}

.certificate-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: #34495e;
  margin-bottom: 1.25rem;
}

.certificate-highlights-card {
  background: #fff;
  border: 1px solid rgba(26, 42, 74, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
}

.certificate-highlights-card h5 {
  color: var(--lc-primary);
  margin-bottom: 1rem;
}

.certificate-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}

.certificate-highlights li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.55;
  color: #34495e;
  break-inside: avoid;
}

.certificate-highlights li:last-child {
  margin-bottom: 0;
}

.certificate-highlights li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--lc-accent);
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.certificate-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fdeaea;
  border: 1px solid #f5c2c2;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #5d6d7e;
  line-height: 1.5;
}

.certificate-note i {
  color: #c0392b;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (max-width: 575.98px) {
  .certificate-frame {
    padding: 0.5rem;
  }

  .certificate-highlights {
    columns: 1;
  }
}

/* ---- Contact ---- */
.main-content-area .contact-section {
  background: #f5f7fb;
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  margin-bottom: 50px;
  border: 1px solid rgba(26, 42, 74, 0.08);
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
  height: 100%;
  border: 1px solid rgba(26, 42, 74, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-top {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.contact-card-top .icon-box {
  margin-left: auto;
  margin-right: auto;
}

.contact-card .icon-box {
  width: 56px;
  height: 56px;
  background: var(--lc-primary);
  color: var(--lc-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-card-whatsapp .icon-box {
  background: #25d366;
  color: #fff;
}

.contact-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--lc-primary);
}

.contact-card p {
  font-size: 0.92rem;
  color: #5d6d7e;
}

.contact-card a {
  color: var(--lc-primary);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--lc-accent);
}

.contact-number-primary {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-address-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
}

.contact-address-card .icon-box {
  flex-shrink: 0;
  margin-bottom: 0;
}

.contact-address-content {
  flex: 1;
}

.contact-address-content p {
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--lc-accent) 0%, #d4af37 55%, var(--lc-accent-light) 100%);
  color: var(--lc-primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(201, 162, 39, 0.65);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-maps i:first-child {
  font-size: 1.05rem;
}

.btn-maps-arrow {
  font-size: 0.8rem;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-maps:hover,
.btn-maps:focus {
  background: linear-gradient(135deg, #b8921f 0%, var(--lc-accent) 50%, #f0df9a 100%);
  color: var(--lc-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.5);
  text-decoration: none;
}

.btn-maps:hover .btn-maps-arrow,
.btn-maps:focus .btn-maps-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

.btn-maps:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(26, 42, 74, 0.08);
  min-height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-address-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-address-card .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Footer ---- */
.footer {
  background: var(--lc-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 1.5rem;
}

.footer .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.footer-logo {
  width: 231px;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .footer-logo {
    width: 140px;
  }
}

.footer a {
  color: var(--lc-accent-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--lc-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.page-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--lc-accent-light);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50px;
  padding: 0.2rem 0.65rem 0.2rem 0.5rem;
  line-height: 1.3;
}

.page-counter i {
  font-size: 0.8rem;
  color: var(--lc-accent);
}

.page-counter-label {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.6px;
}

.page-counter-value {
  color: #fff;
  font-variant-numeric: tabular-nums;
  min-width: 1.2em;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-slogan {
    font-size: 1.15rem;
    padding-left: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-availability {
    flex-direction: column;
    gap: 0.75rem;
  }

  .availability-pill {
    width: 100%;
    border-radius: 14px;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero-stat .number {
    font-size: 1.75rem;
  }

  .hero-stat {
    min-width: 0;
    flex: none;
    padding: 1rem 0.65rem;
  }

  .hero-stat-3 {
    grid-column: 1 / -1;
  }

  .hero-form-card {
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .sticky-course-sidebar {
    position: static;
    margin-bottom: 1rem;
  }

  .main-content-area .section-padding:first-child {
    padding-top: 0;
  }
}
