/* ── SERVICE BLOCKS ── */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; min-height: 500px; }
.svc-block.reverse { direction: rtl; }
.svc-block.reverse > * { direction: ltr; }
.svc-block-img { height: 500px; overflow: hidden; position: relative; background: var(--ink); }
.svc-block-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.svc-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.svc-block:hover .svc-block-img img { transform: scale(1.04); }
.svc-block-content { padding: 72px 64px; background: var(--white); }
.svc-block.alt .svc-block-content { background: var(--bg); }
.svc-block-tag { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--yellow); font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.svc-block-tag::before { content: ''; width: 24px; height: 2px; background: var(--yellow); display: block; }
.svc-block-content h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 16px; letter-spacing: -.4px; }
.svc-block-content p { font-size: 14px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 28px; }
.svc-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.svc-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--ink-mid); }
.svc-features li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%230F1923' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ── INTERCITY SECTION ── */
.intercity { background: var(--ink); padding: 80px 40px; }
.intercity-inner { max-width: 1100px; margin: 0 auto; }
.intercity h2 { font-size: clamp(28px,4vw,44px); font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -.4px; }
.intercity > .intercity-inner > p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 48px; max-width: 520px; }
.routes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.route-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px; cursor: pointer; transition: background .2s, border-color .2s; display: block; }
.route-card:hover { background: rgba(242,190,0,.12); border-color: rgba(242,190,0,.4); }
.route-cities { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.route-dist { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.route-price { font-size: 22px; font-weight: 700; color: var(--yellow); margin-bottom: 4px; }
.route-price-lbl { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 1px; text-transform: uppercase; }
.route-arrow { float: right; color: rgba(255,255,255,.4); font-size: 18px; margin-top: -30px; transition: color .2s; }
.route-card:hover .route-arrow { color: var(--yellow); }

/* ── WHY SECTION ── */
.why { background: var(--bg); padding: 80px 40px; }
.why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.why-head { grid-column: 1 / -1; }
.why-head h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.why-head p { font-size: 14px; color: var(--slate); max-width: 480px; }
.why-card { background: #fff; border-radius: 16px; padding: 28px; }
.why-icon { width: 48px; height: 48px; background: var(--ink); color: var(--yellow); border: 1px solid rgba(242,190,0,.34); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(15,25,35,.14), inset 0 1px 0 rgba(255,255,255,.08); }
.why-icon svg { width: 22px; height: 22px; stroke-width: 1.65; }
.why-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--slate); line-height: 1.75; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--yellow); padding: 64px 40px; text-align: center; }
.cta-banner h2 { font-size: clamp(26px,4vw,44px); font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: rgba(15,25,35,.65); margin-bottom: 32px; }
.cta-banner a { display: inline-block; background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 15px 36px; border-radius: 100px; transition: background .2s; }
.cta-banner a:hover { background: var(--ink-mid); }

@media (max-width: 900px) {
  .svc-block, .svc-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .svc-block-img { height: 280px; }
  .svc-block-content { padding: 40px 24px; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .why { padding: 52px 20px; }
  .why-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .intercity { padding: 52px 20px; }
  .cta-banner { padding: 48px 20px; }
}
@media (max-width: 600px) {
  .routes-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .svc-block-content h2 { font-size: 22px; }
  .why-card { padding: 22px; }
  .why-icon { width: 44px; height: 44px; }
  .why-icon svg { width: 20px; height: 20px; }
  .cta-banner h2 { font-size: 22px; }
}
@media (max-width: 420px) {
  .svc-block-img { height: 220px; }
  .svc-block-content { padding: 28px 16px; }
  .routes-grid { gap: 10px; }
  .route-card { padding: 18px; }
  .why { padding: 40px 16px; }
  .intercity { padding: 40px 16px; }
  .cta-banner { padding: 36px 16px; }
}
