/* Import professional fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
}

/* Global Responsive Font Sizing */
html {
  font-size: 16px; /* Base font size */
}

@media (max-width: 1400px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

/* Enhanced Responsive Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 5rem);
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Enhanced Responsive Grid */
.about-grid,
.location-grid,
.services-grid,
.pricing-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1rem, 3vw, 2rem);
}

/* Responsive Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

/* Responsive Spacing */
section {
  padding: 3rem 0;
}

.card,
.pricing-card,
.city-service {
  padding: clamp(1.5rem, 3vw, 3rem);
}

/* Responsive Grid Breakpoints */
@media (min-width: 768px) {
  .service-highlights {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .location-highlights {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .logo h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  nav ul {
    gap: 1rem;
  }

  nav ul li a {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    padding: 0.3rem 0.8rem;
  }
}

/* Responsive Cards */
.highlight-item,
.city-service,
.pricing-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Modern Service Features Section */
.service-features {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 135, 81, 0.08);
}

.service-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
  opacity: 0.8;
}

.service-features h4 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #06249c, #2b2b86);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-features h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06249c, transparent);
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-features li {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 135, 81, 0.05);
}

.service-features li::before {
  content: "✓";
  min-width: 24px;
  height: 24px;
  background: #06249c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-color: rgba(0, 135, 81, 0.15);
}

.service-features li:hover::before {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 135, 81, 0.2);
}

/* Glass effect for modern look */
.service-features::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.5)
  );
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-features {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem;
  }

  .service-features h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .service-features ul {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-features li {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Responsive Service Areas */
.service-areas {
  gap: clamp(0.5rem, 1vw, 1rem);
}

.service-areas span {
  padding: clamp(0.5rem, 1vw, 0.8rem) clamp(0.8rem, 1.5vw, 1.5rem);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
}

/* Responsive Pricing */
.price {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.duration {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* Responsive Reviews */
.review-content {
  padding: clamp(1rem, 2vw, 2rem);
}

.reviewer-name {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.review-text {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* Responsive Footer */

/* Fluid Container Padding */
.about-container,
.pricing-container,
.location-grid,
.services-grid {
  padding: 0 clamp(1rem, 5vw, 5%);
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #06249c;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo h1 {
  color: #06249c;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: #f6f7f8;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f2fdf9;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
#hero {
  margin-top: 75px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  position: relative;
}

#hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: -0.5px;
}

#hero h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  opacity: 0.9;
  color: #f2fdf9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary {
  background-color: #06249c;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 135, 81, 0.3);
}

.primary:hover {
  background-color: #20298c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 135, 81, 0.4);
}

.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background-color: white;
  color: #06249c;
  transform: translateY(-2px);
}

/* Grid Layouts */
.location-grid,
.car-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Modern Location Cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 135, 81, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 135, 81, 0.2);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card h3 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.location-card h3::after {
  content: "📍";
  font-size: 1.2rem;
  margin-left: 0.5rem;
  opacity: 0.8;
}

.location-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #06249c;
  border-radius: 50%;
  opacity: 0.6;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 135, 81, 0.03);
  border-radius: 12px;
  margin-top: auto;
}

.location-info svg {
  width: 24px;
  height: 24px;
  color: #06249c;
}

.location-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.location-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06249c;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(0, 135, 81, 0.05);
  transition: all 0.3s ease;
}

.location-contact a:hover {
  background: #06249c;
  color: white;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .location-grid {
    padding: 1rem;
    gap: 1.5rem;
  }

  .location-card {
    padding: 1.8rem;
  }

  .location-card h3 {
    font-size: 1.5rem;
  }

  .location-card p {
    font-size: 0.9rem;
  }

  .location-info {
    padding: 0.8rem;
  }
}

/* Cards */
.car-card,
.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #06249c;
  position: relative;
  overflow: hidden;
}

.car-card h3,
.location-card h3,
.service-card h3 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Section Styles */
section h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 3rem;
  color: #06249c;
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
}

/* Footer */
footer {
  background-color: #06249c;
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #06249c 0%,
    #06249c 30%,
    white 30%,
    white 70%,
    #06249c 70%,
    #06249c 100%
  );
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: rgba(238, 234, 234, 0.959);
}

