/* ==== Google Fonts ==== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/*index html style*/
.how-to-hire{
  padding: 90px 20px;
  text-align: center;
}

.how-to-hire .title {
  font-size: 2.6rem;
  color: #f88d01; /* Mid Orange */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(59, 45, 22, 0.801);
}

/* Layout for Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Each Step Card */
.step {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 35px 25px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #f8a300; /* Orange accent */
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(248, 163, 0, 0.25);
  border-top-color: #ffb703;
}

/* Step Image */
.step img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #004aad; /* Touch of blue */
  background-color: #fff;
}

/* Step Title */
.step h3 {
  color: #004aad; /* Blue text for contrast */
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Step Text */
.step p {
  font-size: 1rem;
  color: #5a4635; /* Soft brown tone */
  line-height: 1.6;
}

/* Subtle Glow Hover */
.step:hover img {
  box-shadow: 0 0 10px rgba(247, 58, 68, 0.808);
  border-color: #f8a300;
}

/* makes your website automatically adjust to different screen sizes */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 90%;
  }
}

footer {
  background: #0c0c0e;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

footer p:hover {
  color: #f59e2a;
  transition: color 0.25s ease;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-icons a:hover {
  background: #e8820c;
  border-color: #e8820c;
  color: #fff;
}

/* ==== WHATSAPP FLOATING BUTTON (all pages) ==== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9998;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.48);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-float-pulse 2.8s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes wa-float-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 26px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}



/* ==== HEADER & NAV — Light Premium (shared across all pages) ==== */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #1F2933;
  padding: 0 40px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  border-bottom: 1px solid #E4E7EB;
}

header .logo,
header p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1F2933;
  letter-spacing: 0.3px;
}

section, .how-to-hire, main, footer {
  position: relative;
  z-index: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #52606D;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.25s ease, background 0.25s ease;
  padding: 7px 13px;
  border-radius: 6px;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  color: #E68A00;
  background: #FFF3E0;
  border-bottom: none;
}

/* ==== HERO SECTION ==== */
section {
  text-align: center;
  padding: 100px 20px 60px;
}

