/* =====================================================
   Drop Taxi Express — design system (plain CSS)
===================================================== */

:root {

  --teal: #E76F51;
  --teal-dark: #D45A3F;
  --teal-deep: #B94A32;

  --green: #2A9D8F;
  --wa: #2A9D8F;
  --amber: #2A9D8F;

  --ink: #292522;
  --body: #5F5954;
  --muted: #827A73;

  --line: #E9DED4;
  --soft: #FFF9F3;
  --white: #FFFFFF;



  

  --radius: 14px;

  --shadow-sm:
    0 2px 8px rgba(15, 23, 42, 0.06);

  --shadow:
    0 10px 30px rgba(15, 23, 42, 0.10);

  --shadow-lg:
    0 24px 60px rgba(15, 23, 42, 0.18);

  --font:
    "Poppins",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}


/* =====================================================
   RESET
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;

  font-family: var(--font);

  color: var(--body);

  background: var(--white);

  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section--soft {
  background: var(--soft);
}


/* =====================================================
   EYEBROW
===================================================== */

.eyebrow {
  display: inline-block;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: var(--teal);

  background: rgba(13, 148, 136, 0.10);

  padding: 6px 14px;

  border-radius: 999px;
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 14px 0 10px;
}

.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  border: 0;

  cursor: pointer;

  font-family: var(--font);

  font-size: 15px;

  font-weight: 600;

  padding: 13px 26px;

  border-radius: 999px;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--call {
  background: var(--teal);
  color: #fff;
}

.btn--wa {
  background: var(--wa);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline {
  background: #fff;

  color: var(--teal-dark);

  border: 1.5px solid var(--teal);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 17px 30px;

  font-size: 16px;

  letter-spacing: 0.04em;

  border-radius: 12px;
}


/* =====================================================
   HEADER
===================================================== */

.header {
  position: sticky;

  top: 0;

  z-index: 60;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;

  padding: 12px 0;
}

.logo {
  display: flex;

  align-items: center;

  gap: 10px;
}

.site-logo { flex: 0 0 auto; }
.site-logo img { width: 174px; height: 50px; object-fit: contain; }
.site-logo--footer { display: inline-flex; padding: 7px 10px; border-radius: 8px; background: var(--white); }
.site-logo--footer img { width: 180px; height: 52px; }

@media (max-width: 640px) {
  .site-logo img { width: 138px; height: 42px; }
  .site-logo--footer img { width: 165px; height: 48px; }
}

.logo__mark {
  width: 44px;
  height: 44px;

  border-radius: 10px;

  background: #111827;

  color: var(--amber);

  display: grid;

  place-items: center;

  font-weight: 800;

  font-size: 20px;
}

.logo__text {
  font-weight: 800;

  color: var(--ink);

  font-size: 19px;

  line-height: 1;
}

.logo__text span {
  color: var(--amber);
}

.logo__tag {
  display: block;

  font-size: 9px;

  letter-spacing: 0.22em;

  color: var(--muted);

  font-weight: 600;

  margin-top: 3px;
}

.nav {
  display: flex;

  align-items: center;

  gap: 22px;
}

.nav a {
  font-size: 15px;

  font-weight: 600;

  color: var(--ink);

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 6px 0;

  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.is-active {
  color: var(--teal-dark);

  border-bottom-color: var(--teal);
}

.header__cta {
  display: flex;

  align-items: center;

  gap: 10px;
}

.nav-toggle {
  display: none;

  background: none;

  border: 1px solid var(--line);

  border-radius: 10px;

  padding: 8px 11px;

  font-size: 18px;

  cursor: pointer;

  color: var(--ink);
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  color: #fff;

  background:
    linear-gradient(
      100deg,
      rgba(6, 46, 43, 0.92) 0%,
      rgba(6, 46, 43, 0.72) 45%,
      rgba(6, 46, 43, 0.55) 100%
    ),
    url("assets/hero-taxi.jpg")
    center/cover no-repeat;

  padding: 70px 0 64px;
}

.hero__grid {
  display: grid;

  grid-template-columns: 1fr 520px;

  gap: 46px;

  align-items: center;
}

.hero__badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.28);

  padding: 8px 16px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: 600;
}

