/* ====== Colors ====== */
:root {
  --primary-color: #f5b753;
  --dark: #000000;
  --white: #fff;
  --grey: #808080;
  --bg-color: #055bac0c;
}

/* ====== Font ====== */
* {
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--primary-color);
}

strong {
  color: var(--secondary-color);
  font-weight: 600;
}

::selection {
  background-color: var(--primary-color);
  color: var(--dark);
}

a:hover {
  text-decoration: none;
}

/* ====== header-section-start ====== */

/*========== menu bar =========*/

.header-section .menu-bar {
  width: 100%;
  background-color: #212121;
  border-bottom: 1px solid rgba(255, 255, 255, 0.096);
  position: relative;
  padding: 10px 0px;
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.5s ease-in;
  background-color: #212121;
  padding: 0;
}

.header-section .navbar-brand img {
  height: 60px;
}

.header-section .menu-bar .nav-link {
  margin: 0px 3px;
  text-transform: capitalize;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.5s ease-in;
}

.header-section .nav-link::after {
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s ease-in;
}

.header-section .nav-link:hover:after {
  width: 100%;
  transition: 0.3s ease-in;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .navbar-toggler {
  background-color: #f5b753;
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 3px 10px;
}

.header-section .navbar-toggler i {
  line-height: 30px;
}

.header-section .offcanvas-header {
  background-color: var(--secondary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 15px;
  padding: 3px 8px;
}

.header-section .conatact-btn i {
  font-size: 23px;
  margin-right: 5px;
}

.header-section .franchise-btn {
  color: var(--dark);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  margin: 0px 10px;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 15px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .navbar {
  padding: 0;
}

/* === header-section-end === */

/* === hero-section-start === */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../images/banner.png);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero .hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero .hero-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .hero-subheading {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .cta-button {
  display: inline-block;
  background-color: #f5b753;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:hover {
  background-color: #e0a645;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero .hero-heading {
    font-size: 2.5rem;
  }

  .hero .hero-subheading {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero .hero-heading {
    font-size: 2rem;
  }

  .hero .hero-subheading {
    font-size: 1rem;
  }

  .hero .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* === hero-section-end === */

/* === about-section-start === */

#about-section {
  padding: 90px 10px;
}

#about-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

#about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--text-dark);
}

#about-section .about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

#about-section .feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

#about-section .feature-icon {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

#about-section .feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

#about-section .feature-text p {
  font-size: 0.9rem;
  color: var(--text-lighter);
}

#about-section .collage-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#about-section .collage-img:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  #about-section .section-title {
    font-size: 2rem;
  }

  #about-section .image-collage {
    height: 500px;
  }
}

/* === about-section-end === */

/* === service-section-start === */

#services-section {
  padding: 90px 0;
  background-color: #f2f6fa;
}

#services-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

#services-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--dark-color);
  text-align: center;
}

#services-section .service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  border: none;
}

#services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#services-section img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

#services-section .service-content {
  padding: 25px;
}

#services-section .service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}

#services-section .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

#services-section .service-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

#services-section .call-btn {
  font-weight: 500;
  border-radius: 5px;
  display: inline-flex;
  padding: 8px 10px;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: var(--dark);
  text-decoration: none;
  font-size: 16px;
}

#services-section .call-btn i {
  margin: 5px 8px 0px 0px;
}

#services-section .service-btn {
  font-weight: 500;
  border-radius: 50px;
  padding: 15px 25px;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
}

#services-section .service-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #services-section {
    padding: 60px 0;
  }

  #services-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

/*=== service-section-start === */

/* === car-type-section-start === */

#cartype-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#cartype-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    center/cover;
  opacity: 0.1;
  z-index: 0;
}

#cartype-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

#cartype-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

#cartype-section .safety-motto {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
}

#cartype-section .service-category {
  background: #212529;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

#cartype-section .service-category:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#cartype-section .category-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #000;
  font-size: 1.8rem;
}

#cartype-section .category-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

#cartype-section .vehicle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#cartype-section .vehicle-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

