* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #ffc107;
  --yellow-dark: #e6a900;
  --black: #101418;
  --dark: #171b21;
  --dark2: #222831;
  --text: #4b5563;
  --light: #f7f8fa;
  --white: #ffffff;
  --green: #25d366;
  --border: #e5e7eb;
  --shadow: 0 15px 45px rgba(0,0,0,.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}


/* TOP BAR */

.topbar {
  background: var(--black);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a:hover {
  color: var(--yellow);
}


/* HEADER */

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.yellow {
  color: var(--yellow-dark);
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  color: #252a30;
  font-weight: 600;
  font-size: 14px;
}

.nav-menu a:hover {
  color: var(--yellow-dark);
}

.header-call {
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 7px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}


/* HERO */

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.88),
      rgba(0,0,0,.60),
      rgba(0,0,0,.25)
    ),
    url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1800&q=85")
    center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
  color: white;
}

.hero-badge {
  display: inline-block;
  color: var(--yellow);
  border: 1px solid rgba(255,193,7,.7);
  background: rgba(255,193,7,.08);
  border-radius: 50px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  color: #e7e7e7;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: #111;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #ddd;
}


/* TRUST */

.trust-strip {
  background: var(--yellow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.trust-grid > div {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.12);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 22px;
  color: #111;
}

.trust-grid span {
  font-size: 12px;
  font-weight: 700;
  color: #333;
}


/* BOOKING */

.booking-section {
  background: #f5f6f8;
  padding: 70px 0;
}

.booking-card {
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.small-label {
  display: inline-block;
  color: var(--yellow-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 7px;
}

.booking-heading h2 {
  font-size: 30px;
  color: var(--black);
}

.booking-heading p {
  color: #737983;
  margin-top: 5px;
}

.trip-tabs {
  display: flex;
  gap: 8px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.trip-tab {
  border: 1px solid var(--border);
  background: white;
  border-radius: 7px;
  padding: 10px 17px;
  cursor: pointer;
  font-weight: 700;
  color: #555;
}

.trip-tab.active,
.trip-tab:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 17px;
}

.form-group label {
  display: block;
  color: #252a30;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 7px;
  outline: none;
  padding: 0 13px;
  background: #fff;
  color: #333;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--yellow-dark);
}

.fare-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 12px;
  background: #fff8df;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.fare-box span {
  font-size: 12px;
  color: #777;
}

.fare-box h3 {
  font-size: 32px;
  color: #111;
  line-height: 1.2;
}

.fare-box small {
  color: #777;
}

.fare-note {
  font-size: 11px;
  color: #888;
  margin-top: 12px;
}


/* GENERAL SECTION */

.section {
  padding: 85px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.section-heading h2 {
  font-size: clamp(30px,4vw,42px);
  color: var(--black);
  line-height: 1.15;
}

.section-heading h2 span {
  color: var(--yellow-dark);
}

.section-heading p {
  color: #707780;
  margin-top: 12px;
}


/* SERVICES */

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 13px;
  background: #fff;
  transition: .25s;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff5cc;
  font-size: 27px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--black);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #72777e;
  margin-bottom: 18px;
}

.service-card a {
  color: #b17f00;
  font-size: 13px;
  font-weight: 800;
}


/* ROUTES */

.routes-section {
  background: #f7f8fa;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.route-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 21px;
  border-radius: 10px;
  transition: .2s;
}

.route-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

.route-card div {
  font-size: 22px;
  margin-bottom: 7px;
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card strong {
  color: #20252b;
  font-size: 14px;
}

.route-card span {
  color: #888;
  font-size: 12px;
  margin-top: 4px;
}


/* FLEET */

.fleet-section {
  background: var(--dark);
}

.light h2 {
  color: white;
}

.light p {
  color: #bfc4ca;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.car-card {
  overflow: hidden;
  background: #222831;
  border: 1px solid #303640;
  border-radius: 13px;
  color: white;
}

.car-image {
  height: 180px;
  display: grid;
  place-items: center;
  font-size: 90px;
}

.sedan {
  background: linear-gradient(135deg,#343c46,#16191e);
}

.suv {
  background: linear-gradient(135deg,#283e32,#111713);
}

.innova {
  background: linear-gradient(135deg,#3e3a30,#171512);
}

.crysta {
  background: linear-gradient(135deg,#343540,#121318);
}

.car-content {
  padding: 20px;
}

.car-content h3 {
  font-size: 20px;
}

.car-content p {
  color: #adb3ba;
  font-size: 13px;
}

.car-meta {
  display: flex;
  gap: 12px;
  margin: 13px 0;
  font-size: 12px;
  color: #cbd0d5;
}

.choose-car {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.choose-car:hover {
  background: var(--yellow);
  color: #111;
}


/* WHY */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.why-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.why-card > div {
  font-size: 35px;
  margin-bottom: 12px;
}

.why-card h3 {
  color: #222;
  font-size: 18px;
}

.why-card p {
  color: #777;
  font-size: 14px;
  margin-top: 7px;
}


/* PROCESS */

.process-section {
  background: #f7f8fa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.process-card {
  background: white;
  border-radius: 13px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.step {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  font-size: 17px;
}

.process-card h3 {
  color: #222;
}

.process-card p {
  color: #777;
  font-size: 14px;
  margin-top: 8px;
}


/* CTA */

.cta-section {
  background:
    linear-gradient(90deg,#101418,#262c34);
  color: white;
  padding: 65px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-inner h2 {
  font-size: 36px;
  line-height: 1.2;
  max-width: 700px;
}

.cta-inner p {
  color: #c4c9ce;
  margin-top: 8px;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}


/* FAQ */

.faq {
  max-width: 820px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #222;
  font-weight: 800;
  font-size: 15px;
  text-align: left;
}

.faq-question span {
  font-size: 22px;
  color: var(--yellow-dark);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: #777;
  font-size: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}


/* FOOTER */

footer {
  background: #0d1014;
  color: #b8bec5;
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 35px;
  padding-bottom: 45px;
}

footer .logo {
  color: white;
}

.footer-about p {
  max-width: 360px;
  margin-top: 15px;
  font-size: 14px;
}

footer h3 {
  color: white;
  margin-bottom: 17px;
  font-size: 16px;
}

footer > .container > div > a,
footer .footer-grid > div:not(.footer-about) a {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

footer a:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border: 1px solid #30353b;
  border-radius: 50%;
}

.footer-grid p {
  font-size: 13px;
  margin-bottom: 8px;
}

.copyright {
  border-top: 1px solid #292e35;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
}


/* FLOATING WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 27px;
  z-index: 2000;
  box-shadow: 0 7px 25px rgba(0,0,0,.25);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .nav-menu {
    gap: 15px;
  }

  .service-grid,
  .fleet-grid,
  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .routes-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .booking-form {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
}


@media (max-width: 760px) {

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > span {
    display: none;
  }

  .nav-menu,
  .header-call {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav.mobile-open {
    position: relative;
  }

  .nav.mobile-open .nav-menu {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    box-shadow: 0 12px 20px rgba(0,0,0,.1);
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .trust-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div {
    border-bottom: 1px solid rgba(0,0,0,.12);
  }

  .booking-form,
  .service-grid,
  .fleet-grid,
  .why-grid,
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .fare-box {
    flex-direction: column;
    align-items: stretch;
  }

  .fare-box .btn {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .cta-buttons {
    width: 100%;
  }

  .cta-buttons .btn {
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 480px) {

  .container {
    width: 91%;
  }

  .hero {
    min-height: 570px;
  }

  .hero h1 {
    font-size: 37px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .booking-card {
    padding: 20px;
  }

  .booking-heading h2 {
    font-size: 25px;
  }

  .section {
    padding: 60px 0;
  }

  .trust-grid strong {
    font-size: 18px;
  }
}