.hero h1 {
  color: #fff;

  font-size:30px;

  margin: 20px 0 16px;

  letter-spacing: -0.5px;
}

.hero h1 .hl {
  color: var(--amber);
}

.hero__sub {
  color: rgba(255, 255, 255, 0.86);

  font-size: 17px;

  max-width: 520px;

  line-height: 1.7;
}

.hero__sub strong {
  color: #fff;
}

.chips {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin: 24px 0;
}

.chip {
  background: rgba(255, 255, 255, 0.10);

  border: 1px solid rgba(255, 255, 255, 0.26);

  padding: 9px 16px;

  border-radius: 999px;

  font-size: 13.5px;

  font-weight: 500;

  color: #fff;

  transition: background 0.18s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero__actions {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}

.hero__trust {
  display: flex;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 26px;

  font-size: 14px;

  color: rgba(255, 255, 255, 0.82);
}

.hero__trust span {
  display: inline-flex;

  align-items: center;

  gap: 7px;
}


/* =====================================================
   BOOKING CARD
===================================================== */

.booking {
  background: #fff;

  border-radius: 22px;

  padding: 26px;

  box-shadow: var(--shadow-lg);

  color: var(--body);
}

.booking__title {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  font-size: 21px;

  font-weight: 700;

  color: var(--ink);
}

.booking__note {
  text-align: center;

  color: var(--muted);

  font-size: 13.5px;

  margin-top: 6px;
}

.switch {
  display: grid;

  grid-template-columns: 1fr 1fr;

  background: var(--soft);

  border: 1px solid var(--line);

  border-radius: 999px;

  padding: 5px;

  margin: 18px 0;
}

.switch button {
  border: 0;

  background: transparent;

  padding: 11px;

  border-radius: 999px;

  font-family: var(--font);

  font-size: 15px;

  font-weight: 600;

  color: var(--muted);

  cursor: pointer;
}

.switch button.is-active {
  background: var(--teal);

  color: #fff;

  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--ink);

  margin-bottom: 7px;
}

.field input,
.field select {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--line);

  border-radius: 10px;

  background: var(--soft);

  font-family: var(--font);

  font-size: 15px;

  color: var(--ink);

  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--teal);

  background: #fff;

  box-shadow:
    0 0 0 3px rgba(13, 148, 136, 0.14);
}

.grid-2 {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}


/* =====================================================
   NEW LOCATION AUTOCOMPLETE
===================================================== */

.location-field {
  position: relative;
}


/* Input wrapper */

.location-input-wrap {
  position: relative;

  width: 100%;

  display: flex;

  align-items: center;
}


/*
   We use the existing .field input styles.
   These only make room for our icons.
*/

.location-input-wrap input {
  padding-left: 43px;

  padding-right: 42px;
}


/* Location icon */

.location-icon {
  position: absolute;

  left: 14px;

  top: 50%;

  transform: translateY(-50%);

  z-index: 3;

  width: 20px;

  text-align: center;

  pointer-events: none;

  font-size: 16px;
}

.location-icon--pickup {
  color: var(--teal);
}

.location-icon--drop {
  color: #ef4444;
}


/* Clear button */

.location-clear {
  position: absolute;

  right: 9px;

  top: 50%;

  transform: translateY(-50%);

  width: 30px;

  height: 30px;

  display: none;

  align-items: center;

  justify-content: center;

  border: 0;

  background: transparent;

  color: var(--muted);

  font-size: 22px;

  line-height: 1;

  padding: 0;

  cursor: pointer;

  z-index: 5;
}