#cartype-section .vehicle-list li:last-child {
  border-bottom: none;
}

#cartype-section .vehicle-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

#cartype-section .coming-soon {
  display: inline-block;
  background: rgba(245, 183, 83, 0.2);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
}

#cartype-section .luxury-badge {
  display: inline-block;
  background: linear-gradient(45deg, #f5b753, #ff9d00);
  color: #000;
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
}

#cartype-section .normal-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 10px;
}

#cartype-section .booking-btn {
  font-weight: 500;
  border-radius: 50px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
}

#cartype-section .booking-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #cartype-section {
    padding: 60px 0;
  }

  #cartype-section .section-title {
    font-size: 2rem;
  }

  #cartype-section .safety-motto {
    font-size: 1.1rem;
  }
}

/* === car-type-section-end === */

/* ===why-choose-section-start=== */

.why-choose-section {
  padding: 90px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.why-choose-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.why-choose-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  text-align: center;
}

.why-choose-section .usp-card {
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1;
  background-color: #212529;
}

.why-choose-section .usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.why-choose-section .usp-card:hover {
  transform: translateY(-10px);
}

.why-choose-section .usp-card:hover::before {
  transform: scaleX(1);
}

.why-choose-section .usp-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 183, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.why-choose-section .usp-card:hover .usp-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.why-choose-section .usp-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.why-choose-section .usp-description {
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
}

.why-choose-section .stats-section {
  background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
  padding: 80px 0;
  margin-top: 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.why-choose-section .stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    center/cover;
  opacity: 0.1;
  z-index: 0;
}

.why-choose-section .stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-choose-section .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.why-choose-section .stat-label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-section .book-btn {
  font-weight: 500;
  border-radius: 50px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-choose-section .book-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .why-choose-section .usp-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .why-choose-section .stats-section {
    padding: 60px 0;
    margin-top: 60px;
  }
}

/*=== why-choose-section-end === */

/* ===testimonial-section-start ===*/

.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
  color: white;
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    center/cover;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

.testimonials-section .testimonial-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 30px;
  margin: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonials-section .testimonial-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonials-section .stars {
  margin-bottom: 20px;
  position: relative;
}

.testimonials-section .rate {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonials-section .shap-left-top,
.testimonials-section .shap-right-bottom {
  position: absolute;
  width: 30px;
  height: 30px;
}

.testimonials-section .shap-left-top {
  top: 0;
  left: 0;
}

.testimonials-section .shap-right-bottom {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.testimonials-section .shap-left-top svg,
.testimonials-section .shap-right-bottom svg {
  width: 100%;
  height: 100%;
}

.testimonials-section .shap-left-top path,
.testimonials-section .shap-right-bottom path {
  fill: var(--primary-color);
  opacity: 0.3;
}

.testimonials-section .fa-quote-left {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
}

.testimonials-section .testimonial-text {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonials-section .testimonial-info {
  display: flex;
  align-items: center;
}

.testimonials-section .img-curv {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials-section .img-curv .img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-section .img-curv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section .testimonial-details {
  margin-left: 20px;
}

.testimonials-section .testimonial-details h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.testimonials-section .testimonial-details p {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}

/* Owl Carousel Customizations */
.testimonials-section .owl-carousel .owl-stage-outer {
  padding: 20px 0;
}

.testimonials-section .owl-carousel .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.testimonials-section .owl-carousel .owl-nav button {
  background: var(--primary-color) !important;
  color: #000 !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-section .owl-carousel .owl-nav button:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.1);
}

.testimonials-section .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonials-section .owl-carousel .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.testimonials-section .owl-carousel .owl-dot.active {
  background: var(--primary-color) !important;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonials-section .testimonial-item {
    padding: 30px 20px;
  }
}

/*=== testimonial-section-end === */

/* ===booking-cta-section start=== */

.booking-cta-section {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(245, 183, 83, 0.1) 0%,
    transparent 50%
  );
  z-index: 0;
}

.booking-cta-section .cta-content {
  position: relative;
  z-index: 1;
}

.booking-cta-section .cta-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.booking-cta-section .cta-subheading {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #ddd;
}

.booking-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-cta-section .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.booking-cta-section .btn-primary:hover {
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.booking-cta-section .btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.booking-cta-section .btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.booking-cta-section .features-highlight {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.booking-cta-section .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.booking-cta-section .feature-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.booking-cta-section .feature-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animation for the CTA */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-cta-section .cta-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Floating car animation */
.booking-cta-section .floating-car {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 400px;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .booking-cta-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .booking-cta-section .cta-heading {
    font-size: 2.5rem;
  }

  .booking-cta-section .cta-subheading {
    font-size: 1.1rem;
  }

  .booking-cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .booking-cta-section .btn-primary,
  .booking-cta-section .btn-outline-light {
    width: 100%;
    max-width: 280px;
  }

  .booking-cta-section.features-highlight {
    gap: 20px;
  }

  .booking-cta-section .feature-item {
    padding: 8px 15px;
  }

  .booking-cta-section .floating-car {
    width: 250px;
    right: 5%;
  }
}

@media (max-width: 576px) {
  .booking-cta-section .cta-heading {
    font-size: 2rem;
  }

  .booking-cta-section .features-highlight {
    flex-direction: column;
    align-items: center;
  }

  .booking-cta-section .floating-car {
    display: none;
  }
}

/* ===booking-cta-section-end=== */

#contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
  color: white;
}

#contact-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: white;
  text-align: center;
}

#contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

#contact-section .contact-info,
#contact-section .contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact-section .info-title,
#contact-section .form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
}

#contact-section .contact-details {
  margin-bottom: 30px;
}

#contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

#contact-section .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: #000;
  font-size: 1.2rem;
}