/* ==== SLOGAN ==== */
.slogan h1 {
  font-size: 2.8em;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.slogan p {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 30px;
}



/* ==== CATEGORY BUTTONS ==== */
.category {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.categories {
  background-color: #1a1a1a;
  color: white;
  border: 2px solid #f7b731;
  padding: 14px 25px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.categories:hover {
  background-color: #f7b731;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(247, 183, 49, 0.3);
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .search-bar input {
    width: 80%;
  }

  .slogan h1 {
    font-size: 2em;
  }
}

/* ==== WHY CHOOSE US SECTION ==== */
.why-choose {
  padding: 20px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.5rem;
  color: #a76919; /* brown tone */
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(165, 120, 46, 0.3);
  letter-spacing: 1px;
}

.choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.choose-item {
 
  border: 2px solid #f7b731;
  border-radius: 15px;

  padding: 20px 25px;
  width: 320px;
  height: 170px;
  
}

.choose-item:hover {
  
  border-color: #004aad; /* blue accent hover */
}

.choose-item h3 {
  color: #004aad; /* blue heading */
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.choose-item p {
  color: #5a4635; /* brownish text */
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive layout */
@media (max-width: 768px) {
  .choose-grid {
    flex-direction: column;
    align-items: center;
  }

  .choose-item {
    width: 90%;
  }
}

.main {
  background: linear-gradient(135deg, #fff8f0 0%, #fdd6a4 100%);
}

body {
  background: linear-gradient(135deg, #fff8f0 0%, #fdd6a4 100%);
  color: #1a1a1a;
  line-height: 1.6;
}

.main, .how-to-hire, .why-choose, section {
  background: none;
}
/* ==== FEATURED VEHICLES ==== */
.featured {
  text-align: center;
  padding: 80px 20px;
}

.featured h2 {
  font-size: 2.4rem;
  color: #a76c35;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(167,108,53,0.3);
}

.carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.car-card {
  min-width: 360px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border-top: 4px solid #f7b731;
  padding: 15px;
  transition: all 0.3s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(247,183,49,0.3);
}

.car-card img {
  width: 320px;
  border-radius: 10px;
  margin-bottom: 10px;
  height: 300px;
}

.car-card h3 {
  color: #004aad;
  margin-bottom: 8px;
}

/* ==== CUSTOMER REVIEWS ==== */
.reviews {
  text-align: center;
  padding: 90px 20px;
}

.reviews h2 {
  font-size: 2.5rem;
  color: #f88d01;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(59,45,22,0.5);
}

.review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review {
  background: #fff;
  border: 2px solid #f7b731;
  border-radius: 15px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-6px);
  border-color: #004aad;
  box-shadow: 0 10px 20px rgba(247,183,49,0.3);
}

.review p {
  color: #5a4635;
  font-size: 1rem;
  margin-bottom: 15px;
}

.review h4 {
  color: #004aad;
  font-weight: 600;
}




/*hire  html*/


/* ==== CAR SECTIONS ==== */
.car-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
  font-family: 'Poppins', sans-serif;
}

.car-section h2 {
  color: #2e2e2e;
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 1.2px;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

.car-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #c49b66, #f2d184);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid layout */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* Each car card */
.car-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  background: #fff; 
}

.car-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(196, 155, 102, 0.3);
}
.price {
  font-size: 1.2rem;
  color: #f88d01; /* orange/gold accent */
  font-weight: bold;
}

/* Image */
.car-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-item:hover img {
  transform: scale(1.07);
}

/* Car details */
.car-item h3 {
  color: #3a2b1e;
  font-size: 1.5rem;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.car-item p {
  margin: 0 20px 15px;
  color: #5a4a3d;
  line-height: 1.5;
  font-size: 0.95rem;
}

.car-item .price {
  font-weight: 700;
  color: #c98225;
  margin: 0 20px 15px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}



  /* === FEATURED VEHICLES (SWIPER) === */
.featured {
  text-align: center;
  padding: 60px 0;
  
}

.featured h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* === Swiper Container === */
.mySwiper {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 70px; /* space for dots */
  position: relative;
}

/* === Each Card === */
.car-card {
  background: #9b1d1d;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.car-card h3 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 5px;
  font-weight: 600;
}

.car-card p {
  color: #161515;
  font-size: 1.27rem;
  margin: 5px 0;
}

.car-card strong {
  color: #f39703;
  
  font-size: 1.40rem;
  
}

/* === Swiper Navigation Arrows === */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  
 
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
 
  transform: scale(1.1);
}

/* === Dots (Pagination) === */
.swiper-pagination {
  bottom: 15px !important; /* ensure dots stay below cards */
}

.swiper-pagination-bullet {
 
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: background 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
  background: #ff4d4d;
  transform: scale(1.3);
}

/* === Responsive Adjustments === */
@media (max-width: 1024px) {
  .featured h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .car-card img {
    height: 200px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .featured h2 {
    font-size: 1.6rem;
  }

  .car-card {
    padding: 10px;
  }
}







/* RENTAL PAGE STYLES */
.rental-section {
  text-align: center;
  padding: 80px 20px;
  background: #f8f8f8;
  color: #333;
}

.rental-section h1 {
  font-size: 2.4rem;
  color: #a76c35;
  text-shadow: 1px 1px 2px rgba(167,108,53,0.3);
  margin-bottom: 10px;
}

.rental-section p {
  color: #555;
  margin-bottom: 40px;
}

.rental-table-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow-x: auto;
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
}

.rental-table th, .rental-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.rental-table th {
  background-color: #004aad;
  color: white;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.rental-table tr:hover {
  background-color: rgba(247,183,49,0.1);
}

.rental-table td {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .rental-table th, .rental-table td {
    padding: 10px;
    font-size: 0.85rem;
  }
}






/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  
  color: #222;
  line-height: 1.6;
}

/* === HEADER === */


.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

nav a:hover,
nav a.active {
  color: #58492f;
  transform: scale(1.1);
}
 
/* ======================= */
/* GLOBAL STYLES & FONT    */
/* ======================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff8f0 0%, #fdd6a4 100%);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

/* ======================= */
/* HERO SECTION            */
/* ======================= */
.hire-hero {
  position: relative;
  background: url("https://cdn.pixabay.com/photo/2016/05/05/17/59/sports-car-1374425_640.jpg") center/cover no-repeat;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8d47b;
  overflow: hidden;
}

.hire-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 6, 6, 0.7), rgba(53, 34, 16, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1.3s ease-out forwards;
}

.hero-logo {
  width: 180px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #b86d0b;
  box-shadow: 0 0 20px rgba(255, 217, 0, 0.6);
  margin-bottom: 20px;
}

.hire-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 166, 0, 0.4),
               0 0 30px rgba(255, 215, 0, 0.2);
  margin-bottom: 10px;
}

.hire-hero p {
  font-size: 1.2rem;
  color: #f4e3b2;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

/* Hero animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================= */
/* CAR SECTION             */
/* ======================= */
.car-section {
  padding: 60px 5%;
}

.car-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 40px;
  position: relative;
}

.car-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #4e184a;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* CAR GRID */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CAR ITEM */
.car-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: #fff;
}

