@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --lt-red: #b50000;
  --lt-red-dark: #870000;
  --lt-red-bright: #d40000;
  --lt-bg: #1a1a1a;
  --lt-surface: #252525;
  --lt-border: #363636;
  --lt-muted: #888;
  --lt-light-bg: #f2f2f2;
  --lt-light-surface: #ffffff;
  --lt-light-border: #ddd;
  --lt-light-muted: #555;
}

/* ── Base ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--lt-bg);
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
a {
  color: inherit;
}

/* ── Header wrapper ── */
.lt-site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1031;
}

/* ── Top bar ── */
.lt-topbar {
  background: #141414;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--lt-border);
  color: #aaa;
}
.lt-topbar a {
  color: #aaa;
  text-decoration: none;
}
.lt-topbar a:hover {
  color: #fff;
}

/* ── Navbar ── */
.lt-navbar {
  background: rgba(20, 20, 20, 0.94) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lt-border);
  transition: background 0.3s;
}
.lt-navbar.scrolled {
  background: #141414 !important;
}
.lt-navbar .navbar-brand img {
  height: 72px;
  width: auto;
}
.lt-navbar .nav-link {
  color: #bbb !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem !important;
  transition: color 0.2s;
}
.lt-navbar .nav-link:hover,
.lt-navbar .nav-link.active {
  color: #fff !important;
}
.lt-navbar .navbar-toggler {
  border-color: var(--lt-border);
  color: #fff;
}
.navbar-collapse {
  background: #141414;
  padding: 0.5rem 1rem;
}
@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    padding: 0;
  }
}

/* ── Buttons ── */
.btn-lt-red {
  background: var(--lt-red);
  color: #fff;
  border: none;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.8rem;
  border-radius: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-lt-red:hover {
  background: var(--lt-red-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lt-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.8rem;
  border-radius: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-lt-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ── Typography helpers ── */
.text-lt-red {
  color: var(--lt-red) !important;
}
.lt-section-label {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lt-red);
  margin-bottom: 0.5rem;
}
.lt-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
}
.lt-muted {
  color: var(--lt-muted);
}

/* ── Hero ── */
.lt-hero {
  min-height: 100vh;
  background-image: url("../image/headimg.png");
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
}
.lt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.lt-hero-content {
  position: relative;
  z-index: 1;
}
.lt-hero h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0;
}
.lt-hero h1 .accent {
  color: var(--lt-red);
  display: block;
}
.lt-hero .sub {
  font-size: 1.05rem;
  color: #bbb;
  max-width: 480px;
}

/* ── Stats bar ── */
.lt-stats {
  background: #141414;
  border-top: 3px solid var(--lt-red);
  border-bottom: 1px solid var(--lt-border);
}
.lt-stat-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lt-red);
  line-height: 1;
}
.lt-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
}
.lt-stat-divider {
  width: 1px;
  background: var(--lt-border);
  align-self: stretch;
  margin: 1rem 0;
}

/* ── Sections ── */
.lt-section {
  padding: 5rem 0;
}
.lt-section-dark {
  background: #202020;
}
.lt-section-black {
  background: #141414;
}
hr.lt-divider {
  border-color: var(--lt-border);
  opacity: 1;
}

/* ── Light section — blog + faq element overrides ── */
.lt-section-light .lt-blog-item {
  border-bottom-color: #d8d8d8;
}
.lt-section-light .lt-pro-tip {
  background: rgba(181, 0, 0, 0.06);
  color: #555;
}
.lt-section-light .lt-faq-category {
  background: #fff;
  border-color: #ddd;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.lt-section-light .lt-faq-cat-header {
  background: #f0f0f0;
  border-bottom-color: #ddd;
}
.lt-section-light .lt-faq-cat-title {
  color: #111;
}
.lt-section-light .lt-accordion .accordion-item {
  background: #fff;
  border-top-color: #e8e8e8;
}
.lt-section-light .lt-accordion .accordion-button {
  background: #fff;
  color: #222;
}
.lt-section-light .lt-accordion .accordion-button:not(.collapsed) {
  background: #f5f5f5;
  color: #111;
}
.lt-section-light .lt-accordion .accordion-collapse {
  background: #f5f5f5;
}
.lt-section-light .lt-accordion .accordion-body {
  color: #444;
}
.lt-section-light .lt-accordion .accordion-body strong {
  color: #111 !important;
}
.lt-section-light .lt-accordion .accordion-button::after {
  filter: none;
}

/* ── Accent strip between sections ── */
.lt-accent-strip {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--lt-red) 0%,
    var(--lt-red-dark) 60%,
    transparent 100%
  );
}