#contact-section .contact-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

#contact-section .contact-text p {
  color: #ddd;
  margin: 0;
}

#contact-section .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

#contact-section .whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

#contact-section .whatsapp-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

#contact-section .form-group {
  margin-bottom: 20px;
}

#contact-section .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: white;
}

#contact-section .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgb(0, 0, 0);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

#contact-section .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(245, 183, 83, 0.2);
}

#contact-section .form-control::placeholder {
  color: rgb(0, 0, 0);
}

#contact-section textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

#contact-section .submit-btn {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

#contact-section .submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#contact-section .form-note {
  color: #ddd;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 992px) {
  #contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #contact-section {
    padding: 60px 0;
  }

  #contact-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  #contact-section .contact-info,
  #contact-section .contact-form {
    padding: 25px;
  }

  #contact-section .contact-icon {
    margin-right: 15px;
    margin-bottom: 10px;
  }
}

/* === contact-section-end === */

/* === fleet-section-start === */

#fleet-section {
  padding: 90px 0;
  background: #f2f6fa;
}

#fleet-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

#fleet-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

#fleet-section .safety-motto {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-align: center;
  font-style: italic;
}

#fleet-section .filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

#fleet-section .filter-tab {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

#fleet-section .filter-tab:hover {
  border-color: var(--primary-color);
  color: var(--dark-color);
}

#fleet-section .filter-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

#fleet-section .cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

#fleet-section .car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

#fleet-section .car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#fleet-section .car-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

#fleet-section .car-content {
  padding: 25px;
}

#fleet-section .car-category {
  display: inline-block;
  background: rgba(245, 183, 83, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

#fleet-section .car-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

#fleet-section .car-features {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

#fleet-section .car-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #666;
}

#fleet-section .car-feature i {
  color: var(--primary-color);
}

#fleet-section .car-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

#fleet-section .book-btn {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  display: inline-flex;
}

#fleet-section .book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

#fleet-section .coming-soon-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 30px;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
}

#fleet-section .coming-soon-icon {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 20px;
}

#fleet-section .coming-soon-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 10px;
}

#fleet-section .coming-soon-subtext {
  color: #868e96;
}