.social-links a:hover {
  background: rgba(236, 234, 234, 0.897);
  transform: translateY(-2px);
}

/* Price Tags */
.car-card p:last-child {
  color: #06249c;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  background: rgba(0, 135, 81, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

/* Enhanced About Us Section */
#about-us {
  background: #fff;
  padding: 3rem 0;
  position: relative;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.about-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: center;
}

.about-content > p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 5rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Service Highlights */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 2rem auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  max-width: 1200px;
}

.highlight-item {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: white;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 135, 81, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: #06249c;
}

.highlight-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: #06249c;
  font-weight: 700;
  line-height: 1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(45deg, #06249c, #2b2b86);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-item p {
  color: #2c3e50;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

/* Years text styling */
.highlight-item p.years {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #666;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .highlight-item {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* Add this to your existing responsive font sizing */
@media (max-width: 480px) {
  .highlight-number {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .highlight-item p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }
}

/* Modern Location Highlights Section */
.location-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
}

.city-service {
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(44, 62, 80, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.city-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 135, 81, 0.2);
}

.city-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.city-header h5 {
  font-size: 1.6rem;
  color: #2c3e50;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.rating {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 135, 81, 0.06);
  color: #06249c;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  gap: 0.3rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.service-areas span {
  padding: 0.4rem 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(44, 62, 80, 0.08);
}

.service-areas span:hover {
  background: rgba(0, 135, 81, 0.05);
  color: #06249c;
  border-color: rgba(0, 135, 81, 0.1);
}

.city-service p {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 1rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.city-service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.city-service ul li {
  font-size: 0.85rem;
  color: #555;
  padding: 0.6rem 0.8rem;
  background: rgba(248, 249, 250, 0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s ease;
}

.city-service ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #06249c;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='12' height='12'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.city-service ul li:hover {
  background: rgba(0, 135, 81, 0.05);
  transform: translateX(5px);
}

/* Glass morphism effect */
.city-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 16px 16px 0 0;
  z-index: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .city-service {
    padding: 1.5rem;
  }

  .city-header h5 {
    font-size: 1.4rem;
  }

  .service-areas span {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .city-service ul li {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* About Image Section Improvements */
.about-image-section {
  position: sticky;
  top: 100px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem; /* Increase spacing between elements */
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  margin-bottom: 3.5rem; /* Add space for trust badges */
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

/* Enhanced Trust Badges */
.trust-badges {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping for better spacing */
  gap: 1.5rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
  z-index: 2;
  width: calc(100% - 2rem); /* Account for container padding */
  max-width: 600px; /* Increased max-width to fit all spans */
  margin-left: auto;
  margin-right: auto;
}

.trust-badges span {
  flex: 1 1 auto; /* Allow flexible sizing */
  min-width: max-content; /* Prevent text breaking */
  color: #06249c;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(0, 135, 81, 0.05);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trust-badges span::before {
  content: "✓";
  background: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 135, 81, 0.1);
}

.trust-badges span:hover {
  background: rgba(0, 135, 81, 0.1);
  transform: translateY(-2px);
}

/* Enhanced Reviews Section */
#reviews {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
  position: relative;
}

.customer-reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.review-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.overall-rating {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 135, 81, 0.05);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-text {
  color: #06249c;
  font-weight: 600;
  font-size: 1rem;
}

.reviews-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 2rem 0;
}

.customer-review {
  display: none;
  opacity: 0;
  transition: all 0.5s ease;
}

.customer-review.active {
  display: block;
  opacity: 1;
}

.review-content {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid rgba(0, 135, 81, 0.1);
  transition: all 0.3s ease;
}

.review-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reviewer-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #06249c;
  padding: 3px;
  background: white;
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.reviewer-title {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

.review-rating {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.review-text::before,
.review-text::after {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: #06249c;
  opacity: 0.1;
  position: absolute;
  line-height: 1;
}

.review-text::before {
  content: '"';
  left: -1rem;
  top: -1rem;
}

.review-text::after {
  content: '"';
  right: -1rem;
  bottom: -2rem;
}

.review-metadata {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.review-date {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-date::before {
  content: "✓";
  color: #06249c;
  font-weight: bold;
  background: rgba(0, 135, 81, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
}

.review-service {
  background: rgba(0, 135, 81, 0.08);
  color: #06249c;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.review-service:hover {
  background: rgba(0, 135, 81, 0.12);
  transform: translateY(-2px);
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.review-nav {
  background: white;
  border: 2px solid rgba(0, 135, 81, 0.2);
  color: #06249c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-nav:hover {
  background: #06249c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 135, 81, 0.2);
}

.review-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: #ccc;
}

.dot.active {
  background: #06249c;
  transform: scale(1.2);
  border-color: rgba(0, 135, 81, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-content {
    padding: 2rem;
  }

  .reviewer-image {
    width: 60px;
    height: 60px;
  }

  .review-text {
    font-size: 1rem;
    padding: 0;
  }

  .review-text::before,
  .review-text::after {
    font-size: 3rem;
  }

  .review-metadata {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .review-controls {
    margin-top: 1.5rem;
    gap: 2rem;
  }

  .review-nav {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Modern Trust Section */
#trust-section {
  padding: 5rem 0;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-header h2 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.trust-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
  border-radius: 2px;
}

.trust-header p {
  color: #666;
  font-size: 1.1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trust-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.08);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 135, 81, 0.2);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 135, 81, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06249c;
  transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
  background: #06249c;
  color: white;
  transform: scale(1.1);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
}

.trust-card h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 135, 81, 0.05);
  border-radius: 30px;
  color: #2c3e50;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(0, 135, 81, 0.1);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #trust-section {
    padding: 3rem 0;
  }

  .trust-header h2 {
    font-size: 2rem;
  }

  .trust-card {
    padding: 1.8rem;
  }

  .trust-badge {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Enhanced Pricing Section Styles */
.pricing-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #06249c;
}

.car-category {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-top: 15px; /* Added padding to prevent overlap */
}

.car-category h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.car-model {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 135, 81, 0.08);
  color: #06249c;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(0, 135, 81, 0.05);
}

.duration {
  color: #2c3e50;
  font-weight: 500;
}

.price {
  color: #06249c;
  font-weight: 600;
  font-size: 1.1rem;
}

.featured {
  position: relative;
  border: 2px solid #06249c;
  margin-top: 25px; /* Increased margin-top */
}

.featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #06249c;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 2; /* Increased z-index */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: max-content; /* Ensure tag width fits content */
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #06249c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.031 6.172c-3.181 0-5.767 2.586-5.768 5.766-.001 1.298.38 2.27 1.019 3.287l-.582 2.128 2.182-.573c.978.58 1.911.928 3.145.929 3.178 0 5.767-2.587 5.768-5.766.001-3.187-2.575-5.77-5.764-5.771z'/%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #20298c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 135, 81, 0.2);
  padding-left: 2.5rem;
}

.book-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.book-btn.featured {
  background: linear-gradient(45deg, #06249c, #2b2b86);
  box-shadow: 0 5px 20px rgba(0, 135, 81, 0.15);
}

.book-btn.featured:hover {
  background: linear-gradient(45deg, #20298c, #06249c);
  box-shadow: 0 8px 25px rgba(0, 135, 81, 0.25);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .car-category h3 {
    font-size: 1.6rem;
  }

  .price-item {
    padding: 0.8rem;
  }

  .featured {
    margin-top: 20px;
  }

  .featured-tag {
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    top: -12px;
  }

  .car-category {
    padding-top: 10px;
  }

  .book-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .book-btn:hover {
    padding-left: 2rem;
  }

  .book-btn::before {
    width: 16px;
    height: 16px;
  }
}

/* Mobile Navigation Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #06249c;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #06249c;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Menu Open State */
.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  nav.menu-open ul {
    right: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  nav ul li a:hover {
    background: rgba(0, 135, 81, 0.05);
  }

  nav ul li a::after {
    display: none;
  }
}

/* Modern Contact Section */
#contact {
  padding: 4rem 0;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.contact-container h2 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #06249c;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 135, 81, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #06249c;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: #06249c;
  color: white;
  transform: scale(1.1);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-link {
  color: #06249c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  background: rgba(0, 135, 81, 0.05);
}

.contact-link:hover {
  background: #06249c;
  color: white;
  transform: translateY(-2px);
}

.whatsapp .contact-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.whatsapp:hover .contact-icon {
  background: #25d366;
  color: white;
}

.whatsapp .contact-link {
  color: #25d366;
  background: rgba(37, 211, 102, 0.05);
}

.whatsapp .contact-link:hover {
  background: #25d366;
  color: white;
}

.contact-hours {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.contact-hours h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-hours p {
  color: #666;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 25px;
    height: 25px;
  }

  .contact-link {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Bus Hire Section Styles */
#bus-hire {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
}

#bus-hire h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-family: "Playfair Display", serif;
}

#bus-hire .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

#bus-hire .pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#bus-hire .car-category {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#bus-hire .car-model {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 135, 81, 0.05);
  color: #06249c;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

#bus-hire .price-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#bus-hire .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 12px;
}

#bus-hire .price {
  font-weight: 600;
  color: #06249c;
}

/* Featured cards */
#bus-hire .pricing-card.featured {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 135, 81, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #bus-hire {
    padding: 2rem 0;
  }

  #bus-hire .pricing-card {
    padding: 1.5rem;
  }

  #bus-hire .price-item {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}

/* Bus Service Card Enhancement */
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #06249c, #2b2b86);
  font-size: 1.8rem;
}

.service-card:nth-child(2):hover {
  border-color: #06249c;
}

.service-card:nth-child(2):hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Modern Services Section */
#services {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
}