/* ── Light Section ── */
.lt-section-light {
  background: var(--lt-light-bg);
}
.lt-section-light .lt-section-label {
  color: var(--lt-red);
}
.lt-section-light .lt-section-title {
  color: #111;
}
.lt-section-light .lt-muted,
.lt-section-light p.lt-muted {
  color: var(--lt-light-muted) !important;
}
.lt-section-light .text-white {
  color: #111 !important;
}
.lt-section-light .lt-highlight-card {
  background: var(--lt-light-surface);
  border-color: var(--lt-light-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.lt-section-light .lt-highlight-card:hover {
  border-color: var(--lt-red);
  box-shadow: 0 6px 24px rgba(181, 0, 0, 0.12);
}
.lt-section-light .lt-icon-box {
  background: rgba(181, 0, 0, 0.09);
}
.lt-section-light .btn-lt-outline {
  color: #111;
  border-color: rgba(0, 0, 0, 0.3);
}
.lt-section-light .btn-lt-outline:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.5);
  color: #111;
}
/* Fleet cards on light bg */
.lt-section-light .lt-fleet-card {
  background: #fff;
  border-color: #ddd;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.lt-section-light .lt-fleet-card:hover {
  border-color: var(--lt-red);
  box-shadow: 0 16px 48px rgba(181, 0, 0, 0.14);
}
.lt-section-light .lt-fleet-card .lt-card-img-placeholder {
  background: #e8e8e8;
  color: #bbb;
}
.lt-section-light .lt-spec {
  background: #f0f0f0;
  color: #555;
  border-color: #d0d0d0;
}
/* Contact items on light bg */
.lt-section-light .contact-item {
  border-bottom-color: #d8d8d8;
}
.lt-section-light .lt-map iframe {
  filter: none;
  border-color: #d0d0d0;
}

/* ── Fleet Cards ── */
.lt-fleet-card {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.lt-fleet-card:hover {
  border-color: var(--lt-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(181, 0, 0, 0.22);
}
.lt-fleet-card .lt-card-img {
  height: 220px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  background: #1c1c1c;
  display: block;
}
.lt-fleet-card .lt-card-img-placeholder {
  height: 220px;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 5rem;
}
.lt-vehicle-type {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--lt-red);
  color: #fff;
  padding: 0.2rem 0.6rem;
  display: inline-block;
}
.lt-spec {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: #141414;
  color: #888;
  border: 1px solid var(--lt-border);
  padding: 0.15rem 0.45rem;
}
.lt-fleet-card .card-link {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lt-red);
  text-decoration: none;
  transition: color 0.2s;
}
.lt-fleet-card .card-link:hover {
  color: var(--lt-red-bright);
}

/* ── Service Highlights ── */
.lt-highlight-card {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  padding: 2rem 1.5rem;
  height: 100%;
  transition:
    border-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}
.lt-highlight-card:hover {
  border-color: var(--lt-red);
  transform: translateY(-2px);
}
.lt-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(181, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--lt-red);
  margin-bottom: 1rem;
}

/* ── Reviews ── */
.lt-review-card {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.3s;
}
.lt-review-card:hover {
  border-color: #3a3a3a;
}
.lt-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.lt-reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--lt-red);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CTA Banner — solid red punch ── */
.lt-cta-banner {
  position: relative;
  overflow: hidden;
  /* background: var(--lt-red); */
}
.lt-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/headimg.png") center/cover;
  opacity: 0.35;
}
.lt-cta-banner .lt-cta-inner {
  position: relative;
  z-index: 1;
}
.lt-cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}
.lt-cta-banner .lt-section-label {
  color: rgba(255, 255, 255, 0.65);
}
.lt-cta-banner .lt-muted {
  color: rgba(255, 255, 255, 0.78) !important;
}
.lt-cta-banner .btn-lt-red {
  background: #fff;
  color: var(--lt-red);
}
.lt-cta-banner .btn-lt-red:hover {
  background: #f0f0f0;
  color: var(--lt-red-dark);
  transform: translateY(-2px);
}
.lt-cta-banner .btn-lt-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.lt-cta-banner .btn-lt-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ── Contact ── */
.lt-contact-row .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--lt-border);
}
.lt-contact-row .contact-item:last-child {
  border-bottom: none;
}
.lt-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(181, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lt-red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lt-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 1px solid var(--lt-border);
  display: block;
  filter: invert(90%) hue-rotate(180deg) grayscale(20%);
}