.location-clear:hover {
  color: var(--ink);
}


/* Suggestions dropdown */

.location-suggestions {
  position: absolute;

  left: 0;

  right: 0;

  top: calc(100% - 9px);

  z-index: 9999;

  display: none;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 10px;

  box-shadow: var(--shadow);

  overflow: hidden;

  max-height: 285px;

  overflow-y: auto;
}


/* Individual result */

.location-suggestion {
  display: flex;

  align-items: flex-start;

  gap: 11px;

  padding: 12px 14px;

  cursor: pointer;

  border-bottom: 1px solid #f1f5f9;

  background: #fff;

  transition:
    background 0.15s ease;
}

.location-suggestion:last-child {
  border-bottom: 0;
}

.location-suggestion:hover {
  background: #f8fafc;
}


/* Suggestion icon */

.location-suggestion-icon {
  flex: 0 0 30px;

  width: 30px;

  height: 30px;

  margin-top: 1px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(13, 148, 136, 0.09);

  color: var(--teal);

  font-size: 13px;
}


/* Suggestion text */

.location-suggestion-content {
  min-width: 0;

  flex: 1;
}

.location-suggestion-name {
  font-size: 14px;

  font-weight: 700;

  color: var(--ink);

  line-height: 1.35;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.location-suggestion-address {
  margin-top: 2px;

  font-size: 12px;

  color: var(--muted);

  line-height: 1.45;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}


/* Searching / error */

.location-message {
  padding: 14px;

  text-align: center;

  font-size: 13px;

  color: var(--muted);

  background: #fff;
}


/* Scrollbar */

.location-suggestions::-webkit-scrollbar {
  width: 6px;
}

.location-suggestions::-webkit-scrollbar-track {
  background: #f8fafc;
}

.location-suggestions::-webkit-scrollbar-thumb {
  background: #cbd5e1;

  border-radius: 10px;
}


/* =====================================================
   CABS
===================================================== */

.cabs {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 10px;

  margin: 6px 0 18px;
}

.cab {
  border: 1.5px solid var(--line);

  border-radius: 12px;

  padding: 10px 6px;

  text-align: center;

  cursor: pointer;

  background: #fff;

  transition: all 0.18s ease;
}

.cab:hover {
  border-color: var(--teal);
}

.cab.is-active {
  border-color: var(--teal);

  background: rgba(13, 148, 136, 0.07);

  box-shadow:
    0 0 0 3px rgba(13, 148, 136, 0.12);
}

.cab__rate {
  font-size: 11px;

  font-weight: 700;

  color: var(--amber);
}

.cab img {
  height: 42px;

  margin: 6px auto;

  object-fit: contain;
}

.cab__name {
  font-size: 11px;

  font-weight: 700;

  color: var(--ink);

  letter-spacing: 0.04em;
}


/* =====================================================
   ESTIMATE
===================================================== */

.estimate {
  margin-top: 16px;

  border: 1px dashed var(--teal);

  background: rgba(13, 148, 136, 0.06);

  border-radius: 12px;

  padding: 16px;
}

.estimate h4 {
  font-size: 15px;

  margin-bottom: 10px;
}

.estimate__row {
  display: flex;

  justify-content: space-between;

  font-size: 14px;

  padding: 4px 0;
}

.estimate__row--total {
  border-top: 1px solid var(--line);

  margin-top: 8px;

  padding-top: 10px;

  font-weight: 700;

  color: var(--ink);

  font-size: 17px;
}

.estimate__actions {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-top: 14px;
}

.form-error {
  color: #dc2626;

  font-size: 13.5px;

  margin-bottom: 10px;
}


/* =====================================================
   STATS
===================================================== */

.statsbar {
  background: var(--teal-dark);

  color: #fff;

  padding: 26px 0;
}

.statsbar__grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  text-align: center;

  gap: 18px;
}

.statsbar strong {
  display: block;

  font-size: 27px;

  font-weight: 800;
}

