/* TCI Express – Blacklane-inspired Premium Design */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --gray: #2a2a2a;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --gold: #c9a962;
  --gold-hover: #dbb96e;
  --white: #ffffff;
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.25s ease; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.75);
}
.nav a:hover, .nav a.active { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg { padding: 18px 36px; font-size: 0.95rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-black { background: var(--black); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--dark-2);
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); }

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 0.5s ease;
}
.service-card-img.pos-left { background-position: 20% 30%; }
.service-card-img.pos-right { background-position: 70% 25%; }
.service-card-img.pos-center { background-position: center 25%; }
.service-card-img.pos-top { background-position: center 15%; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.1) 100%);
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
}
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ========== FEATURE STRIP ========== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 14px 0 6px;
  color: var(--gold);
}
.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.feature-icon { font-size: 1.8rem; opacity: 0.9; }

/* ========== SPLIT ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-img {
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.split-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.split-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.split-content ul { margin: 20px 0 28px; }
.split-content li {
  padding: 8px 0;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
}
.split-content li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
}

/* ========== BOOKING ========== */
.booking-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--dark-2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.booking-progress {
  display: flex;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.progress-step {
  flex: 1;
  padding: 18px 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.progress-step.active { color: var(--gold); background: rgba(201,169,98,0.08); }
.progress-step.completed { color: rgba(255,255,255,0.7); }
.progress-step span {
  display: block;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 6px;
  line-height: 26px;
  font-size: 0.8rem;
}
.progress-step.active span {
  background: var(--gold);
  color: var(--black);
}

.booking-body { padding: 36px 32px; }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 0.95rem;
  background: var(--black);
  color: var(--white);
  transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.service-type-option {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--black);
}
.service-type-option:hover { border-color: var(--gold); }
.service-type-option.selected {
  border-color: var(--gold);
  background: rgba(201,169,98,0.1);
}
.service-type-option strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.service-type-option small { color: var(--text-muted); font-size: 0.78rem; }

.vehicle-grid { display: grid; gap: 12px; }
.vehicle-option {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--black);
}
.vehicle-option:hover { border-color: var(--gold); }
.vehicle-option.selected {
  border-color: var(--gold);
  background: rgba(201,169,98,0.1);
}
.vehicle-option .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.price-summary {
  background: var(--black);
  border-radius: 8px;
  padding: 18px;
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.price-summary .total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer a:hover { color: var(--gold); }
.footer p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-type-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .feature-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 0 60px; }
  .booking-body { padding: 24px 18px; }
  .section { padding: 64px 0; }
}


.hero-tagline {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 28px;
  max-width: none;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .hero-tagline {
    white-space: normal;
    font-size: 0.95rem;
  }
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}


.services-hero-banner {
  position: relative;
  overflow: hidden;
}
.services-hero-banner .hero-bg {
  background-repeat: no-repeat;
}
.services-hero-banner .hero-content {
  position: relative;
  z-index: 2;
}



.services-full-banner .hero-bg {
  display: none;
}


/* Services banner — NEVER crop */
.services-full-banner {
  position: relative;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  background: #0a0a0a;
  display: block;
}
.services-banner-img {
  width: 100%;
  line-height: 0;
  overflow: visible !important;
}
.services-banner-img img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: unset !important;
  object-position: center top !important;
  display: block !important;
}
.services-full-banner .hero-content {
  position: relative;
  z-index: 2;
  background: #0a0a0a;
  padding: 36px 0 48px !important;
}
.services-full-banner .hero-bg { display: none !important; }


.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-legal a {
  color: inherit;
  opacity: 0.85;
  text-decoration: none;
}
.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}


.logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
}
.logo-img img {
  height: 52px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
@media (max-width: 600px) {
  .logo-img img {
    height: 40px;
    max-width: 210px;
    padding: 0;
  }
}