.car-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.car-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-item:hover img {
  transform: scale(1.08);
}

.car-item h3 {
  font-size: 1.3rem;
  color: #2f1b0a;
  margin: 15px;
  font-weight: 700;
}

.car-item p {
  color: #5c4a36;
  margin: 0 15px 10px;
  font-size: 0.95rem;
}

.price {
  font-size: 1.1rem;
  color: #b97328;
  font-weight: bold;
  margin: 10px 15px 15px;
}

/* ======================= */
/* BUTTONS (WITH ICONS)    */
/* ======================= */


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 150px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-align: center;
}

/* WhatsApp */
.btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Call */
.btn.call {
  background: linear-gradient(135deg, #ff9933, #e07b00);
}

.btn.call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
}





/* Button Group inside car card */
.car-item .btn-group {
  display: flex;
  justify-content: space-between; /* keep buttons side by side */
  gap: 10px;                       /* space between buttons */
  width: 100%;                     /* full width of the card */
  padding: 10px 15px;              /* some padding */
  box-sizing: border-box;          /* include padding in width */
}

/* Buttons */
.car-item .btn {
  flex: 1;                          /* equal width */
  text-align: center;
  min-width: 0;                      /* prevent overflow */
  padding: 10px 0;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* Optional: separate colors for each button */
.car-item .btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #20b058);
}