.statsbar span {
  font-size: 13.5px;

  color: rgba(255, 255, 255, 0.82);
}


/* =====================================================
   FEATURES
===================================================== */

.features {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.feature {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  padding: 28px 22px;

  text-align: center;

  transition: all 0.2s ease;
}

.feature:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);

  border-color:
    rgba(13, 148, 136, 0.4);
}

.feature__icon {
  width: 56px;

  height: 56px;

  margin: 0 auto 16px;

  border-radius: 16px;

  display: grid;

  place-items: center;

  background: rgba(13, 148, 136, 0.10);

  color: var(--teal-dark);

  font-size: 22px;
}

.feature h3 {
  font-size: 17px;

  margin-bottom: 8px;
}

.feature p {
  font-size: 14.5px;

  line-height: 1.65;

  color: var(--muted);
}


/* =====================================================
   ROUTES
===================================================== */

.tabs {
  display: flex;

  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;

  margin-bottom: 30px;
}

.tabs button {
  border: 1px solid var(--line);

  background: #fff;

  color: var(--ink);

  padding: 10px 22px;

  border-radius: 999px;

  font-family: var(--font);

  font-weight: 600;

  font-size: 14.5px;

  cursor: pointer;
}

.tabs button.is-active {
  background: var(--teal);

  border-color: var(--teal);

  color: #fff;
}

.routes {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.route {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  overflow: hidden;

  transition: all 0.2s ease;
}

.route:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.route__img {
  position: relative;

  height: 190px;

  overflow: hidden;
}

.route__img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.route:hover .route__img img {
  transform: scale(1.07);
}

.route__tag {
  position: absolute;

  top: 12px;

  left: 12px;

  background: var(--amber);

  color: var(--soft);

  font-size: 11px;

  font-weight: 700;

  padding: 5px 12px;

  border-radius: 999px;
}

.route__body {
  padding: 18px 20px 20px;
}

.route__body h3 {
  font-size: 17px;

  line-height: 1.4;
}

.route__meta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 12px;
}

.route__meta small {
  color: var(--muted);

  font-size: 13px;
}

.route__link {
  color: var(--teal-dark);

  font-weight: 700;

  font-size: 14px;
}


/* =====================================================
   TARIFF
===================================================== */

.table-wrap {
  overflow-x: auto;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  background: #fff;

  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;

  border-collapse: collapse;

  min-width: 720px;
}

thead {
  background: var(--teal-dark);

  color: #fff;
}

th {
  text-align: left;

  padding: 15px 18px;

  font-size: 13px;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}

td {
  padding: 16px 18px;

  border-top: 1px solid var(--line);

  font-size: 15px;
}

td strong {
  display: block;

  color: var(--ink);
}

td small {
  color: var(--muted);

  font-size: 12px;
}

.tariff-note {
  text-align: center;

  color: var(--muted);

  font-size: 14px;

  margin-top: 18px;
}

.tariff-cta {
  text-align: center;

  margin-top: 18px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 50px;

  align-items: center;
}

.about p {
  margin-bottom: 16px;

  line-height: 1.8;

  font-size: 15.5px;
}

.about-points {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin: 22px 0;
}

.about-points li {
  display: flex;

  align-items: center;

  gap: 9px;

  font-size: 14.5px;

  font-weight: 600;

  color: var(--ink);
}

.about-points i {
  color: var(--green);
}

.about__actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.about-stats {
  display: grid;

  grid-template-columns: 1fr;

  gap: 16px;
  margin-bottom: 20px;
}

.about-stat {
  background: var(--teal-dark);

  color: #fff;

  border-radius: var(--radius);

  padding: 26px 20px;

  text-align: center;
}

.about-stat:nth-child(even) {
  background: var(--ink);
}

.about-stat strong {
  display: block;

  font-size: 30px;

  font-weight: 800;
}

