/* --- General Setup & Variables --- */
:root {
  --primary-yellow: #e9ac21;
  --text-dark: #1e1e1e;
  --light-gray: #f4f4f4;
  --border-gray: #e5e7eb;
  --text-light: #fff;
  --brand-color: #536AB2;
  --heading: "Bebas Neue", sans-serif;
  --greadiant: linear-gradient(90deg,
      rgba(233, 172, 33, 1) 0%,
      rgba(254, 241, 128, 1) 100%);
}

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

.d-none {
  display: none;
}

html {
  scroll-behavior: smooth;
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
}


body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-gray);
  color: var(--text-dark);
  overflow-x: hidden;
  /* Prevent horizontal scroll from animation */
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Global Styles --- */
.section-title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--heading);
  color: var(--text-dark);
}

.section-title span {
  color: var(--primary-yellow);
}

.btn-read-more {
  display: inline-block;
  background: var(--greadiant);
  color: var(--text-dark);
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.btn-read-more:hover {
  opacity: 0.8;

}

/* --- Header --- */
.topbar {
  text-align: center;
  background-color: var(--brand-color);
  padding: 5px;
  color: var(--text-light);
  font-size: 13px;
}

.main-header {
  background-color: var(--text-light);
  /* height: var(--header-height); */
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  top: 15px;
  background-color: var(--text-light);
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 0px #0000000d;
  z-index: 99;
}

.logo-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.logo-icon {
  background-color: var(--text-light);
  color: #4f46e5;
  font-size: 2.5rem;
  font-weight: 800;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a,
.header-contact a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.header-contact a:hover {
  color: var(--primary-yellow);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.header-contact .fa-phone {
  background: var(--greadiant);
  color: var(--text-dark);
  padding: 10px;
  border-radius: 50%;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: var(--header-height);
  height: 70vh;
  min-height: 600px;
  background: url(./img/hero.webp) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  min-width: 1200px;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--heading);
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* --- Booking Section --- */

.booking-section {
  position: relative;
  z-index: 10;
  padding-bottom: 50px;
  background: var(--greadiant);
}

.booking_form {
  padding: 1rem 0;
}

.form-wrapper {
  margin-top: -110px;
}

.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.tab-link {
  /* flex-grow: 1; */
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  padding: 16px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  background-color: var(--text-dark);
  color: var(--text-light);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--text-light);
}

.tab-link.active {
  background: var(--greadiant);
  color: var(--text-dark);
  border: 1px solid transparent;
}

.tab-content {
  background-color: var(--text-light);
  border-radius: 1.5rem;
  box-shadow: 0px 20px 40px 0px #00000033;
  display: none;
  padding: 30px 40px;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  background-color: #F8F8F8;
  ;
}

.form-group input:focus-visible,
.form-group select:focus-visible {
  outline: 1px solid var(--brand-color);
}

.form-group input::placeholder,
.form-group select:invalid {
  color: #939393;

}

.form-group option {
  color: var(--text-dark);
  /* Color for actual options */
}
.other-input-group {
    display: none;
}

.submit-group {
  text-align: center;
  padding: 1rem 0 0;
}

.submit-group button {
  background: var(--greadiant);
  color: var(--text-dark);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-group button:hover {
  background: var(--primary-yellow);
}

.taxi-band {
  height: 15px;
  background-image: url("./img/tx_strip.webp");
  background-size: cover;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/* first form  */
.form-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px;
}

.toggle-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.toggle-btn {
  flex: 1;
  max-width: 200px;
  padding: 10px;
  border: 1px solid #D4D4D4;
  background: #F8F8F8;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #dde5ff;
  font-weight: 600;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-dark);
}

.radio-group input[type="radio"] {
  display: none;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.custom-radio::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--brand-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}

.radio-group input[type="radio"]:checked+.custom-radio {
  border-color: var(--brand-color);
}

.radio-group input[type="radio"]:checked+.custom-radio::before {
  transform: scale(1);
}

.booking-widget .form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.add-city-btn {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  background-color: #F8F8F8;
  color: #D94B4B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-city-btn:hover {
  background-color: #fef2f2;
}

.add-city-btn i {
  font-size: 1.1em;
}

.submit-btn {
  width: 40%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: var(--greadiant);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: auto;
  display: block;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

/* --- Service Tabs (Top) --- */
.service-tabs {
  display: flex;
  margin-bottom: -1px;
  /* Overlap the border of the widget */
}

.service-tab-btn {
  border: none;
  padding: 12px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
}

.service-tab-btn.active {
  background-color: var(--primary-yellow-dark);
  color: var(--text-dark);
  z-index: 2;
}

.service-tab-btn:not(.active) {
  background-color: var(--inactive-bg);
  color: var(--text-light);
}

/* --- Main Widget Card --- */
.booking-widget {
  background-color: var(--text-light);
  border-radius: 1.5rem;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
  min-height: 400px;
  /* Give it a minimum height for tab switching */
}

.service-tab-content {
  display: none;
}

.service-tab-content.active {
  display: block;
}

.sub-form {
  display: none;
}

.sub-form.active {
  display: block;
}

/* --- Form Grids --- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.local-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}


/* --- Inputs with Icons --- */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.input-with-icon input {
  padding-right: 40px;
  /* Space for the icon */
  width: 100%;

}

.input-with-icon i {
  position: absolute;
  right: 15px;
  color: var(--placeholder-color);
  pointer-events: none;
}

.whatsapp-input svg {
  position: absolute;
  left: 10px;
  pointer-events: none;
}

.whatsapp-input .fa-whatsapp {
  color: var(--icon-green);
}

/* --- Submit & Placeholder --- */


.placeholder-text {
  text-align: center;
  padding-top: 50px;
  color: var(--placeholder-color);
  font-size: 1.2rem;
}

/* * --- Form Layout end --- */
*/

/* --- What We Offer Section --- */
.offer-section,
.offer_layout {
  padding: 40px 0;
  background-color: var(--text-light);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.offer-card {
  background: linear-gradient(90deg,
      #d9d9d9 -34.11%,
      rgba(246, 246, 246, 0.5) 99.94%);
  border-radius: 1rem;
  padding: 10px;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  text-align: center;
}

.offer-image {
  margin-bottom: 1rem;

}

.offer-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.offer-text {
  flex: 1;
}

.offer-text h3 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: var(--heading);
  font-weight: 500;
}

.offer-text h3 span {
  color: var(--primary-yellow);
}

.offer-text p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.common_btn {
  text-align: center;
  margin-top: 1.5rem;
}

/* --- About Section --- */
.about-section {
  background-color: var(--light-gray);
  position: relative;
  padding: 40px 0;
}

.taxi-band-divider {
  height: 15px;
  background: var(--greadiant);
  /* background-image: linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%); */
  background-image: url("./img/tx_strip.webp");
  background-size: cover;
  background-position: 0 0, 0 7px, 7px -7px, -7px 0px;
  width: 65%;
  margin-left: auto;
  position: absolute;
  right: 0;
}

.taxi-band-divider.top {
  top: 0;
}

.taxi-band-divider.bottom {
  bottom: 0;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: var(--greadiant);
  z-index: 1;
  border-right: 25px solid var(--text-light);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  background: var(--text-light);
  border-top-left-radius: 250px;
  border-bottom-left-radius: 250px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border: 1px solid #d6d6d6;
  z-index: 1;
}

.about-image-wrapper {
  flex: 0 0 45%;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 15px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 1;
  padding: 0 1rem;
}

.about-content .section-title {
  text-align: left;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}


/* --- OUR SERVICES SECTION --- */
.services-section {
  padding: 40px 0;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  border: 1px solid #D3D3D3;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px #0000000D;
  display: flex;
  align-items: flex-start;
  /* Aligns icon to top of text */
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--text-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  flex-shrink: 0;
  /* Prevents the icon from shrinking */
  width: 60px;
  /* Increased size for better visual balance */
  height: 60px;
  background: var(--greadiant);
  /* Light yellow from previous design */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon i {
  font-size: 1.5rem;
  color: #1e293b;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Responsive for Services Section --- */
/* @media (max-width: 992px) {
   
}

@media (max-width: 768px) {
   
} */


/* --- Team Section --- */
.team-section {
  padding: 40px 0;
  background: var(--text-light);
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
}

.team-intro strong {
  color: var(--primary-yellow);
  font-weight: 600;
}

.team-images {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 40px 0;
  background-color: var(--light-gray);
}



.testimonial-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card .rating {
  color: var(--primary-yellow);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Webkit Scrollbar */
.testimonial-card p::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.testimonial-card p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.testimonial-card p::-webkit-scrollbar-thumb {
  background: #818181;
  border-radius: 10px;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author .short_name {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-color);
  color: var(--text-light);
  font-weight: 600;
}

.author span {
  font-weight: 600;
}

/* --- Road Footer --- */
.road-footer {
  height: 350px;
  position: relative;
  /* Light sky color */
  overflow: hidden;
}
.road-foote .section-title{
  font-size: 30px;
}
.road-skyline {
  position: absolute;
  bottom: 0;
  /* Sits on top of the road */
  left: 0;
  width: 200%;
  /* Double width for looping animation */
  height: 220px;
  background: url("./img/road.webp") repeat-x;
  /* background: url(https://i.ibb.co/k2V4Hk8/city-skyline.webp) repeat-x; */
  background-size: 50% 100%;
  animation: slide 15s linear infinite;
}

.road-base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #444;
  /* Road color */
  border-top: 5px solid #333;
}

.road-base::before {
  /* Dashed line */
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 200%;
  height: 4px;
  background: linear-gradient(90deg, var(--text-light) 50%, transparent 50%);
  background-size: 50px 100%;
  animation: slide 10s linear infinite;
}

.road-car {
  position: absolute;
  bottom: 30px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 100%;
  height: 240px;
  /* background: url("./img/suvcab.webp") no-repeat center center; */
  animation: car-bob 1s linear infinite;
}

.road-car.first_car {
  left: 20%;
  background: url("./img/car1.webp") no-repeat center center;
}

.road-car.second_car {
  right: 20%;
  background: url("./img/car2.webp") no-repeat center center;
}

/* Error message styling */
.error-message {
  color: #dc2626;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  padding: 4px 8px;
  border-radius: 4px;
  animation: slideIn 0.3s ease-out;
}

.error-message::before {
  content: "⚠";
  font-size: 1rem;
  margin-right: 4px;
}

@keyframes slide {
  to {
    transform: translateX(0);
  }

  from {
    transform: translateX(-50%);
  }
}

/* @keyframes car-bob {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
} */
/* ============================================= */
/* ==============  SECTION 1: HERO  ============== */
/* ============================================= */

.six_sections {
  padding: 40px 0;
  text-align: center;
  background-color: var(--text-light);
}

.sub-headline {
  max-width: 700px;
  margin: 0 auto 80px auto;
  font-size: 1rem;
  color: var(--text-dark);
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Dotted connector line for desktop */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 75px;
  /* Vertically center with icons */
  left: 15%;
  right: 15%;
  height: 2px;
  background-image: radial-gradient(circle, #949494 1px, transparent 2px);
  background-size: 15px 2px;
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  position: relative;
}

.icon-container {
  width: 150px;
  height: 150px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  z-index: 1;
}

.icon-container img {
  max-width: 70px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--greadiant);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: absolute;
  top: 130px;
  /* Position it over the bottom of the icon */
  z-index: 2;
}

.step-description {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================= */
/* ===========  SECTION 2: CONTACT  ============ */
/* ============================================= */
/* ============================================= */

.contact-section-wrapper {
  background: var(--greadiant);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background-color: #f2f2f2;
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  text-align: left;
}

.contact-info p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info .call-out {
  font-weight: 600;
  font-size: 1.2rem;
}

.phone-details {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-top: 30px;
  font-size: 1.1rem;
}

.phone-details span a {
  color: var(--text-dark);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.phone-details span a:hover {
  color: var(--primary-yellow);
}

.phone-icon-container {
  width: 50px;
  height: 50px;
  background: var(--greadiant);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact_submit {
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 2px rgba(254, 203, 46, 0.3);
}

.contact-form button {
  background: var(--greadiant);
  color: var(--text-dark);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e4b528;
}

/* ============================================= */

/* ============================================= */
/* ============================================= */

.site-footer {
  background-color: var(--brand-color);
  color: var(--text-light);
  padding: 60px 0 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-text-top {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
}

.logo-text-main {
  font-family: "Times New Roman", Times, serif;
  /* A closer match to the logo style */
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.footer-nav {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0 5px;
}

.footer-nav a:hover {
  color: var(--primary-yellow);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: #ffffff2b;
}

.footer-contact-social {
  padding: 30px 0;
  display: grid;
  gap: 50px;
  position: relative;
  grid-template-columns: 1fr 1fr;
}

.footer-contact-social::before {
  content: "";
  top: 0;
  left: 50%;
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #ffffff2b;
  transform: translateX(-50%);
}

.footer-phone {
  justify-content: end;
}

.footer-social {
  justify-content: start;
}

.footer-phone,
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon-container-footer {
  width: 40px;
  height: 40px;
  background: var(--greadiant);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-bg);
}

.footer-phone span a {
  color: var(--text-light);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.footer-phone span a:hover {
  color: var(--primary-yellow);
}

.footer-social a {
  color: var(--text-light);
  text-decoration: none;
  border: 1px solid var(--text-light);
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}

.footer-social a:hover {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--dark-bg);
}

.footer-copyright {
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ============================================= */

/* --- Responsive Design --- */
@media (max-width: 1200px) {
  html {
    --top-spacing: 65px;
    scroll-padding-top: var(--top-spacing);
  }

  .hero-section .container {
    margin: initial;
  }

  .hero-content {
    min-width: 100%;
  }

  .main-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-header.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: var(--text-light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .main-header.nav-open .logo {
    top: 0;
  }

  .main-header.nav-open .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-header.nav-open .main-nav li {
    border-bottom: 1px solid #e2e8f0;
  }

  .main-header.nav-open .main-nav a {
    display: block;
    padding: 15px 20px;
  }

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



  .about-content {
    flex: 1;
    padding: 0 1rem 2rem;
  }

  .about-image-wrapper {
    max-width: 400px;
  }

  .about-content .section-title {
    margin-top: 30px;
  }

  .team-images {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-images img {
    height: 300px;
  }


}

@media only screen and (min-width:992px) and (max-width:1199px) {

  .main-header.nav-open .logo,
  .logo {
    width: 75px;
  }

  .hero-content {
    min-width: 100%;
  }

  .hero-section .container {
    margin: initial;
  }

  .hero-section {
    height: 50vh;
    min-height: 490px;
  }

  .hero-content h1 {
    font-size: 60px;
    line-height: 1;
  }

  .tab-content .form-group:last-child {
    grid-column: 1/3;
  }

  .offer-section,
  .team-section,
  .testimonials-section,
  .six_sections {
    padding: 40px 0;
  }

  .offer-card {
    padding: 8px;
  }

  .offer-text h3 {
    font-size: 30px;
  }

 

  .taxi-band-divider {
    width: 100%;
  }

  .about-container {
    border-radius: 30px;
    padding: 30px 0;
    gap: 20px;
  }

  .about-content {
    padding: 0 1rem 20px;
  }

  .team-images {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sub-headline {
    margin: 0 auto 40px auto;
  }

  .contact-container {
    gap: 20px;
    padding: 40px;

  }

  .phone-icon-container {
    width: 40px;
    height: 40px;
  }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }



}

@media only screen and (min-width:768px) and (max-width:991px) {

  .main-header.nav-open .logo,
  .logo {
    width: 75px;
  }

  .hero-content {
    min-width: 100%;
  }

  .hero-section .container {
    margin: initial;
  }

  .hero-section {
    height: 50vh;
    min-height: 490px;
  }

  .hero-content h1 {
    font-size: 60px;
    line-height: 1;
  }

  .tab-content .form-group:last-child {
    grid-column: 1/3;
  }

  .offer-section,
  .team-section,
  .testimonials-section,
  .six_sections {
    padding: 40px 0;
  }

   .offer-card {
    padding: 8px;
  }

  .offer-text h3 {
    font-size: 30px;
  }



  .taxi-band-divider {
    width: 100%;
  }

  .about-container {
    border-radius: 30px;
    padding: 30px 0;
    gap: 20px;
  }

  .about-content {
    padding: 0 1rem 20px;
    text-align: center;
  }

  .about-content p {
    text-align: justify;
  }

  .team-images {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sub-headline {
    margin: 0 auto 40px auto;
  }

  .contact-container {
    gap: 20px;
    padding: 25px;

  }

  .contact-info .call-out {
    font-size: 16px;
  }

  .phone-details span a {
    font-size: 16px;
  }

  .phone-icon-container {
    width: 40px;
    height: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.road-skyline{
  height: 300px;
}
}

@media only screen and (min-width:320px) and (max-width:767px) {
  .logo {
    width: 75px;
  }

  .hero-content {
    min-width: 100%;
  }

  .hero-section .container {
    margin: initial;
  }

  .hero-section {
    height: 30vh;
    min-height: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }


  .form-wrapper {
    margin-top: 0;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .tab-content {
    padding: 20px;
  }

  .offer-section {
    padding: 40px 0;
  }

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

   .offer-card {
    padding: 8px;
  }

  .offer-text h3 {
    font-size: 25px;
  }




  .btn-read-more {
    padding: 6px 16px;
    font-weight: 500;
    /* display: none; */
  }

  .booking-form {
    gap: 12px;
  }

  .form-group input,
  .form-group select {
    min-height: 40px;
    padding: 5px 12px;

  }

  .tab-link {
    font-size: 13px;
    padding: 14px;
  }

  .tab-link i {
    font-size: 20px;
  }



  /* about section  */
  .about-section {
    padding: 60px 0;
  }

  .taxi-band-divider {
    width: 100%;
  }

  .about-container {
    flex-direction: column;
    gap: 20px;
    border-top-left-radius: 250px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 30px;
  }

  .about-content {
    padding: 1rem;
    text-align: center;
  }

  .about-content .section-title {
    margin-top: 1rem;
    text-align: center;

  }

  /* about section  */
  /* team section  */
  .team-section,
  .testimonials-section,
  .six_sections {
    padding: 40px 0;
  }

  .team-images {
    grid-template-columns: repeat(1, 1fr);
  }

  /* team section  */
  /* steps section  */
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sub-headline {
    margin: 0 auto 30px auto;
  }

  .steps-wrapper::before {
    display: block;
    top: 50px;
    bottom: 50px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .step-item {
    width: 100%;
    max-width: 300px;
  }

  /* steps section  */
  /* contact us section */
  .contact-container {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .contact-info .call-out {
    font-size: 16px;
  }

  .phone-details {
    margin-top: 0;
  }

  .phone-details span a {
    font-size: 16px;
  }

  .contact-container {
    gap: 25px;
  }

  /* contact us section */
  /* footer layout  */
  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-nav {
    gap: 0.5rem;
  }

  .footer-contact-social {
    grid-template-columns: 1fr;
  }

  .footer-contact-social::before {
    all: unset;
  }

  .footer-phone,
  .footer-social {
    justify-content: center;
  }

  .footer-contact-social {
    gap: 20px;
  }

  .about-content p {
    text-align: justify;
  }

  .toggle-group,
  .radio-group {
    align-items: stretch;
    gap: 15px;
  }

  .radio-group label {
    font-size: 12px;
  }

  .booking-widget .form-grid {
    grid-template-columns: 1fr;
  }

  .add-city-btn {
    padding: 5px 15px;
  }

  .submit-btn {
    width: 100%;
  }

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

  .road-car.first_car {
    background-size: 34%;
    height: 128px;
  }

  .road-car.road-car.second_car {
    background-size: 30%;
    height: 125px;
  }

  .road-footer {
    max-height: 200px;
  }
  .service-content h3{
    font-size: 18px;
  }
}






@media (max-width: 480px) {




  .tab-content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/* --- General Setup & Variables --- */
:root {
  --primary-yellow-light: #fde047;
  --primary-yellow-dark: #facc15;
  --active-blue-light: #e0e7ff;
  --active-blue-dark: #4f46e5;
  --text-light: #f8fafc;
  --border-color: #e2e8f0;
  --placeholder-color: #94a3b8;
  --icon-red: #ef4444;
  --icon-green: #25D366;
  --inactive-bg: #334155;
}