﻿/* ============================================
   Learn Title Searching - Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
.lts-scope {
  --navy: #0a2540;
  --navy-dark: #061a2e;
  --navy-light: #1a3a5c;
  --gold: #c5a059;
  --gold-hover: #b08d4a;
  --gold-light: #d4b87a;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-400: #9aa5b1;
  --gray-600: #5a6577;
  --gray-800: #2d3748;
  --text-body: #4a5568;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 37, 64, 0.16);
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --container-max: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
.lts-scope *,
.lts-scope *::before,
.lts-scope *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lts-scope {
  scroll-behavior: smooth;
  font-size: 16px;
}

.lts-scope {
  font-family: var(--font-sans);
  color: var(--text-body);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

.lts-scope img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lts-scope a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.lts-scope ul {
  list-style: none;
}

.lts-scope button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Utility --- */
.lts-scope .container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.lts-scope .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
}

.lts-scope .section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.lts-scope .section-title-left {
  text-align: left;
}

.lts-scope .section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.lts-scope .section-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

/* --- Checklist --- */
.lts-scope .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.lts-scope .checklist li i {
  color: var(--navy);
  font-size: 0.85rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* --- Buttons --- */
.lts-scope .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.lts-scope .btn i {
  font-size: 0.75rem;
}

.lts-scope .btn-primary {
  background-color: var(--navy);
  color: var(--gold);
  border: 2px solid var(--navy);
}

.lts-scope .btn-primary:hover {
  background-color: var(--navy-light);
  border-color: var(--navy-light);
}

.lts-scope .btn-outline {
  background-color: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.lts-scope .btn-outline:hover {
  background-color: var(--navy);
  color: var(--gold);
}

.lts-scope .btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 16px 40px;
  font-size: 1rem;
  width: 100%;
}

.lts-scope .btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
}

/* ============================================
   Header
   ============================================ */
.lts-scope .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.lts-scope .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.lts-scope .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lts-scope .logo-img {
  width: 40px;
  height: 40px;
}

.lts-scope .logo-text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
}

.lts-scope .logo-text strong {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lts-scope .logo-text-light {
  color: var(--white);
}

.lts-scope .logo-img-light {
  filter: brightness(0) invert(1);
}

.lts-scope .main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
      margin-top: 16px;
}

.lts-scope .nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lts-scope .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
}

.lts-scope .nav-link:hover,
.lts-scope .nav-link.active {
  color: var(--navy);
}

.lts-scope .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
}

.lts-scope .btn-header {
  padding: 10px 24px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lts-scope .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.lts-scope .mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.lts-scope .hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .hero-content {
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 48px 0;
  position: relative;
  z-index: 2;
}

.lts-scope .hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--white) 43%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.36) 59%,
    rgba(255, 255, 255, 0) 68%
  );
}

.lts-scope .hero-grid {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.lts-scope .hero-text {
  max-width: 520px;
  padding-right: 0;
}

.lts-scope .hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 18px;
}

.lts-scope .hero-description {
  max-width: 500px;
  font-size: 1rem;
  color: #111827;
  line-height: 1.55;
  margin-bottom: 22px;
}

.lts-scope .hero-checklist {
  margin-bottom: 28px;
}

.lts-scope .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lts-scope .hero-image-wrap {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(57vw, 820px);
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
  z-index: 1;
  background-image: url('../images/hero-reference-clean.jpg');
  background-size: cover;
  background-position: center;
}

.lts-scope .hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-right: 0;
}

.lts-scope .hero-info-card {
  display: block;
  position: absolute;
  right: clamp(26px, 4.5vw, 52px);
  bottom: clamp(32px, 6vw, 64px);
  z-index: 3;
  background-color: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: 8px 24px;
  width: max-content;
  min-width: 292px;
  max-width: 330px;
}

.lts-scope .hero-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.lts-scope .hero-info-row:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .hero-info-row i {
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.lts-scope .hero-info-row span {
  flex: 1;
  white-space: normal;
}

.lts-scope .hero-checklist li {
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-weight: 600;
  color: #111827;
}

.lts-scope .hero-checklist li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 0;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--gold);
  font-size: 0.55rem;
}

/* ============================================
   Trust Bar
   ============================================ */
.lts-scope .trust-bar {
  background-color: var(--gray-100);
  padding: 36px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lts-scope .trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lts-scope .trust-icon {
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
}

.lts-scope .trust-text {
  display: flex;
  flex-direction: column;
}

.lts-scope .trust-text strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.4;
}