.about-stat span {
  font-size: 13.5px;

  color: rgba(255, 255, 255, 0.8);
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.reviews {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.review {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  padding: 26px;
}

.review:hover {
  box-shadow: var(--shadow);
}

.review__stars {
  color: var(--amber);

  margin-bottom: 12px;

  letter-spacing: 2px;
}

.review p {
  font-size: 15px;

  line-height: 1.7;

  font-style: italic;
}

.review__route {
  display: inline-block;

  margin-top: 14px;

  font-size: 12px;

  font-weight: 700;

  color: var(--teal-dark);

  background: rgba(13, 148, 136, 0.1);

  padding: 4px 12px;

  border-radius: 999px;
}

.review__who {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 18px;

  border-top: 1px solid var(--line);

  padding-top: 16px;
}

.avatar {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: var(--teal);

  color: #fff;

  display: grid;

  place-items: center;

  font-weight: 700;
}

.review__who strong {
  display: block;

  color: var(--ink);

  font-size: 15px;
}

.review__who small {
  color: var(--muted);

  font-size: 12.5px;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
  max-width: 860px;

  margin: 0 auto;
}

.faq__item {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 12px;

  margin-bottom: 12px;

  overflow: hidden;
}

.faq__q {
  width: 100%;

  text-align: left;

  background: none;

  border: 0;

  cursor: pointer;

  padding: 18px 20px;

  font-family: var(--font);

  font-size: 15.5px;

  font-weight: 600;

  color: var(--ink);

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 14px;
}

.faq__q i {
  color: var(--teal);

  transition: transform 0.2s ease;
}

.faq__item.is-open .faq__q i {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 20px 18px;

  font-size: 15px;

  line-height: 1.75;

  color: var(--muted);
}

.faq__cta {
  text-align: center;

  margin-top: 26px;

  display: flex;

  gap: 12px;

  justify-content: center;

  flex-wrap: wrap;
}


/* =====================================================
   CTA
===================================================== */

.cta-band {
  background:
    linear-gradient(
      120deg,
      var(--teal-deep),
      var(--teal)
    );

  color: #fff;

  text-align: center;

  padding: 66px 0;
}

.cta-band h2 {
  color: #fff;

  font-size: clamp(26px, 3.4vw, 36px);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);

  margin: 12px 0 26px;
}

.cta-band .hero__actions {
  justify-content: center;
}


/* =====================================================
   CONTACT + FOOTER
===================================================== */

.contact-cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.contact-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  padding: 28px;

  text-align: center;
}

.contact-card i {
  font-size: 22px;

  color: var(--teal);
}

.contact-card h3 {
  font-size: 17px;

  margin: 12px 0 6px;
}

.contact-card a,
.contact-card p {
  color: var(--muted);

  font-size: 15px;
}

.footer {
  background: var(--ink);

  color: rgba(255, 255, 255, 0.72);

  padding: 56px 0 0;
}

.footer__grid {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr 1fr;

  gap: 34px;
}

.footer h4 {
  color: #fff;

  font-size: 16px;

  margin-bottom: 16px;
}

.footer li {
  margin-bottom: 15px;

  font-size: 14.5px;
}
.footer li a i,
.footer li i{
  color: var(--amber);
  margin-right: 5px;
}

/* .footer a:hover {
  color: var(--amber);
} */

.footer__about {
  font-size: 14.5px;

  line-height: 1.75;
}

.footer .logo__text {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  margin-top: 40px;

  padding: 20px 0;

  text-align: center;

  font-size: 13.5px;
}

/* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floaters {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floater {
    position: relative;

    width: 54px;
    height: 54px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff !important;
    font-size: 27px;
    line-height: 1;
    text-decoration: none;

    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

/* WhatsApp */
.floater--wa {
    background-color: #25d366;
}

/* SMS */
.floater--sms {
    background-color: #2563eb;
   
}