#services h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
}

#services h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 135, 81, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card ul li {
  color: #2c3e50;
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #06249c;
  border-radius: 50%;
  opacity: 0.6;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #06249c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-btn:hover {
  background: #20298c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 135, 81, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #services {
    padding: 3rem 0;
  }

  .services-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* FAQ Section Styles */
#car-hire-faq {
  padding: 5rem 0;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#car-hire-faq h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
}

#car-hire-faq h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.08);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 135, 81, 0.2);
}

.faq-item h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-left: 2rem;
}

.faq-item h3::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #06249c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.faq-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #car-hire-faq {
    padding: 3rem 0;
  }

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

  .faq-item {
    padding: 1.8rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
    padding-left: 1.8rem;
  }

  .faq-item h3::before {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .faq-item p {
    padding-left: 1.8rem;
    font-size: 0.9rem;
  }
}

/* Blog Section Styles */
#blog-section {
  padding: 5rem 0;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#blog-section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.blog-intro {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.blog-post.featured {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 135, 81, 0.08);
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: #666;
  font-size: 0.9rem;
  margin: 1rem 0 2rem;
}

.post-content h4 {
  color: #2c3e50;
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.pricing-table {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0;
}

.pricing-table h5 {
  color: #06249c;
  margin-bottom: 1rem;
}

.pricing-table ul {
  list-style: none;
  padding: 0;
}

.pricing-table li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #2c3e50;
}