@media (max-width: 768px) {
  #fleet-section {
    padding: 60px 0;
  }

  #fleet-section .section-title {
    font-size: 2rem;
  }

  #fleet-section .filter-tabs {
    gap: 10px;
  }

  #fleet-section .filter-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  #fleet-section .coming-soon-icon {
    .cars-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* === fleet-section-end === */

/* ===footer-section-start=== */

.footer {
  padding-top: 45px;
  background-color: #212121;
  position: relative;
}

.footer .footer-item {
  position: relative;
  margin-bottom: 40px;
}

.footer .footer-item img {
  width: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.footer .footer-item h2 {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 600;
  padding: 15px 0px 15px 0px;
  margin: 0;
  position: relative;
}

.footer .footer-item h3 {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 600;
  padding-top: 15px;
  margin: 0;
  position: relative;
}

.footer .footer-item h2::before {
  content: "";
  position: absolute;
  bottom: 3px;
  height: 4px;
  width: 50px;
  background-color: var(--secondary-color);
}

.footer .footer-item p {
  color: var(--white);
  font-size: 15px;
  padding: 20px 20px 0px 0px;
  margin: 0;
}

.footer .footer-item .social-icon {
  display: flex;
  list-style: none;
  margin-top: 15px;
}

.footer .footer-item .social-icon li {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--primary-color);
  margin-right: 10px;
  text-align: center;
  font-size: 19px;
  line-height: 40px;
  transition: 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.432);
}

.footer .footer-item .social-icon li:hover {
  background-color: var(--dark);
  transition: 0.5s;
  transform: translateY(-5px);
}