/* Call */
.floater--call {
    background-color: #16a34a;
     font-size: 16px !important;
}

.floater:hover {
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.35);
    filter: brightness(1.05);
}

.floater:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 3px;
}

/* Tooltip */
.floater::before {
    content: attr(data-label);
    position: absolute;
    right: 64px;

    padding: 7px 11px;
    border-radius: 6px;

    background-color: #0f172a;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    pointer-events: none;

    transition: 0.25s ease;
}

.floater:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile */
@media (max-width: 767px) {
    .floaters {
        right: 35px;
        bottom: 18px;
        gap: 9px;
    }

    .floater {
        width: 48px;
        height: 48px;
        font-size: 23px;
        border-width: 2px;
    }

    .floater::before {
        display: none;
    }
}


/* =====================================================
   FOOTER — additions for footer.php
===================================================== */

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.footer__social-icon:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.footer__wa-btn {
  margin-top: 10px;
}


/* =====================================================
   SEO LINKS ACCORDION (inside footer)
===================================================== */

.seo-links {
  margin-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-links__item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.seo-links__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background: none;
  border: 0;
  cursor: pointer;

  padding: 15px 20px;

  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;

  transition: background 0.18s ease;
}

.seo-links__q:hover {
  background: rgba(255, 255, 255, 0.1);
}

.seo-links__q i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease;
}

.seo-links__item.is-open .seo-links__q i {
  transform: rotate(180deg);
}

.seo-links__panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;

  padding: 18px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-links__panel li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.18s ease;
}