.city-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.city-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
}

.city-info h5 {
  color: #06249c;
  margin-bottom: 1rem;
}

.city-info ul {
  list-style: none;
  padding: 0;
}

.city-info li {
  padding: 0.5rem 0;
  color: #2c3e50;
  font-size: 0.95rem;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.service-category {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
}

.service-category h5 {
  color: #06249c;
  margin-bottom: 1rem;
}

.price-note {
  color: #06249c;
  font-weight: 500;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.rental-tips {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.rental-tips ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.rental-tips li {
  padding-left: 1.5rem;
  position: relative;
  color: #2c3e50;
}

.rental-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #06249c;
  font-weight: bold;
}

.related-posts {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 135, 81, 0.08);
}

.related-posts h4 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.post-grid {
  display: grid;
  gap: 1.5rem;
}

.mini-post {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.mini-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mini-post h5 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.mini-post p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: #06249c;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #20298c;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #blog-section {
    padding: 3rem 0;
  }

  .blog-post.featured,
  .related-posts {
    padding: 1.5rem;
  }

  .city-services,
  .service-highlights {
    grid-template-columns: 1fr;
  }

  .rental-tips ul {
    grid-template-columns: 1fr;
  }
}

/* ===== ENHANCED ADS SECTION ===== */
.ads-section {
  background-color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ads-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06249c, #2b2b86);
}

.ads-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1rem, 5vw, 5%);
}

.ad-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #2c3e50;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 135, 81, 0.05);
}

.ad-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 135, 81, 0.1);
}

.ad-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ad-card:hover .ad-image img {
  transform: scale(1.05);
}

