/* JL Solutions Theme - Dark Blue + Yellow/Orange Accent
   Matches professional landing page design */

:root {
  --jl-dark: #1A253A;
  --jl-dark-alt: #1D2D44;
  --jl-dark-lighter: #263B54;
  --jl-accent: #FFC107;
  --jl-accent-hover: #FFD54F;
  --jl-accent-dark: #FFA726;
  --jl-white: #ffffff;
  --jl-text: rgba(255, 255, 255, 0.95);
  --jl-text-muted: rgba(255, 255, 255, 0.8);
  --jl-text-dim: rgba(255, 255, 255, 0.7);
  --jl-card-icon: #66B2FF;
  --jl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  font-family: var(--jl-font);
  background-color: var(--jl-dark);
  color: var(--jl-text);
  line-height: 1.6;
}

/* Navbar */
.navbar.jl-theme,
.navbar.jl-theme .navbar-brand,
.navbar.jl-theme .nav-link {
  background-color: var(--jl-dark) !important;
  color: var(--jl-white) !important;
}

.navbar.jl-theme {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.jl-theme .navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar.jl-theme .navbar-brand .jl-logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.navbar.jl-theme .nav-link {
  color: var(--jl-text-muted) !important;
  font-weight: 500;
  margin: 0 0.25rem;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.navbar.jl-theme .nav-link:hover,
.navbar.jl-theme .nav-link.active {
  color: var(--jl-white) !important;
}

.navbar.jl-theme .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--jl-accent);
}

.navbar.jl-theme .btn-book-call {
  background: var(--jl-accent);
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar.jl-theme .btn-book-call:hover {
  background: var(--jl-accent-hover);
  color: #1a1a1a;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section.jl-theme {
  background: var(--jl-dark);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section.jl-theme::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(102, 178, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-section.jl-theme .hero-headline-main {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--jl-white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-section.jl-theme .hero-headline-accent {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--jl-accent);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-section.jl-theme .hero-subheadline {
  font-size: 1.2rem;
  color: var(--jl-text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-section.jl-theme .hero-subheadline strong {
  color: var(--jl-accent);
  font-weight: 600;
}

.hero-section.jl-theme .btn-hero-cta {
  background: var(--jl-accent);
  color: #1a1a1a;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-section.jl-theme .btn-hero-cta:hover {
  background: var(--jl-accent-hover);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35);
}

.hero-section.jl-theme .hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-section.jl-theme .hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--jl-text);
  font-size: 1rem;
}

.hero-section.jl-theme .hero-benefit-item i {
  color: var(--jl-accent);
  font-size: 1.1rem;
}

.hero-section.jl-theme .hero-visual img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Feature Cards - White cards on light background */
.feature-cards-section {
  background: #f5f6f8;
  padding: 4rem 0 0;
  margin-top: -2rem;
}

.feature-card-jl {
  background: var(--jl-white);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card-jl:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card-jl .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 178, 255, 0.15);
  border-radius: 12px;
  color: var(--jl-card-icon);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card-jl h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feature-card-jl p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-card-jl .card-thumb {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #e0eaf0 0%, #c5d4e8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  font-size: 2.5rem;
}

/* Value Bar - Dark strip below feature cards */
.value-bar-jl {
  background: var(--jl-dark);
  padding: 2rem 0;
  margin-top: 0;
}

.value-bar-jl .value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--jl-white);
  font-size: 1rem;
  font-weight: 500;
}

.value-bar-jl .value-item i {
  color: var(--jl-accent);
  font-size: 1.25rem;
}

.value-bar-jl .value-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

/* Industry pills - high contrast for readability */
.industry-pills {
  gap: 0.75rem;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(102, 178, 255, 0.25);
  border: 1px solid rgba(102, 178, 255, 0.4);
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.industry-pill:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: var(--jl-accent);
  color: var(--jl-accent);
}

/* Help card links - accent color for visibility */
.help-card-link {
  color: var(--jl-accent) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s;
}
.help-card-link:hover {
  color: var(--jl-accent-hover) !important;
}

/* CTA Demo button - blue background, white text */
.btn-cta-demo {
  background: var(--jl-card-icon);
  color: #fff !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-cta-demo:hover {
  background: #4a9eff;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 178, 255, 0.35);
}

/* Buttons */
.btn-primary.jl-theme {
  background: var(--jl-accent);
  color: #1a1a1a;
  border: none;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary.jl-theme:hover {
  background: var(--jl-accent-hover);
  color: #1a1a1a;
}

/* Footer */
footer.jl-theme {
  background: var(--jl-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--jl-text-muted);
}

footer.jl-theme h5 {
  color: var(--jl-white);
}

footer.jl-theme a {
  color: var(--jl-text-muted);
}

footer.jl-theme a:hover {
  color: var(--jl-accent);
}

/* Responsive - Hero & Feature Cards */
@media (max-width: 992px) {
  .hero-section.jl-theme .hero-headline-main,
  .hero-section.jl-theme .hero-headline-accent {
    font-size: 2.25rem;
  }
  .hero-section.jl-theme .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section.jl-theme .hero-headline-main,
  .hero-section.jl-theme .hero-headline-accent {
    font-size: 1.85rem;
  }
  .hero-section.jl-theme .hero-subheadline {
    font-size: 1.05rem;
  }
  .hero-section.jl-theme .hero-benefits {
    flex-direction: column;
    gap: 0.75rem;
  }
  .value-bar-jl .value-item {
    justify-content: flex-start;
  }
  .navbar.jl-theme .btn-book-call {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
}