.lts-scope .trust-text span {
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* ============================================
   Why Section
   ============================================ */
.lts-scope .why-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.lts-scope .why-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/courthouse-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.lts-scope .why-content {
  position: relative;
  z-index: 1;
}

.lts-scope .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.lts-scope .why-card {
  text-align: center;
}

.lts-scope .why-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lts-scope .why-icon-wrap i {
  font-size: 1.6rem;
  color: var(--gold);
}

.lts-scope .why-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.lts-scope .why-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   Instructor Section
   ============================================ */
.lts-scope .instructor-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.lts-scope .instructor-image-wrap {
  position: relative;
}

.lts-scope .instructor-image {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.lts-scope .instructor-content .section-label {
  text-align: left;
}

.lts-scope .instructor-bio {
  margin-bottom: 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.lts-scope .instructor-checklist {
  margin-bottom: 32px;
}

.lts-scope .instructor-signature {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}

.lts-scope .signature-text {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.lts-scope .instructor-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.lts-scope .instructor-title {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================
   Curriculum Timeline
   ============================================ */
.lts-scope .curriculum-section {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.lts-scope .timeline {
  margin-top: 56px;
}

.lts-scope .timeline-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.lts-scope .timeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.lts-scope .timeline-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.lts-scope .timeline-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lts-scope .timeline-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   Course Features
   ============================================ */
.lts-scope .features-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.lts-scope .feature-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.lts-scope .feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lts-scope .feature-icon {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.lts-scope .feature-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.lts-scope .feature-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================
   Testimonials
   ============================================ */
.lts-scope .testimonials-section {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.lts-scope .testimonials-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.lts-scope .testimonials-track-wrap {
  overflow: hidden;
  flex: 1;
}

.lts-scope .testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.lts-scope .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
  background-color: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 400px;
  display: flex;
  flex-direction: column;
}

.lts-scope .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.lts-scope .stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.lts-scope .testimonial-quote {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  -webkit-box-orient: vertical;
}

.lts-scope .testimonial-card.expanded {
  height: auto;
}

.lts-scope .testimonial-card.expanded .testimonial-quote {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.lts-scope .testimonial-readmore {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin: -12px 0 16px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.lts-scope .testimonial-readmore:hover {
  text-decoration: underline;
}

.lts-scope .testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-top: auto;
}

.lts-scope .testimonial-location {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ============================================
   Testimonials Page (grid, not slider)
   ============================================ */
.lts-scope .testimonials-page-section {
  padding: 64px 0 80px;
  background-color: var(--gray-50);
}

.lts-scope .testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.lts-scope .testimonials-page-grid .testimonial-card {
  flex: initial;
  margin-right: 0;
}

/* ============================================
   Sponsored Ad Banner (shared across pages)
   ============================================ */
.lts-scope .ad-banner-section {
  padding: 32px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .ad-banner-wrap {
  display: flex;
  justify-content: center;
}

.lts-scope .ad-banner-wrap iframe {
  width: 100%;
  max-width: 703px;
  height: 110px;
  border: 0;
}

.lts-scope .slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition), border-color var(--transition);
}

.lts-scope .slider-btn:hover {
  background-color: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.lts-scope .slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.lts-scope .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-200);
  cursor: pointer;
  transition: background-color var(--transition);
  border: none;
}

.lts-scope .slider-dot.active {
  background-color: var(--navy);
}

/* ============================================
   Audience Section
   ============================================ */
.lts-scope .audience-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.lts-scope .audience-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: box-shadow var(--transition);
}

.lts-scope .audience-card:hover {
  box-shadow: var(--shadow-sm);
}

.lts-scope .audience-icon-wrap {
  width: 64px;
  height: 64px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lts-scope .audience-icon-wrap i {
  font-size: 1.4rem;
  color: var(--navy);
}

.lts-scope .audience-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.lts-scope .audience-text {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================
   Pricing Section
   ============================================ */
.lts-scope .pricing-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.lts-scope .pricing-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image: url('../images/house-bg.jpg');
  background-size: cover;
  background-position: center;
}

.lts-scope .pricing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(10, 37, 64, 0.88);
}

.lts-scope .pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.lts-scope .pricing-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gold);
  margin-bottom: 16px;
}

.lts-scope .pricing-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.lts-scope .pricing-checklist li {
  color: rgba(255, 255, 255, 0.9);
}

.lts-scope .pricing-checklist li i {
  color: var(--gold);
}

.lts-scope .pricing-course {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: background-color var(--transition), border-color var(--transition);
}

.lts-scope .pricing-course:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.lts-scope .pricing-card-image {
  flex: 0 0 140px;
  width: 140px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.lts-scope .pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lts-scope .pricing-course-body {
  flex: 1;
  min-width: 0;
}

.lts-scope .pricing-card-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lts-scope .pricing-card-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

.lts-scope .pricing-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
}

.lts-scope .pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.lts-scope .pricing-amount {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.lts-scope .pricing-access {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.lts-scope .pricing-secure {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.lts-scope .pricing-secure i {
  margin-right: 6px;
}

/* ============================================
   FAQ Section
   ============================================ */
.lts-scope .faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 48px;
}

.lts-scope .faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.lts-scope .faq-question:hover {
  color: var(--gold);
}

.lts-scope .faq-icon {
  font-size: 0.85rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.lts-scope .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.lts-scope .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.lts-scope .faq-item.active .faq-answer {
  max-height: 560px;
  padding-bottom: 20px;
  overflow-y: auto;
}

.lts-scope .faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================
   Pre-Footer CTA
   ============================================ */
.lts-scope .cta-section {
  padding: 72px 0;
  background-color: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.lts-scope .cta-inner {
  text-align: center;
}

.lts-scope .cta-logo {
  width: 145px;
  margin: 0 auto 20px;
}

.lts-scope .cta-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.lts-scope .cta-subtitle {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--gray-600);
  font-size: 0.98rem;
}

.lts-scope .cta-info-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .cta-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.lts-scope .cta-info-list i {
  color: var(--gold);
  font-size: 0.9rem;
}

.lts-scope .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   Page Banner (interior pages)
   ============================================ */
.lts-scope .page-banner {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url('../images/house-bg.jpg');
  background-size: cover;
  background-position: center;
}

.lts-scope .page-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 37, 64, 0.86);
}

.lts-scope .page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lts-scope .page-banner-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
  margin-bottom: 14px;
}

.lts-scope .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.lts-scope .breadcrumb a {
  color: var(--gold);
  font-weight: 600;
}

.lts-scope .breadcrumb a:hover {
  color: var(--gold-light);
}

.lts-scope .breadcrumb i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   About Us Page
   ============================================ */
.lts-scope .about-notice-section {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.lts-scope .about-notice-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.lts-scope .about-notice-body {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lts-scope .about-notice-video .embed-responsive {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding-top: 56.25%;
}

.lts-scope .about-notice-video .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lts-scope .about-content-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .lts-cms-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.8;
}

.lts-scope .lts-cms-content .row {
  display: block;
  margin: 0;
}

.lts-scope .lts-cms-content h1,
.lts-scope .lts-cms-content h2,
.lts-scope .lts-cms-content h3 {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.3;
  margin: 40px 0 16px;
}

.lts-scope .lts-cms-content h1:first-child,
.lts-scope .lts-cms-content h2:first-child,
.lts-scope .lts-cms-content h3:first-child {
  margin-top: 0;
}

.lts-scope .lts-cms-content h1 {
  font-size: 1.8rem;
}

.lts-scope .lts-cms-content h2 {
  font-size: 1.5rem;
}

.lts-scope .lts-cms-content h3 {
  font-size: 1.2rem;
}

.lts-scope .lts-cms-content p {
  margin-bottom: 18px;
}

.lts-scope .lts-cms-content strong {
  color: var(--navy);
}

.lts-scope .lts-cms-content ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.lts-scope .lts-cms-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.lts-scope .lts-cms-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.85rem;
}

.lts-scope .lts-cms-content hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 32px 0;
}

@media (max-width: 900px) {
  .lts-scope .about-notice-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   Advertise With Us â€” Packages
   ============================================ */
.lts-scope .ad-plans-section {
  padding: 24px 0 80px;
  background-color: var(--gray-50);
}

.lts-scope .ad-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.lts-scope .ad-plan-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gray-400);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.lts-scope .ad-plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lts-scope .ad-plan-bronze { border-top-color: #b08968; }
.lts-scope .ad-plan-silver { border-top-color: var(--gray-400); }
.lts-scope .ad-plan-gold {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.lts-scope .ad-plan-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.lts-scope .ad-plan-duration {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.lts-scope .ad-plan-price {
  font-family: var(--font-sans);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.lts-scope .ad-plan-currency {
  font-size: 1.3rem;
  vertical-align: top;
  margin-right: 2px;
}

.lts-scope .ad-plan-permonth {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: 8px 0 24px;
}

.lts-scope .ad-plan-features {
  text-align: left;
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
}

.lts-scope .ad-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.lts-scope .ad-plan-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.lts-scope .ad-plan-cta {
  width: 100%;
}

@media (max-width: 900px) {
  .lts-scope .ad-plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   Course Catalog
   ============================================ */
.lts-scope .course-catalog-section {
  padding: 0px 0;
  background-color: var(--gray-50);
}

.lts-scope .courses-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

.lts-scope .view-toggle-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}

.lts-scope .view-toggle {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
}

.lts-scope .view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  background-color: var(--white);
  color: var(--gray-400);
  transition: background-color var(--transition), color var(--transition);
}

.lts-scope .view-toggle-btn:not(:last-child) {
  border-right: 1px solid var(--gray-200);
}

.lts-scope .view-toggle-btn i {
  font-size: 0.9rem;
}

.lts-scope .view-toggle-btn:hover {
  color: var(--navy);
}

.lts-scope .view-toggle-btn.active {
  background-color: var(--navy);
  color: var(--gold);
}

.lts-scope .courses-grid {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

.lts-scope .courses-grid.view-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 330px));
  justify-content: center;
}

.lts-scope .courses-grid.view-list {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.lts-scope .courses-grid.view-list .course-card {
  flex-direction: row;
}

.lts-scope .courses-grid.view-list .course-card-image {
  width: 260px;
  height: auto;
  flex-shrink: 0;
}

.lts-scope .courses-grid.view-list .course-card-body {
  padding: 24px 28px;
}

.lts-scope .courses-grid.view-list .course-card-text {
  -webkit-line-clamp: 3;
}

.lts-scope .courses-grid.view-list .course-card-footer {
  margin-top: auto;
}

@media (max-width: 640px) {
  .lts-scope .courses-grid.view-list .course-card {
    flex-direction: column;
  }

  .lts-scope .courses-grid.view-list .course-card-image {
    width: 100%;
    height: 150px;
  }
}

.lts-scope .course-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.lts-scope .course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lts-scope .course-card-image {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.lts-scope .course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lts-scope .course-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}

.lts-scope .course-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.lts-scope .course-card-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.lts-scope .course-card-title a:hover {
  color: var(--gold);
}

.lts-scope .course-card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lts-scope .course-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 18px;
}

.lts-scope .course-card-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
}

.lts-scope .course-card-meta i {
  color: var(--gold);
  font-size: 0.7rem;
}

.lts-scope .course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.lts-scope .course-card-price {
  display: flex;
  flex-direction: column;
}

.lts-scope .course-price-amount {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.lts-scope .course-price-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
}

@media (max-width: 480px) {
  .lts-scope .course-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .lts-scope .course-card-footer .btn {
    width: 100%;
  }
}

/* ============================================
   Footer
   ============================================ */
.lts-scope .site-footer {
  background-color: var(--navy-dark);
  border-top: 4px solid var(--gold);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.lts-scope .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lts-scope .footer-logo {
  margin-bottom: 4px;
}

.lts-scope .footer-about-text {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.lts-scope .footer-heading {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.lts-scope .footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background-color: var(--gold);
}

.lts-scope .footer-links li {
  margin-bottom: 12px;
}

.lts-scope .footer-links a {
  display: inline-block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition), transform var(--transition);
}

.lts-scope .footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.lts-scope .footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.lts-scope .footer-contact i {
  color: var(--gold);
  width: 16px;
}

.lts-scope .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.lts-scope .footer-social a,
.lts-scope .footer-social a i {
  color: var(--gold);
}

.lts-scope .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.lts-scope .footer-social a:hover,
.lts-scope .footer-social a:hover i {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .lts-scope .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .lts-scope .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
   .lts-scope .hero {
     display: flex;
     flex-direction: column-reverse;
     min-height: 0;
   }

   .lts-scope .hero-content {
     min-height: 0;
     padding: 0;
   }

   .lts-scope .hero-content::after {
     display: none;
   }

   .lts-scope .hero-image-wrap {
     position: relative;
     inset: auto;
     min-height: 0;
     width: 100%;
     aspect-ratio: 474 / 356;
     justify-content: center;
     align-items: stretch;
     overflow: hidden;
     background-image: url('../images/hero-reference-clean.jpg');
     background-size: cover;
     background-position: center;
   }

   .lts-scope .hero-image {
     width: 100%;
     height: 100%;
     max-width: none;
     max-height: none;
     margin-right: 0;
   }

   .lts-scope .hero-info-card {
     left: auto;
     right: 20px;
     top: auto;
     bottom: 20px;
     transform: none;
     min-width: 0;
     width: auto;
     max-width: calc(100% - 40px);
     padding: 4px 18px;
   }

   .lts-scope .hero-info-row {
     padding: 10px 0;
     font-size: 0.8rem;
     gap: 12px;
   }

   .lts-scope .hero-text {
     max-width: none;
     padding-right: 0;
   }

   .lts-scope .hero-grid {
     padding: 40px 24px;
   }

   .lts-scope .trust-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 32px;
   }

   .lts-scope .why-grid {
     grid-template-columns: 1fr;
     max-width: 480px;
     margin-left: auto;
     margin-right: auto;
   }

   .lts-scope .instructor-grid {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .lts-scope .features-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .lts-scope .pricing-grid {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .lts-scope .pricing-course {
     flex-direction: column;
     align-items: stretch;
   }

   .lts-scope .pricing-card-image {
     width: 100%;
     height: 160px;
   }

.lts-scope .footer-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 768px) {
  .lts-scope .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px 0;
  }

  .lts-scope .main-nav.open {
    display: flex;
  }

  .lts-scope .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .lts-scope .nav-link {
    display: block;
    padding: 12px 24px;
  }

  .lts-scope .btn-header {
    display: none;
  }

  .lts-scope .mobile-menu-toggle {
    display: flex;
  }

  .lts-scope .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .lts-scope .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .lts-scope .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .lts-scope .trust-grid {
    grid-template-columns: 1fr;
  }

  .lts-scope .features-grid {
    grid-template-columns: 1fr;
  }

  .lts-scope .testimonial-card {
    flex: 0 0 100%;
  }

  .lts-scope .faq-grid {
    grid-template-columns: 1fr;
  }

  .lts-scope .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
   .lts-scope .hero-buttons {
     flex-direction: column;
   }

   .lts-scope .hero-buttons .btn {
     width: 100%;
   }

   .lts-scope .hero-info-card {
     left: 50%;
     right: auto;
     bottom: 16px;
     transform: translateX(-50%);
     min-width: 260px;
     width: auto;
     max-width: 90%;
     padding: 4px 16px;
   }

   .lts-scope .hero-info-row {
     font-size: 0.72rem;
     padding: 8px 0;
     gap: 10px;
   }

   .lts-scope .hero-image {
     width: 100%;
     max-height: none;
   }

   .lts-scope .audience-grid {
     grid-template-columns: 1fr;
   }

   .lts-scope .cta-buttons {
     flex-direction: column;
     align-items: center;
   }

   .lts-scope .cta-buttons .btn {
     width: 100%;
     max-width: 280px;
   }
 }

/* ============================================
   Header Login Trigger
   ============================================ */
.lts-scope .nav-login {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  flex-shrink: 0;
  transition: color var(--transition);
}

.lts-scope .nav-login:hover {
  color: var(--navy);
}

.lts-scope .nav-login i {
  font-size: 0.8rem;
}

/* ============================================
   Login Modal (Bootstrap modal, restyled)
   ============================================ */
.lts-scope .lts-modal {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lts-scope .lts-modal-header {
  background-color: var(--navy);
  border-bottom: none;
  padding: 24px 28px;
}

.lts-scope .lts-modal-header .modal-title {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--gold);
}

.lts-scope .lts-modal-body {
  padding: 32px 28px;
}

.lts-scope .lts-modal-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.lts-scope .lts-form-group {
  margin-bottom: 18px;
}

.lts-scope .lts-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.lts-scope .lts-form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--gray-800);
  transition: border-color var(--transition);
}

.lts-scope .lts-form-control:focus {
  outline: none;
  border-color: var(--navy);
}

.lts-scope textarea.lts-form-control {
  resize: vertical;
}

.lts-scope .lts-captcha-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.lts-scope .lts-captcha-img {
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}

.lts-scope .lts-captcha-row .lts-form-control {
  flex: 1;
  min-width: 160px;
}

.lts-scope .lts-captcha-verify {
  padding: 11px 18px;
  white-space: nowrap;
}

.lts-scope .lts-form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.lts-scope .lts-form-hint a {
  color: var(--navy);
  font-weight: 600;
}

.lts-scope .error {
  display: block;
  color: #d9534f;
  font-size: 0.8rem;
  margin-top: 4px;
}

.lts-scope .contact-info-card .footer-social a {
  color: var(--navy);
  border-color: var(--gray-200);
}

.lts-scope .contact-info-card .footer-social a:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.lts-scope .lts-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.lts-scope .lts-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  cursor: pointer;
}

.lts-scope .lts-checkbox input {
  accent-color: var(--navy);
}

.lts-scope .lts-forgot-link {
  color: var(--gold);
  font-weight: 600;
}

.lts-scope .lts-forgot-link:hover {
  color: var(--gold-hover);
}

.lts-scope .lts-form-submit {
  width: 100%;
}

.lts-scope .lts-modal-footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.lts-scope .lts-modal-footer-text a {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   Enroll Page
   ============================================ */
.lts-scope .enroll-section {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.lts-scope .enroll-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  padding: 40px;
}

.lts-scope .enroll-card + .enroll-card {
  margin-top: 40px;
}

.lts-scope .enroll-card-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.lts-scope .enroll-card-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.lts-scope .enroll-login-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}

.lts-scope .lts-form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 24px;
}