.car-item .btn.whatsapp:hover {
  background: linear-gradient(135deg, #32e377, #25d366);
}

.car-item .btn.call {
  background: linear-gradient(135deg, #ff9933, #e07b00);
}

.car-item .btn.call:hover {
  background: linear-gradient(135deg, #ffae42, #ff9933);
}

/* On small screens, stack buttons */
@media (max-width: 480px) {
  .car-item .btn-group {
    flex-direction: column;
    gap: 10px;
  }
}


/*enroll*/
/* ===== DriveEase Car Rentals Styles ===== */

/* General Page Settings */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* Light yellow background */
  color: black;
}

/* Header Section */
header {
  background-color: #5b3a29; /* Brown */
  color: white;
  text-align: center;
  padding: 15px 0;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

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

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #f4d03f; /* Highlight yellow */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  
}

.hero h2 {
  color: #5b3a29;
}

.btn {
  background-color: #f4d03f; /* Light yellow button */
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #d4ac0d;
}

/* Cars Section */
.cars {
  text-align: center;
  padding: 40px 20px;
}

.car-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.car-card {
  background-color: #fff;
  border: 2px solid #5b3a29;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  text-align: center;
}

.car-card img {
  width: 100%;
  border-radius: 10px;
}

/* Booking Section */
.booking {
  
  padding: 40px 20px;
  text-align: center;
}

.booking form {
  display: inline-block;
  text-align: left;
  max-width: 1000px;
  background: #fff8e1;r-radius: 10px;
}

.booking label {
  display: block;
  margin-top: 10px;
}

.booking input,
.booking select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #5b3a29;
  border-radius: 5px;
} 

/* Footer Section */
footer {
  background-color: #5b3a29;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}
/* ======================= */
/* FOOTER                  */
/* ======================= */
footer {
  background: linear-gradient(135deg, #8b4513, #c69753);
  text-align: center;
  color: white;
  padding: 10px 0;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

footer .social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

footer .social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

footer .social-icons a:hover {
  color: #f7b731; /* gold on hover */
  transform: scale(1.2);
}


/*in index .html*/
/* hire button */
.hirebutton {
  background-color: #f0b837; /* gold tone */
  color: white;
  font-size: 20px;
  font-weight: 400;
  width: 250px;
  height: 50px;
  border: none;
  border-radius: 10px;
  cursor: pointer;

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

  /* ✅ center horizontally */
  margin: 40px auto;

  box-shadow: 0 4px 10px rgba(250, 81, 81, 0.15);
  text-decoration: none; /* removes underline for link text */
  
}

.hirebutton:hover {
  background-color: #e9b02b; /* slightly darker gold */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  
}





/* FAQ Section Styling */
.faq-section {
  max-width: 1500px;
  margin: 60px auto;
  padding: 40px 20px;
  
  border-radius: 12px;
  
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #050505;
  margin-bottom: 35px;
}

/* Two-column layout */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
}

.faq-column details {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 20px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.faq-column summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: #050505;
  position: relative;
  list-style: none;
}

.faq-column summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  color: #f0b837;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-column details[open] {
  background-color: #fff4da;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.faq-column p {
  margin-top: 10px;
  color: #2b2b2b;
  line-height: 1.6;
  animation: fadeIn 0.4s ease;
}

/* Animation for dropdown */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}









/* ENROLL STYLE */





h1{
  color: #111111;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: flex;
}
.para{
  color: #000;
  justify-content: center;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight:5600;
  border: none;
  
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.primary-btn {
  background: #f7d381;
  color: #111;
}
.primary-btn:hover {
  background: #f5b561;
  transform: translateY(-2px);
}
   






/* ENROLL STYLE */
.enroll-hero {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  text-align: center;
  min-height: 40vh;          /* or 100vh if full screen */
  background: linear-gradient(135deg, #fff8f0 0%, #fdd6a4 100%);
}

.hero-content h1 {
  color: #111111;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content .para {
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.primary-btn {
  background: #f7d381;
  color: #111;
}

.primary-btn:hover {
  background: #f5b561;
  transform: translateY(-2px);
}





/* Features Section */
.features {
  background: #f7d8b6;
  padding: 60px 40px;
}
.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.feature {
  flex: 1 1 30%;
  text-align: center;
}
.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}
.feature p {
  font-size: 1rem;
  color: #555;
}

  

/* Features Section */
.features {

  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
}

.feature {
  flex: 1 1 250px;
  text-align: center;
  background: #f7d381;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111;
}

.feature p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

@media(max-width: 768px){
  .features-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}




/* Enroll Form Section */
.enroll-form-section {
  max-width: 800px;
  margin: 60px auto 120px auto;
  padding: 40px 20px;
  
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.enroll-form-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}
.enroll-form-section p {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}
.enroll-form .form-group {
  margin-bottom: 20px;
}
.enroll-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}
.enroll-form input[type="text"],
.enroll-form input[type="email"],
.enroll-form input[type="tel"],
.enroll-form input[type="number"],
.enroll-form input[type="file"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border .3s ease;
}
.enroll-form input:focus {
  border-color: #f0b837;
  outline: none;
}
.enroll-form .form-group input[type="file"] {
  padding: 6px 10px;
}
.enroll-form .form-group label input[type="checkbox"] {
  margin-right: 8px;
}
.enroll-form button {
  width: 100%;
  margin-top: 20px;
}



/* Responsive */
@media (max-width: 900px) {
  .hero.enroll-hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
  }
}


section {
  padding: 100px 50px; /* consistent top/bottom spacing */
}
/* spacing in home page */
.how-to-hire, 
.featured, 
.reviews, 

.why-choose {
  padding: 0; /* remove section-specific padding */
}

.hero, .hire-hero, .hero.enroll-hero {
  padding-top: 50px; /* prevents content from hiding under header */
}






/* ── PROFESSIONAL BOOKING SECTION ────────────────────────────────── */

.booking-title {
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}

.booking-btn {
  width: 100%;
  padding: 15px;
  background: #f88d01;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(248, 141, 1, 0.35);
  min-height: 54px;
  transition: background 0.3s ease;
}

.booking-btn:hover {
  background: #e07a00;
  box-shadow: 0 6px 20px rgba(248, 141, 1, 0.45);
  transform: translateY(-1px);
}

.booking-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(248, 141, 1, 0.3);
}

