/* ============================================================
   PCTransfer – Main Stylesheet (White + Black/Red Theme)
   ============================================================ */

:root {
  --gold:        #cc0000;
  --gold-dark:   #990000;
  --gold-light:  #ff4444;
  --gold-bg:     #fff5f5;

  /* Light theme */
  --bg:          #ffffff;
  --bg-alt:      #f5f5f5;
  --bg-card:     #ffffff;
  --bg-input:    #f9f9f9;

  --text:        #1a1a1a;
  --text-muted:  #555555;
  --text-light:  #999999;

  --border:      #e0e0e0;
  --border-light:#eeeeee;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.07);
  --shadow:      0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.13);

  --radius:      8px;
  --radius-lg:   14px;

  /* Navbar height */
  --nav-h:       68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; }

/* ---- Utilities ---- */
.text-gold  { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-alt     { background: var(--bg-alt) !important; }
.section-py { padding: 80px 0; }

/* Section tones */
.section-features {
  background: #f9f9f9;
  border-top: 3px solid #e0e0e0;
  border-bottom: 3px solid #e0e0e0;
}
.section-fleet {
  background: #ffffff;
}
.section-reviews {
  background: var(--gold-bg);
  border-top: 3px solid rgba(204,0,0,.12);
  border-bottom: 3px solid rgba(204,0,0,.12);
}
.container  { max-width: 1260px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1rem;
}
.divider-gold {
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ---- Buttons ---- */
.btn-gold {
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(204,0,0,.25);
}
.btn-gold:hover {
  background: #990000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,.35);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ---- Navbar ---- */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
}
.navbar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-logo {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.navbar-logo span { color: var(--gold); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.navbar-links a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.navbar-links a:hover { color: var(--gold); }
.navbar-links .btn-gold { padding: 10px 22px; font-size: .88rem; color: #fff; }
.navbar-links .btn-gold:hover { color: #fff; }

.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
  transition: all .2s;
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-bg);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all .3s;
}

/* ---- Hero ---- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.6) 100%),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 0 60px;
}
.hero-content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 24px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  margin-top: 18px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
  color: #fff;
}
.hero h1 span { color: #ff6666; }
.hero-sub {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  font-weight: 600;
}

/* ---- Booking Widget ---- */
.booking-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 920px;
  box-shadow: var(--shadow-lg);
}
.booking-widget-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-widget-title svg { color: var(--gold); }

/* Trip tabs */
.trip-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.trip-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s;
}
.trip-tab.active {
  background: var(--gold);
  color: #fff;
}
.trip-tab:hover:not(.active) {
  background: rgba(204,0,0,.08);
  color: var(--gold-dark);
}

/* Forms */
.form-row { display: grid; gap: 14px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-control {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 13px;
  color: var(--text);
  font-size: .92rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
  background: #fff;
}
.form-control::placeholder { color: var(--text-light); }
.form-control option { background: #fff; color: var(--text); }

/* Location input */
.location-input-wrap { position: relative; }
.location-input-wrap .icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
.location-input-wrap .form-control { padding-left: 34px; }

/* ---- Map ---- */
#route-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--border);
}
.route-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 11px 14px;
  background: var(--gold-bg);
  border: 1px solid rgba(204,0,0,.3);
  border-radius: var(--radius);
  margin-top: 10px;
}
.route-info .info-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.route-info .info-badge small {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .82rem;
}

/* ---- Vehicle Cards ---- */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 22px;
}
.vehicle-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.vehicle-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(204,0,0,.18);
  transform: translateY(-3px);
}
.vehicle-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(204,0,0,.15), 0 8px 28px rgba(204,0,0,.2);
}

.vehicle-img {
  height: 190px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-img .placeholder-icon {
  font-size: 4rem;
  opacity: .25;
}

/* Gallery thumbnails */
.vehicle-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--bg-alt);
  overflow-x: auto;
}
.vehicle-thumb {
  width: 52px;
  height: 38px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  flex-shrink: 0;
}
.vehicle-thumb:hover, .vehicle-thumb.active {
  border-color: var(--gold);
}

.vehicle-body { padding: 18px; }
.vehicle-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.vehicle-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.vehicle-meta span {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.vehicle-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.amenity-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  font-size: .73rem;
  color: var(--text-muted);
  font-weight: 500;
}
.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.vehicle-price .amount {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-dark);
}
.vehicle-price .label {
  font-size: .78rem;
  color: var(--text-light);
}
.vehicle-select-btn { width: 100%; }