.seo-links__panel li a:hover {
  color: var(--amber);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {

  .hero__grid {
    grid-template-columns: 1fr;
    
  }
  
 .hero__grid > div{
         order: 2;
 }

  .features,
  .routes,
  .reviews,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-links__panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background: #fff;

    flex-direction: column;

    align-items: flex-start;

    padding: 16px 4%;

    gap: 6px;

    border-bottom: 1px solid var(--line);

    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header__cta .btn span {
    display: none;
  }

}


@media (max-width: 640px) {

  .features,
  .routes,
  .reviews,
  .contact-cards,
  .statsbar__grid,
  .footer__grid,
  .about-points {
    grid-template-columns:  1fr; text-align:center;
  }
  .footer__social{     justify-content: center; } 
  .footer__grid{
      gap:15px;
  }
  .btn{font-size: 18px;}
  .header__cta .btn{ padding:0; }

  .routes,
  .reviews,
  .contact-cards {
    grid-template-columns: 1fr;
  }
 .header__inner .header__cta .fa-solid.fa-phone{
      font-size: 16px !important;
  }

  

  .section {
    padding: 54px 0;
  }

  .estimate__actions {
    grid-template-columns: 1fr;
  }

  .seo-links__panel {
    grid-template-columns: 1fr;
  }

  /*
     Mobile autocomplete should stay
     inside the booking card.
  */

  .location-suggestions {
    max-height: 250px;
  }

  .location-suggestion {
    padding: 11px 12px;
  }

}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page { background: var(--soft); }
.contact-hero { position: relative; overflow: hidden; padding: 42px 0 44px; text-align: center; background: linear-gradient(120deg, var(--teal-deep), var(--ink)); }
.contact-hero::after { content: ""; position: absolute; inset: 0; opacity: .12; background: radial-gradient(circle at 25% 30%, var(--white) 0 1px, transparent 2px) 0 0 / 22px 22px; }
.contact-hero__inner { position: relative; z-index: 1; }
.contact-hero__eyebrow { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border: 1px solid var(--amber); border-radius: 999px; color: var(--amber); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-hero h1 { margin-top: 12px; color: var(--white); font-size: clamp(27px, 3vw, 38px); }
.contact-hero p { margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.contact-main { padding-top: 48px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(340px, .96fr); align-items: start; gap: 26px; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-card, .quick-enquiry, .business-hours { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-info-card { padding: 24px; min-height: 170px; }
.contact-info-card__icon { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; border-radius: 13px; background: var(--soft); color: var(--teal); font-size: 23px; }
.contact-info-card__icon--wa { color: var(--wa); }
.contact-info-card h2 { margin-top: 17px; font-size: 17px; }
.contact-info-card p { margin: 6px 0 10px; font-size: 13px; color: var(--muted); }
.contact-info-card a { color: var(--teal); font-size: 14px; font-weight: 700; }
.contact-info-card strong { color: var(--ink); font-size: 13px; }
.quick-enquiry { margin-top: 20px; padding: 27px; }
.quick-enquiry > h2 { font-size: 20px; }
.quick-enquiry > p { margin: 5px 0 22px; font-size: 13px; color: var(--muted); }
.quick-enquiry__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.contact-input { position: relative; }
.contact-input i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 13px; }
.contact-input input { padding-left: 39px; }
.quick-enquiry textarea { width: 100%; min-height: 128px; resize: vertical; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); color: var(--ink); font: 15px var(--font); outline: none; }
.quick-enquiry textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 14%, transparent); }
.quick-enquiry__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.quick-enquiry__actions .btn { justify-content: center; }
.business-hours { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; padding: 17px 5px; border-left: 4px solid var(--teal); }
.business-hours i { color: var(--teal); margin-top: 3px; }
.business-hours p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.business-hours strong { color: var(--ink); }
.contact-booking { position: sticky; top: 98px; }
.contact-booking .booking { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.contact-booking .booking__title { font-size: 19px; }
.contact-booking .field input, .contact-booking .field select { font-size: 13px; padding-top: 11px; padding-bottom: 11px; }
.contact-booking .location-input-wrap input { padding-left: 40px; padding-right: 38px; }
.contact-booking .switch { margin: 14px 0; }
.contact-booking .switch button { padding: 9px; font-size: 13px; }
.contact-booking .cab { padding: 8px 4px; }
.contact-booking .cab__rate, .contact-booking .cab__name { font-size: 10px; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-booking { position: static; max-width: 620px; width: 100%; margin: 0 auto; }
}

@media (max-width: 640px) {
  .contact-hero { padding: 34px 0 36px; }
  .contact-info-grid, .quick-enquiry__grid, .quick-enquiry__actions { grid-template-columns: 1fr; }
  .contact-info-card { min-height: auto; }
  .quick-enquiry { padding: 20px; }
}

/* =====================================================
   FAQ PAGE
===================================================== */

.faq-page { background: var(--soft); }
.faq-page__main { padding-top: 48px; }
.faq-page__layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(340px, .96fr); align-items: start; gap: 26px; }
.faq-page__card { padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.faq-page__card > h2 { margin-bottom: 20px; font-size: 20px; }
.faq-page__list { max-width: none; }
.faq-page__list .faq__item { border-left: 4px solid var(--teal); box-shadow: 0 2px 8px rgba(15, 23, 42, .04); }
.faq-page__list .faq__q { padding: 19px 20px; font-size: 14px; }
.faq-page__list .faq__a { margin: 0; padding: 0 20px 19px; font-size: 14px; }
.faq-page__booking .booking { box-shadow: var(--shadow); }

@media (max-width: 1024px) {
  .faq-page__layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .faq-page__card { padding: 19px; }
  .faq-page__card > h2 { font-size: 18px; }
  .faq-page__list .faq__q { padding: 16px 14px; font-size: 13px; }
  .faq-page__list .faq__a { padding: 0 14px 16px; font-size: 13px; }
}

/* =====================================================
   ABOUT + TARIFF INNER PAGES / MOTION
===================================================== */

.inner-page { background: var(--soft); }
.inner-page__main { padding-top: 48px; }
.inner-page__layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(340px, .96fr); align-items: start; gap: 26px; }
.inner-page__content { min-width: 0; }
.inner-booking { align-self: start; }
.content-card, .good-to-know { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.content-card + .content-card, .good-to-know { margin-top: 22px; }
.content-card h2, .good-to-know h2 { margin-bottom: 16px; font-size: 22px; }
.content-card > p { margin: 0 0 14px; color: var(--muted); line-height: 1.8; }
.content-card > p:last-child { margin-bottom: 0; }
.about-values { grid-template-columns: 1fr 1fr; margin-top: 22px; }
.about-stats { margin-top: 22px; border-radius: var(--radius); overflow: hidden; }
.about-stats .statsbar__grid { padding-left: 18px; padding-right: 18px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px; }
.why-item { display: flex; align-items: flex-start; gap: 11px; }
.why-item > i { margin-top: 4px; color: var(--green); }
.why-item strong, .why-item span { display: block; }
.why-item span { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.fleet-grid { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.inner-section-title { margin: 36px 0 18px; font-size: 23px; }
.good-to-know .about-points { margin: 0; }
.tariff-page .features { grid-template-columns: repeat(2, 1fr); }
.split-word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; }
.split-word > span { display: inline-block; will-change: transform, opacity; }

@media (max-width: 1024px) {
  .inner-page__layout { grid-template-columns: 1fr; }
  .inner-booking { max-width: 620px; width: 100%; margin: 0 auto; }
}

@media (max-width: 640px) {
  .content-card, .good-to-know { padding: 20px; }
  .about-values, .why-grid, .fleet-grid, .tariff-page .features { grid-template-columns: 1fr; }
  .about-stats .statsbar__grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .split-word > span, .js-reveal, .js-reveal-up, .js-reveal-right, .js-stagger-item { opacity: 1 !important; transform: none !important; }
}

/* =====================================================
   ROUTE BOOKING DETAIL PAGE
===================================================== */

.route-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 26px; }
.route-fact { padding: 18px 12px; text-align: center; background: var(--soft); border: 1px solid var(--line); border-radius: 12px; }
.route-fact i { display: block; margin-bottom: 8px; color: var(--teal); font-size: 22px; }
.route-fact strong, .route-fact span { display: block; }
.route-fact strong { color: var(--ink); font-size: 13px; }
.route-fact span { margin-top: 3px; color: var(--teal-dark); font-size: 13px; }
.route-copy p { color: var(--muted); font-size: 14px; line-height: 1.85; }
.city-note { display: flex; gap: 14px; margin-top: 16px; padding: 19px; background: var(--soft); border-left: 4px solid var(--teal); border-radius: 10px; }
.city-note > i { margin-top: 3px; color: var(--amber); }
.city-note h3 { margin-bottom: 5px; font-size: 15px; }
.city-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.route-fares .table-wrap { box-shadow: none; }
.route-price { color: var(--teal); }
.route-sidebar .contact-booking { position: static; }
.route-sidebar { position: sticky; top: 98px; }
.route-help { margin-top: 20px; padding: 25px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.route-help > span { display: inline-grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--soft); color: var(--teal); font-size: 20px; }
.route-help h3 { margin-top: 13px; font-size: 17px; }
.route-help p { color: var(--muted); font-size: 12px; line-height: 1.6; }

@media (max-width: 1024px) {
  .route-sidebar { position: static; max-width: 620px; width: 100%; margin: 0 auto; }
}

@media (max-width: 640px) {
  .route-facts { grid-template-columns: 1fr; }
  .route-fares { overflow-x: auto; }
  .route-fares table { min-width: 650px; }
}

@media (max-width: 640px) {
    .grid-2{
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

.header__cta .fa-brands.fa-whatsapp
{ background-color: #25d366; padding:5px; border-radius:50%;}
.header__cta .fa-solid.fa-phone{ background-color: #16a34a;
    font-size: 14px !important; padding:5px; border-radius:50%;}