.lts-scope .btn-inline {
  width: auto;
  padding: 14px 32px;
  font-size: 0.9rem;
}

.lts-scope .enroll-form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.lts-scope .enroll-secure-note {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.lts-scope .enroll-secure-note i {
  color: var(--navy);
  margin-right: 6px;
}

@media (max-width: 900px) {
  .lts-scope .lts-form-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .lts-scope .enroll-login-row {
    grid-template-columns: 1fr 1fr;
  }

  .lts-scope .enroll-login-row .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .lts-scope .enroll-card {
    padding: 28px 22px;
  }

  .lts-scope .lts-form-grid-3,
  .lts-scope .enroll-login-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contact Page
   ============================================ */
.lts-scope .contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.lts-scope .contact-form-wrap .section-label {
  text-align: left;
}

.lts-scope .contact-form-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.lts-scope .lts-form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lts-scope .contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lts-scope .contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background-color: var(--gray-50);
}

.lts-scope .contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--gold);
  font-size: 1.1rem;
}

.lts-scope .contact-info-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.lts-scope .contact-info-card-body {
  min-width: 0;
}

.lts-scope .contact-info-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 8px;
}

.lts-scope .contact-info-card p:last-child {
  margin-bottom: 0;
}

.lts-scope .contact-info-card-body p:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   Course Details Page
   ============================================ */
