/* =============================================
   LONDON PAGE — css/london.css
   ============================================= */

.ldn-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.ldn-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.ldn-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.ldn-section-header .ldn-label { justify-content: center; }
.ldn-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.15;
}
.ldn-section-header h2 strong { color: #a5c615; }
.ldn-section-header p {
  font-size: 15px;
  color: #666;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BUTTONS ───────────────────────────────── */
.ldn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(165,198,21,0.35);
}
.ldn-btn-primary:hover { background: #8aaa0f; transform: translateY(-2px); }

.ldn-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2c3e6b;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid #2c3e6b;
  transition: all 0.2s;
}
.ldn-btn-outline:hover { background: #2c3e6b; color: #fff; }

.ldn-btn-fleet {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #a5c615;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}
.ldn-btn-fleet:hover { background: #8aaa0f; }
.ldn-fleet-card--featured .ldn-btn-fleet { background: var(--color-primary); }
.ldn-fleet-card--featured .ldn-btn-fleet:hover { background: #8aaa0f; }

/* ── ABOUT SECTION ─────────────────────────── */
.ldn-about {
  background: #fff;
  padding: 72px 0 10px;
  margin-bottom: -70px;
}
.ldn-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ldn-about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ldn-about-text h2 strong { color: #2c3e6b; }
.ldn-about-text p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.ldn-about-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.ldn-about-img img { width: 100%; height: auto; object-fit: cover; display: block; }
.mbbus-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ldn-why-box {
  background: #f5f6fa;
  border-radius: 10px;
  padding: 22px 24px;
  border-left: 4px solid var(--color-primary);
}
.ldn-why-box h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.ldn-why-box > p { font-size: 13.5px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.ldn-why-list { display: flex; flex-direction: column; gap: 9px; }
.ldn-why-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
}
.ldn-why-list li i { color: var(--color-primary); font-size: 14px; flex-shrink: 0; }

/* ── SERVICES ──────────────────────────────── */
.ldn-services {
  background: #f0f2f5;
  padding: 72px 0 80px;
}
.ldn-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.ldn-service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.ldn-service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.ldn-service-img { height: 160px; overflow: hidden; }
.ldn-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.ldn-service-card:hover .ldn-service-img img { transform: scale(1.05); }
.ldn-service-body { padding: 14px 16px; flex: 1; }
.ldn-service-body h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
}
.ldn-service-card:hover .ldn-service-body h3 { color: #2c3e6b; }

.ldn-services-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FLEET ─────────────────────────────────── */
.ldn-fleet {
  background: #fff;
  padding: 10px 0 80px;
  margin-top: -10px;
}
.ldn-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.ldn-fleet-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ldn-fleet-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.13); transform: translateY(-3px); }
.ldn-fleet-card--featured { border-color: var(--color-primary); box-shadow: 0 4px 20px rgba(165,198,21,0.18); }
.ldn-fleet-img { height: 200px; overflow: hidden; }
.ldn-fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.ldn-fleet-card:hover .ldn-fleet-img img { transform: scale(1.04); }
.ldn-fleet-body { padding: 20px; }
.ldn-fleet-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.ldn-fleet-body p { font-size: 13.5px; color: #666; margin-bottom: 16px; }
.ldn-fleet-cta { text-align: center; }

/* ── FAQ ───────────────────────────────────── */
.ldn-faq {
  background: #f0f2f5;
  padding: 72px 0 80px;
}
.ldn-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.ldn-faq-item { border-bottom: 1px solid #dde2ec; }
.ldn-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.ldn-faq-q span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}
.ldn-faq-q i { color: var(--color-primary); font-size: 12px; flex-shrink: 0; transition: transform 0.22s; }
.ldn-faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.ldn-faq-q[aria-expanded="true"] span { color: #2c3e6b; }
.ldn-faq-a { display: none; padding-bottom: 18px; }
.ldn-faq-a.open { display: block; }
.ldn-faq-a p { font-size: 14.5px; color: #555; line-height: 1.75; }

/* ── MINIBUS CTA ───────────────────────────── */
.ldn-minibus-cta {
  background: #fff;
  padding: 72px 0 80px;
  border-top: 1px solid #e8eaf0;
}
.ldn-minibus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ldn-minibus-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ldn-minibus-text h2 strong { color: var(--color-primary); }
.ldn-minibus-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 24px;
}
.ldn-minibus-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.ldn-minibus-img img { width: 100%; height: 280px; object-fit: cover; display: block; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 992px) {
  .ldn-about-grid,
  .ldn-minibus-inner { grid-template-columns: 1fr; gap: 40px; }
  .ldn-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ldn-fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ldn-about, .ldn-services, .ldn-fleet, .ldn-faq, .ldn-minibus-cta { padding: 48px 0 56px; }
  .ldn-services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ldn-fleet-grid { grid-template-columns: 1fr; }
  .ldn-service-img { height: 130px; }
  .ldn-minibus-img img { height: 220px; }
  .ldn-services-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .ldn-services-grid { grid-template-columns: 1fr; }
}