.footer .footer-item .social-icon li:hover a {
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .social-icon li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .about-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .about-list li {
  margin: 10px 0px;
  font-size: 15px;
  transition: 1s;
}

.footer-item .about-list li:hover {
  transition: 1s;
  padding-left: 5px;
}

.footer .footer-item .about-list li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .about-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .service-links {
  list-style: none;
  padding: 0;
}

.footer .footer-item .service-links li {
  margin: 15px 0px;
  font-size: 15px;
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .service-links li:hover {
  padding-left: 5px;
  transition: 1s;
}

.footer .footer-item .service-links li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .service-links li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .contact-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .contact-list li {
  margin: 15px 0px;
  font-size: 15px;
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .contact-list li:hover {
  padding-left: 5px;
  transition: 1s;
}

.footer .footer-item .contact-list li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .contact-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-main {
  border-top: 1px solid white;
  margin-top: 25px;
}

.footer .copy-right {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer .copy-right p {
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
}

.footer .copy-right a {
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
}

.footer .top-button .top {
  background-color: var(--primary-color);
  height: 35px;
  width: 37px;
  border: none;
  border-radius: 8px;
  color: var(--secondary-color);
  right: 1em;
  bottom: 0;
  position: fixed;
  font-size: 25px;
  line-height: 36px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: 1s;
  border: 1px solid var(--secondary-color);
}

.footer .calling-button .call-btn {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: var(--secondary-color);
  right: 1.1em;
  bottom: 11.5rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: 5s;
  border: 1px solid var(--secondary-color);
}

.footer .whatsapp-button .whatsapp-chat {
  background-color: #08bf3f;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1.1em;
  bottom: 7.5rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: ease-in-out 1s;
}

/* ===footer-section-end=== */

/* ===privacy-policy-section-start=== */
.privacy-section {
  padding: 80px 10px;
  background-color: var(--bg-light);
}

.privacy-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.privacy-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.privacy-section .section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.privacy-section .policy-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section .policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section .policy-number {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  margin-right: 15px;
}

.privacy-section .policy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.privacy-section .policy-content {
  color: var(--text-light);
  line-height: 1.7;
}

.privacy-section .policy-list {
  padding-left: 20px;
  margin-top: 15px;
}

.privacy-section .policy-list li {
  margin-bottom: 10px;
  position: relative;
}

.privacy-section .policy-list li::marker {
  color: var(--primary-color);
}

.privacy-section .highlight-box {
  background-color: var(--primary-light);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid var(--primary-color);
}

.privacy-section .contact-info {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.privacy-section .contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.privacy-section .contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.privacy-section .contact-email {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.privacy-section .contact-email:hover {
  text-decoration: underline;
}

.privacy-section .effective-date {
  text-align: center;
  font-style: italic;
  color: var(--text-lighter);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 60px 0;
  }

  .privacy-section .section-title {
    font-size: 2rem;
  }

  .privacy-section .policy-card {
    padding: 20px;
  }
}

/* ===privacy-policy-section-end=== */

/* ===terms-conditions-section-start=== */
.terms-section {
  padding: 80px 10px;
  background-color: white;
}

.terms-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.terms-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.terms-section .section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.terms-section .intro-box {
  background-color: var(--primary-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 40px;
}

.terms-section .terms-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section .terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-section .terms-number {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  margin-right: 15px;
}

.terms-section .terms-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.terms-section .terms-content {
  color: var(--text-light);
  line-height: 1.7;
}

.terms-section .terms-list {
  padding-left: 20px;
  margin-top: 15px;
}

.terms-section .terms-list li {
  margin-bottom: 10px;
  position: relative;
}

.terms-section .terms-list li::marker {
  color: var(--primary-color);
}

.terms-section .highlight-box {
  background-color: var(--primary-light);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.terms-section .sub-list {
  padding-left: 25px;
  margin-top: 10px;
}

.terms-section .sub-list li {
  margin-bottom: 8px;
}

.terms-section .contact-info {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.terms-section .contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.terms-section .contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.terms-section .contact-details {
  font-size: 1.1rem;
  color: var(--text-light);
}

.terms-section .effective-date {
  text-align: center;
  font-style: italic;
  color: var(--text-lighter);
  margin-bottom: 40px;
}

.terms-section .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.terms-section .back-to-top:hover {
  background-color: #e0a23a;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .terms-section {
    padding: 60px 0;
  }

  .terms-section .section-title {
    font-size: 2rem;
  }

  .terms-section .terms-card {
    padding: 20px;
  }
}

/* ===terms-conditions-section-end=== */

/* === refund-section-start === */

.refund-section {
  padding: 80px 10px;
  background-color: var(--bg-light);
}

.refund-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.refund-section .section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.refund-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.refund-section .section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.refund-section .intro-box {
  background-color: var(--primary-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 40px;
}

.refund-section .policy-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.refund-section .policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.refund-section .policy-number {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  margin-right: 15px;
}

.refund-section .policy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.refund-section .policy-content {
  color: var(--text-light);
  line-height: 1.7;
}

.refund-section .policy-list {
  padding-left: 20px;
  margin-top: 15px;
}

.refund-section .policy-list li {
  margin-bottom: 10px;
  position: relative;
}

.refund-section .policy-list li::marker {
  color: var(--primary-color);
}

.refund-section .highlight-box {
  background-color: var(--primary-light);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid var(--primary-color);
}

.refund-section .cancellation-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.refund-section .cancellation-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.refund-section .cancellation-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.refund-section .cancellation-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.refund-section .cancellation-table tr:hover {
  background-color: var(--primary-light);
}

.refund-section .contact-info {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.refund-section .contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.refund-section .contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.refund-section .contact-details {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.refund-section .whatsapp-link {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.refund-section .whatsapp-link:hover {
  background-color: #128c7e;
  color: white;
  transform: translateY(-2px);
}

.refund-section .effective-date {
  text-align: center;
  font-style: italic;
  color: var(--text-lighter);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .refund-section .refund-section {
    padding: 60px 0;
  }

  .refund-section .section-title {
    font-size: 2rem;
  }

  .refund-section .policy-card {
    padding: 20px;
  }

  .refund-section .cancellation-table {
    font-size: 0.9rem;
  }

  .refund-section .cancellation-table th,
  .refund-section .cancellation-table td {
    padding: 10px;
  }
}
/* === refund-section-end === */