.ad-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ad-card:hover .ad-image::after {
  opacity: 1;
}

.ad-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #06249c;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.ad-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ad-content h3 {
  color: #06249c;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.ad-content p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  text-decoration: none;
  border-bottom: none;
}

.ad-content p::after {
  display: none;
}

.ad-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #666;
}

.ad-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ad-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #06249c;
  border-radius: 50%;
  opacity: 0.6;
}

.ad-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ad-feature {
  background: rgba(0, 135, 81, 0.05);
  color: #06249c;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ad-feature:hover {
  background: rgba(0, 135, 81, 0.1);
  transform: translateY(-2px);
}

.ad-cta {
  color: #06249c;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  background: rgba(0, 135, 81, 0.05);
  width: fit-content;
}

.ad-card:hover .ad-cta {
  gap: 0.8rem;
  background: rgba(0, 135, 81, 0.1);
}

.ad-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  color: #06249c;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 135, 81, 0.1);
}

.ad-card:hover .ad-price {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Featured ad card */
.ad-card.featured {
  border: 2px solid #06249c;
  box-shadow: 0 15px 35px rgba(0, 135, 81, 0.1);
}

.ad-card.featured::before {
  content: "Featured";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #06249c;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for ads section */
@media (max-width: 992px) {
  .ads-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ads-section {
    padding: 3rem 0;
  }

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

  .ad-content h3 {
    font-size: 1.2rem;
  }

  .ad-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .ads-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .ad-image {
    height: 180px;
  }
}

/* Center the section-intro class */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Remove underlines from all text elements */
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
li,
.ad-content p,
.ad-cta,
.read-more {
  text-decoration: none !important;
  border-bottom: none !important;
}

a::after,
p::after,
h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6::after,
span::after,
li::after,
.ad-content p::after,
.ad-cta::after,
.read-more::after {
  display: none !important;
}

/* Ensure links are still visually distinct without underlines */
a:not(.btn):not(.ad-cta):not(.book-btn):not(.service-btn):not(
    .contact-link
  ):not(.read-more) {
  color: #06249c;
  font-weight: 500;
  transition: color 0.3s ease;
}

a:not(.btn):not(.ad-cta):not(.book-btn):not(.service-btn):not(
    .contact-link
  ):not(.read-more):hover {
  color: #20298c;
}

/* Modern Responsive Gallery for Our Fleet */
#carsGallery {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 60%, #e0f7ef 100%);
  position: relative;
  overflow: hidden;
}

#carsGallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 135, 81, 0.07) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  z-index: 0;
  pointer-events: none;
}

#carsGallery h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #06249c;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 135, 81, 0.1),
    0 1.5px 8px rgba(44, 62, 80, 0.08), 0 0.5px 1.5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.21, 1.02, 0.73, 1),
    box-shadow 0.35s cubic-bezier(0.21, 1.02, 0.73, 1);
  position: relative;
  perspective: 800px;
  border: 1.5px solid rgba(0, 135, 81, 0.08);
  /* Removed blur: backdrop-filter: blur(6px); */
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 135, 81, 0.04) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
  /* Remove glassmorphism overlay if desired */
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 24px rgba(0, 135, 81, 0.07);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
}

.car-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #06249c;
  margin: 1.2rem 0 0.5rem 0;
  text-align: center;
  letter-spacing: 0.5px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 135, 81, 0.07);
}

.gallery-item .book-btn {
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #06249c 60%, #2b2b86 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(0, 135, 81, 0.18);
  padding: 0.9rem 2.2rem;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.21, 1.02, 0.73, 1),
    box-shadow 0.25s cubic-bezier(0.21, 1.02, 0.73, 1), background 0.25s;
  z-index: 2;
  position: relative;
  will-change: transform;
  display: inline-block;
}

.gallery-item .book-btn:hover {
  transform: translateY(-4px) scale(1.06) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(0, 135, 81, 0.22);
  background: linear-gradient(90deg, #2b2b86 0%, #06249c 100%);
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.04) rotateY(6deg) skewY(-1deg);
  box-shadow: 0 16px 48px rgba(0, 135, 81, 0.18),
    0 2px 12px rgba(44, 62, 80, 0.1);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08) rotateY(4deg);
}

@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 180px;
  }
}
