/* CITY HERO SECTION */
.city-hero {
  position: relative;
  height: 420px;
  background: url("../images/common-hero-img.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

/* Gradient Overlay */
.city-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(90, 35, 0, 0.95) 0%,
    rgba(140, 60, 0, 0.85) 60%,
    rgba(255, 140, 0, 0.6) 100%
  );
}

/* Content Layer */
.city-hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Breadcrumb */
.city-breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
}

.city-breadcrumb a {
  color: #ffb347;
  text-decoration: none;
  font-weight: 500;
}

.city-breadcrumb span {
  margin: 0 8px;
  opacity: 0.7;
}

.city-breadcrumb .active {
  color: #fff;
}

/* Title */
.city-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.city-hero-title span {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.city-hero-subtitle {
  margin-top: 20px;
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
}

/* CTA Buttons */
.city-hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-call {
  background: #ff7a00;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-call:hover {
  background: #e66a00;
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .city-hero {
    height: 400px;
    text-align: center;
    

  }

  .city-hero-title {
    font-size: 30px;
  }

  .city-hero-subtitle {
    font-size: 15px;
  }

  .city-hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ABOUT CITY SECTION */
.about-city-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 25px;
}

.section-title span {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-city-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.about-city-btn {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* FEATURE CARDS */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-card i {
  font-size: 28px;
  color: #ff7a00;
  margin-bottom: 10px;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-city-section {
    text-align: center;
  }

  .about-city-btn {
    justify-content: center;
  }

  .about-features {
    margin-top: 40px;
  }
}

.city-services-section {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}


/* Background Shapes */
.services-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.services-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  border-radius: 50%;
  top: -200px;
  left: -150px;
  opacity: 0.08;
  z-index: 0;
}

/* Road Style Ellipse Shape */
.services-road {
  position: absolute;
  width: 700px;
  height: 280px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  border-radius: 50%;
  bottom: -140px;
  right: -200px;
  opacity: 0.06;
  transform: rotate(-15deg);
  z-index: 0;
}

/* Watermark Car Icon */
.services-watermark {
  position: absolute;
  top: 80px;
  right: 100px;
  font-size: 220px;
  color: #ff7a00;
  opacity: 0.04;
  z-index: 0;
}

/* Ensure Content Above Shapes */
.city-services-section .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
}

.section-title span {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 15px auto 0;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card i {
  font-size: 40px;
  color: #ff7a00;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(255,122,0,0.25);
}

.service-card:hover i {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

/* WHY CHOOSE SECTION */
/* ==========================================
   PREMIUM WHY CHOOSE SECTION
========================================== */

.why-choose-section {
  position: relative;
  padding: 130px 0;
  background: linear-gradient(135deg, #2b1100, #5a2300, #7a2f00);
  color: #fff;
  overflow: hidden;
}

/* Big Gradient Blob */
.why-blob {
  position: absolute;
  width: 550px;
  height: 550px;
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  border-radius: 50%;
  top: -250px;
  left: -200px;
  opacity: 0.08;
  z-index: 0;
}

/* Road Ellipse Shape */
.why-road {
  position: absolute;
  width: 700px;
  height: 280px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  border-radius: 50%;
  bottom: -160px;
  right: -250px;
  opacity: 0.06;
  transform: rotate(-18deg);
  z-index: 0;
}

/* Watermark Icon */
.why-watermark {
  position: absolute;
  top: 100px;
  right: 120px;
  font-size: 220px;
  color: #ff7a00;
  opacity: 0.04;
  z-index: 0;
}

/* Ensure content above shapes */
.why-choose-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.why-title {
  font-size: 36px;
  font-weight: 800;
}

.why-title span {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-subtitle {
  margin-top: 15px;
  color: #ddd;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Glass Cards */
.why-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px 25px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.4s ease;
  text-align: center;
  height: 100%;
}

.why-card i {
  font-size: 40px;
  margin-bottom: 18px;
  color: #ffb347;
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: #eee;
}

/* Hover Effect */
.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255,122,0,0.2);
  border-color: rgba(255,179,71,0.5);
}

/* Responsive */
@media (max-width: 991px) {
  .why-title {
    font-size: 28px;
  }

  .why-card {
    padding: 25px 20px;
  }
}

/* FAQ SECTION */
.city-faq-section {
  padding: 100px 0;
  background: #f9f9f9;
}

/* Header */
.faq-header {
  margin-bottom: 50px;
}

.faq-title {
  font-size: 34px;
  font-weight: 800;
}

.faq-title span {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  color: #666;
  margin-top: 15px;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  padding: 18px 20px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  color: #fff;
}

.faq-accordion .accordion-body {
  background: #fff;
  padding: 20px;
  color: #555;
}

/* Remove default arrow background */
.accordion-button:focus {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-title {
    font-size: 26px;
  }
}

/* BOOKING CTA SECTION */
.booking-cta-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
  overflow: hidden;
}

/* Background Shapes */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.shape-left {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.25);
  top: -120px;
  left: -120px;
}

.shape-right {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -150px;
  right: -150px;
}

.booking-cta-section .container {
  position: relative;
  z-index: 2;
}

/* Title */
.cta-title {
  font-size: 40px;
  font-weight: 800;
}

.cta-title span {
  color: #2b1100;
}

.cta-subtitle {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.95;
}

/* Buttons */
.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-call,
.btn-whatsapp {
  padding: 14px 25px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-call {
  background: #2b1100;
  color: #fff;
}

.btn-call:hover {
  background: #000;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* Booking Form */
.booking-form-box {
  background: #f4f4f4;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  color: #333;
}

.form-title {
  font-weight: 800;
  color: #ff7a00;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Modern Input Group */
.input-group-modern {
  position: relative;
  margin-bottom: 18px;
}

.input-group-modern i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
}

.input-group-modern input {
  width: 100%;
  height: 55px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  padding-left: 50px;
  background: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}

.input-group-modern input:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}

/* Modern Button */
.btn-enquire-modern {
  height: 55px;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff7a00, #ff9d2f);
  color: #fff;
  transition: 0.3s ease;
  font-size: 16px;
}

.btn-enquire-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,122,0,0.35);
}
.booking-form-box h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ff7a00;
}

.btn-book-now {
  height: 50px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  color: #fff;
  transition: 0.3s ease;
}

.btn-book-now:hover {
  background: #e66a00;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .booking-form-box {
    margin-top: 40px;
  }
}