/* ── Footer ── */
.lt-footer-logo {
  height: 90px;
  width: auto;
}
@media (max-width: 575.98px) {
  .lt-footer-logo { height: 54px; }
}
.lt-footer {
  background: #141414;
  border-top: 1px solid var(--lt-border);
}
.lt-footer-link {
  display: block;
  color: #777;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.lt-footer-link:hover {
  color: #fff;
}
.lt-footer-heading {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555;
  margin-bottom: 1rem;
}
.lt-social-link {
  width: 38px;
  height: 38px;
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.lt-social-link:hover {
  border-color: var(--lt-red);
  color: #fff;
  background: var(--lt-red);
}

/* ── Page Hero (Blog/FAQ) ── */
.lt-page-hero {
  background: #141414;
  border-bottom: 2px solid var(--lt-red);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.lt-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/headimg.png") center/cover;
  opacity: 0.05;
}
.lt-page-hero .content {
  position: relative;
  z-index: 1;
}

/* ── Blog TOC Sidebar ── */
.lt-blog-toc {
  position: sticky;
  top: 12px;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.25rem;
}
.lt-toc-heading {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #999;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}
.lt-toc-season {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.5rem;
  margin-left: -0.25rem;
  border-left: 2px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.lt-toc-season:hover {
  color: var(--lt-red);
  border-left-color: var(--lt-red);
}
.lt-toc-items {
  margin-left: 0.75rem;
  border-left: 1px solid #e0e0e0;
  margin-bottom: 0.25rem;
}
.lt-toc-item {
  font-size: 0.78rem;
  color: #666;
  text-decoration: none;
  display: block;
  padding: 0.18rem 0.75rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.lt-toc-item:hover {
  color: var(--lt-red);
}
.lt-toc-sport {
  font-size: 0.78rem;
  color: var(--lt-red);
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 0.18rem 0.75rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.lt-toc-sport:hover {
  color: var(--lt-red-dark);
}
.lt-sport-badge {
  display: inline-block;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--lt-red);
  color: #fff;
  padding: 0.1rem 0.4rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ── Season Divider ── */
.lt-season-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 0 1.25rem;
  margin-top: 3rem;
  border-top: 3px solid var(--lt-red);
}
.lt-season-icon {
  width: 54px;
  height: 54px;
  background: var(--lt-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.lt-season-divider h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0 0 0.1rem;
  line-height: 1;
}
.lt-season-divider p {
  color: var(--lt-light-muted);
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Sports sub-section label ── */
.lt-sport-label {
  padding: 2rem 0 0.5rem;
  margin-top: 1rem;
  border-top: 1px dashed var(--lt-red);
}

/* ── Blog ── */
.lt-blog-num {
  width: 44px;
  height: 44px;
  background: var(--lt-red);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lt-blog-item {
  border-bottom: 1px solid var(--lt-border);
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
}
.lt-blog-item:last-child {
  border-bottom: none;
}
.lt-blog-img-wrap {
  overflow: hidden;
  position: relative;
}
.lt-blog-img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lt-blog-img-wrap:hover .lt-blog-img {
  transform: scale(1.05);
}
.lt-pro-tip {
  background: rgba(181, 0, 0, 0.08);
  border-left: 3px solid var(--lt-red);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}
.lt-pro-tip strong {
  color: var(--lt-red);
}

/* ── FAQ ── */
.lt-faq-category {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  overflow: hidden;
}
.lt-faq-cat-header {
  background: #202020;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--lt-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lt-faq-cat-icon {
  width: 36px;
  height: 36px;
  background: rgba(181, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lt-red);
  font-size: 1rem;
  flex-shrink: 0;
}
.lt-faq-cat-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}
/* Bootstrap Accordion dark theme */
.lt-accordion .accordion-item {
  background: var(--lt-surface);
  border: none;
  border-top: 1px solid var(--lt-border);
}
.lt-accordion .accordion-button {
  background: var(--lt-surface);
  color: #ddd;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: none;
}
.lt-accordion .accordion-button:not(.collapsed) {
  background: #2e2e2e;
  color: #fff;
  box-shadow: none;
}
.lt-accordion .accordion-button::after {
  filter: invert(1);
}
.lt-accordion .accordion-collapse {
  background: #2e2e2e;
}
.lt-accordion .accordion-body {
  color: #999;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ── Booking Prompt Modal ── */
.lt-modal-content {
  background: var(--lt-surface);
  border: 1px solid var(--lt-red);
  border-radius: 12px;
}
.lt-modal-content .lt-muted {
  color: var(--lt-muted);
}
.lt-modal-content .btn-link {
  color: var(--lt-muted);
  text-decoration: none;
}
.lt-modal-content .btn-link:hover {
  color: #fff;
}