.booking-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Spinner inside button */
.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Booking section wrapper */
.booking-section {
  padding: 60px 20px;
  background: #faf8f5;
}

/* Card */
.booking-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  padding: 40px 44px;
  border-top: 5px solid #f88d01;
}

@media (max-width: 640px) {
  .booking-card {
    padding: 28px 20px;
    border-radius: 14px;
  }
}

/* Card header */
.booking-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ede8;
}

.booking-icon {
  width: 52px;
  height: 52px;
  background: #fff7ed;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.booking-subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Error banner */
.booking-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  color: #991b1b;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Form groups */
.booking-section .form-group {
  margin-bottom: 18px;
  flex: 1;
  min-width: 0;
}

.booking-section label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #374151;
  letter-spacing: 0.2px;
}

.booking-section label .req {
  color: #f88d01;
  margin-left: 2px;
}

.booking-section label .optional {
  color: #9ca3af;
  font-weight: 400;
  font-size: 0.82rem;
}

.booking-section input,
.booking-section select,
.booking-section textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #111827;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
}

.booking-section input:focus,
.booking-section select:focus,
.booking-section textarea:focus {
  border-color: #f88d01;
  box-shadow: 0 0 0 3px rgba(248, 141, 1, 0.12);
  background: #fff;
}

.booking-section textarea {
  resize: vertical;
  min-height: 80px;
}

/* Two-column row */
.form-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

@media (max-width: 580px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .date-arrow { display: none; }
}

/* Date row arrow connector */
.date-row {
  align-items: center;
}

.date-arrow {
  font-size: 1.4rem;
  color: #f88d01;
  padding-top: 28px;
  flex-shrink: 0;
  font-weight: 700;
}

/* Duration pill */
.duration-display {
  display: inline-flex;
  align-items: center;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  margin-top: 4px;
}