.lts-scope .course-details-section {
  padding: 80px 0;
  background-color: var(--white);
}

.lts-scope .course-details-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

.lts-scope .course-details-summary {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 8px;
}

.lts-scope .lecture-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}

.lts-scope .lecture-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .lecture-list li i {
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}

.lts-scope.course-detail-page {
  overflow-x: visible;
}

.lts-scope .course-details-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.lts-scope .course-details-card {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lts-scope .course-details-card-image {
  position: relative;
  height: 200px;
}

.lts-scope .course-details-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lts-scope .course-details-card-body {
  padding: 28px;
  text-align: center;
}

.lts-scope .course-details-price {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.lts-scope .course-details-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 6px 0 20px;
}

.lts-scope .course-details-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.lts-scope .course-details-meta li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.lts-scope .course-details-meta i {
  color: var(--gold);
}

.lts-scope .course-details-cta {
  width: 100%;
}

.lts-scope .course-details-secure {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-600);
  text-align: center;
}

.lts-scope .course-details-secure i {
  margin-right: 6px;
  color: var(--navy);
}

@media (max-width: 900px) {
  .lts-scope .contact-grid,
  .lts-scope .course-details-grid {
    grid-template-columns: 1fr;
  }

  .lts-scope .course-details-sidebar {
    position: static;
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .lts-scope .lts-form-row-grid {
    grid-template-columns: 1fr;
  }

  .lts-scope .lts-form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