/* ---- Add-ons / Extras ---- */
.addon-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s;
}
.addon-card.selected {
  border-color: var(--gold);
  background: var(--gold-bg);
  box-shadow: 0 3px 16px rgba(204,0,0,.15);
}
.addon-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--bg-alt);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid var(--border);
}
.addon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.addon-info { flex: 1; }
.addon-name { font-weight: 700; margin-bottom: 3px; font-size: .92rem; }
.addon-desc { font-size: .8rem; color: var(--text-muted); margin-bottom: 6px; }
.addon-price { font-size: 1.05rem; font-weight: 800; color: var(--gold-dark); }
.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-bg); }
.qty-display { font-weight: 700; min-width: 22px; text-align: center; font-size: .95rem; }

/* ---- Checkout ---- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
}
.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.checkout-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.order-summary-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  box-shadow: var(--shadow);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--border-light);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  border-top: 2px solid var(--border);
  border-bottom: none;
  margin-top: 8px;
  padding-top: 14px;
  font-size: 1.1rem;
  font-weight: 800;
}
.summary-row.total .amount { color: var(--gold-dark); }

/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-option input { display: none; }
.payment-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.payment-option input:checked + label {
  border-color: var(--gold);
  background: var(--gold-bg);
  color: var(--gold-dark);
}
.payment-option label:hover { border-color: var(--gold-light); }

#paypal-button-container {
  margin-top: 14px;
  min-height: 48px;
}

/* ---- Confirmation ---- */
.confirm-container {
  max-width: 620px;
  margin: 72px auto;
  text-align: center;
  padding: 0 24px;
}
.confirm-icon { font-size: 4.5rem; margin-bottom: 20px; }
.confirm-ref-box {
  background: var(--gold-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
  display: inline-block;
  margin: 20px auto;
}
.confirm-ref-box small { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: 4px; }
.confirm-ref-box strong { font-size: 1.8rem; font-weight: 900; color: var(--gold-dark); letter-spacing: 3px; }

/* ---- Order Lookup ---- */
.lookup-container { max-width: 740px; margin: 60px auto; padding: 0 24px; }
.lookup-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.booking-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow);
}
.booking-detail-header {
  background: linear-gradient(135deg, var(--bg-alt), #fff0f0);
  padding: 22px;
  border-bottom: 1px solid var(--border);
}
.booking-detail-body { padding: 22px; }
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); font-size: .85rem; }
.detail-value { font-weight: 700; text-align: right; font-size: .9rem; }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px,1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: .95rem; margin-bottom: 10px; }
.review-text {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author { font-weight: 700; font-size: .88rem; color: var(--text); }
.review-platform { font-size: .76rem; color: var(--text-light); }

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  gap: 28px;
  justify-content: center;
}
.feature-item { text-align: center; padding: 28px 16px; }
.feature-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 2px solid rgba(204,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.feature-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.feature-text { color: var(--text-muted); font-size: .85rem; line-height: 1.6; }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, #f5f5f5, #fff0f0);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px 40px;
  text-align: center;
}
.page-header h1 { font-size: 2rem; font-weight: 900; margin-bottom: 6px; color: var(--text); }
.page-header p { color: var(--text-muted); font-size: .95rem; }

/* ---- Booking Steps ---- */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  color: var(--text-light);
  font-size: .85rem;
  font-weight: 600;
  position: relative;
}
.step::after {
  content: '→';
  margin-left: 20px;
  color: var(--border);
}
.step:last-child::after { display: none; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  background: #fff;
}
.step.active { color: var(--text); }
.step.active .step-num { border-color: var(--gold); background: var(--gold); color: #fff; font-weight: 800; }
.step.done { color: var(--gold-dark); }
.step.done .step-num { border-color: var(--gold); color: var(--gold-dark); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s;
}
.whatsapp-float:hover {
  background: #1ebe5c;
  transform: scale(1.04);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 20px; height: 20px; }

/* ---- Alerts ---- */
.alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: .88rem;
  border: 1px solid transparent;
}
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert-danger  { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.alert-info    { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

/* ---- Footer ---- */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 56px 24px 28px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand-name { font-size: 1.45rem; font-weight: 900; margin-bottom: 10px; color: #fff; }
.footer-brand-name span { color: var(--gold); }
.footer-brand-desc { color: #888; font-size: .85rem; line-height: 1.7; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #777; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 22px;
  color: #666;
  font-size: .8rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .navbar-toggle { display: block; }
  .form-row.cols-2, .form-row.cols-3, .form-row.cols-4 { grid-template-columns: 1fr; }
  .booking-steps { display: none; }
  .hero h1 { font-size: 1.9rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .whatsapp-float .label { display: none; }
  .whatsapp-float { padding: 13px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .section-py { padding: 52px 0; }
  .booking-widget { padding: 18px; }
  .section-title { font-size: 1.6rem; }
}