.trust-badges span {
  font-size: 0.8rem;
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── CONFIRMATION MODAL ─────────────────────────────────────────── */

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.booking-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  animation: slideUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-icon {
  width: 68px;
  height: 68px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #16a34a;
  margin: 0 auto 20px;
  font-weight: 700;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
}

.modal-ref-label {
  font-size: 0.82rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin: 0 0 6px;
}

.modal-ref {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f88d01;
  letter-spacing: 1px;
  font-family: monospace;
  margin: 0 0 20px;
  background: #fff7ed;
  border: 1.5px dashed #fed7aa;
  border-radius: 10px;
  padding: 10px 20px;
  display: inline-block;
}

.modal-message {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.6;
  margin: 0 0 24px;
}

.modal-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.modal-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.modal-close-btn {
  background: none;
  border: 1.5px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.modal-close-btn:hover {
  background: #f9fafb;
  color: #111827;
}


/* Rental page button */
.btn-book-now {
  display: inline-block;
  padding: 12px 25px;
  background-color: #f88d01; /* Orange color */
  color: #fff;
  width: 200px;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  margin-top: 30px;
}

.btn-book-now:hover {
  background-color: #e07b00; /* Darker orange on hover */
  transform: translateY(-2px);
}



.car-categories {
  padding: 60px 5%;
  
  text-align: center;
}

.car-categories h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.car-categories p {
  margin-bottom: 40px;
  color: #555;
}

.categories-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.category-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.category-card h3 {
  margin-bottom: 10px;
  color: #1d1d1d;
}

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

.category-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.category-card ul li strong {
  color: #2b7a78;
}

/* ═══════════════════════════════════════════════════════════════════
   "BOOK THIS CAR" BUTTON — on every car card
═══════════════════════════════════════════════════════════════════ */

.book-this-car {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f88d01;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(248, 141, 1, 0.35);
  letter-spacing: 0.2px;
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.book-this-car:hover {
  background: #e07a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(248, 141, 1, 0.45);
}

.book-this-car:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING FORM — STEP HEADERS
═══════════════════════════════════════════════════════════════════ */

.booking-step {
  background: #fafafa;
  border: 1.5px solid #f0ede8;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 20px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #f0ede8;
}

.step-num {
  width: 28px;
  height: 28px;
  background: #f88d01;
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════════
   CAR SELECTED BANNER
═══════════════════════════════════════════════════════════════════ */

.car-selected-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 100%);
  border: 2px solid #fed7aa;
  border-left: 5px solid #f88d01;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  gap: 12px;
  animation: fadeIn 0.3s ease;
}

.car-banner-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.car-banner-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.car-banner-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.car-banner-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.car-banner-rate {
  font-size: 0.85rem;
  color: #c2410c;
  font-weight: 600;
  margin-top: 2px;
}

.car-banner-change {
  background: none;
  border: 1.5px solid #fed7aa;
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  font-family: inherit;
}

.car-banner-change:hover {
  background: #fff7ed;
}

/* Pulse animation when form is focused via "Book This Car" */
@keyframes bookingPulse {
  0%   { box-shadow: 0 8px 40px rgba(0,0,0,0.10); }
  50%  { box-shadow: 0 0 0 6px rgba(248, 141, 1, 0.2), 0 8px 40px rgba(0,0,0,0.10); }
  100% { box-shadow: 0 8px 40px rgba(0,0,0,0.10); }
}

.booking-pulse {
  animation: bookingPulse 0.8s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   DRIVER TOGGLE
═══════════════════════════════════════════════════════════════════ */

.driver-toggle-group {
  display: flex;
  gap: 10px;
}

.driver-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  user-select: none;
}

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

.driver-option:hover {
  border-color: #f88d01;
  background: #fff7ed;
  color: #92400e;
}

.driver-option.active {
  border-color: #f88d01;
  background: #fff7ed;
  color: #c2410c;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   LIVE PRICE CALCULATOR
═══════════════════════════════════════════════════════════════════ */

.price-calculator {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  animation: fadeIn 0.3s ease;
}

.price-calc-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f88d01;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.price-row strong {
  color: #f1f5f9;
  font-weight: 600;
}

.price-row.driver-row {
  color: #86efac;
}

.price-row.driver-row strong {
  color: #86efac;
}

.price-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}

.price-row.price-total {
  font-size: 1rem;
  color: #f1f5f9;
  font-weight: 700;
}

.price-row.price-total strong {
  font-size: 1.3rem;
  color: #f88d01;
  font-weight: 800;
}

.price-note {
  font-size: 0.75rem;
  color: #64748b;
  margin: 10px 0 0;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON (for pages not using home.css)
═══════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.85rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════════════════════ */

/* Fix: header height clips when stacked on mobile */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 12px 20px;
    gap: 8px;
  }

  /* Car grid: force single column on narrow screens */
  .car-grid {
    grid-template-columns: 1fr !important;
  }

  /* Car sections: reduce padding */
  .car-section {
    padding: 40px 16px;
  }

  .car-section h2 {
    font-size: 1.6rem;
  }

  /* Booking section: full width */
  .booking-section,
  .book-section {
    padding: 40px 16px;
  }

  /* Sections: reduce top padding (since header height changes) */
  .hire-hero {
    padding-top: 110px;
  }

  section {
    padding-top: 80px;
  }

  /* Rental section */
  .rental-section {
    padding: 80px 16px 40px;
  }

  .rental-section h1 {
    font-size: 1.8rem;
  }

  /* WhatsApp float smaller on mobile */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  header .logo,
  header p {
    font-size: 0.85rem;
  }

  nav ul {
    gap: 6px;
  }

  nav ul li a {
    font-size: 0.8rem;
    padding: 5px 8px;
  }

  .car-section h2 {
    font-size: 1.35rem;
  }
}
