/* @import url("https://fonts.cdnfonts.com/css/sf-pro-display"); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #dce0e0;
  color: #222;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Support for iOS safe areas (notched devices) */
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Ensure all images are responsive */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Improve touch scrolling on iOS */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  -webkit-touch-callout: none;
}

/* Better text selection on mobile */
::selection {
  background: rgba(37, 211, 102, 0.3);
  color: inherit;
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Better focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}

/* Skip to main content link (for accessibility) */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: #25d366;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* Prevent overflow on all sections */
section {
  padding: 2rem;
  margin: auto;
  overflow-x: hidden;
  width: 100%;
}

section.about-section,
section.testimonials-section,
section.contact-section {
  max-width: none;
  margin: 0;
}

/* Ensure all text doesn't overflow */
h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #021a4d;
  position: relative;
  padding-bottom: 1rem;
}

.about-section .section-title {
  color: #ffffff;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #021a4d, #25d366);
  border-radius: 2px;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
nav {
  background-color: rgba(0, 0, 0, 0.97);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  padding: 1rem 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin: 0 0.5rem;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  transition: all 0.3s;
  display: block;
}

.nav-menu li a:hover {
  background-color: #404545;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.98);
    width: 100%;
    max-width: 100%;
    text-align: center;
    transition: left 0.3s ease-in-out;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0.3rem 0;
    width: 100%;
  }

  .nav-menu li a {
    padding: 1rem 1.5rem;
    display: block;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Header */
.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),
    url("./assets/images/car-cover2.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 70vh;
  color: white;
  text-align: center;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

/* Mobile optimization: disable fixed background for better performance */
@media (max-width: 768px) {
  .header {
    background-attachment: scroll;
  }
}

.header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header p {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin-top: 4px;
  max-width: 800px;
  padding: 0 20px;
  color: #e0e0e0;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Gallery Page Header */
.gallery-showcase-wrap {
  background-image: url("./assets/images/gallery_background.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.gallery-header {
  background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.62));
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  margin-bottom: 1rem;
}

.gallery-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

a {
  text-decoration: none;
  color: inherit;
}

nav {
  background-color: rgba(0, 0, 0, 0.97);
  text-align: center;
}

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

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

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #404545;
}

section {
  padding: 2rem;
  /* max-width: 900px; */
  margin: auto;
}

section.about-section,
section.testimonials-section,
section.contact-section {
  max-width: none;
  margin: 0;
}

/* Vehicles Section */
#vehicles {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/images/car-cover3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 2rem;
  position: relative;
}

/* Mobile optimization: disable fixed background for better performance */
@media (max-width: 768px) {
  #vehicles {
    background-attachment: scroll;
  }
}

#vehicles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 26, 77, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

#vehicles h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 3.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.vehicle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vehicle-card {
  position: relative;
  border-radius: 16px;
  margin: 0;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  height: 320px;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.vehicle-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 40%, transparent 100%);
}

.vehicle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.vehicle-card h3 {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 1.5rem;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.vehicle-card p {
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.place-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding-left: 0;
  list-style: none;
  font-size: 1.1rem;
}

/* Places Section */
#places {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("assets/images/cover-4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 2rem;
  position: relative;
}

/* Mobile optimization: disable fixed background for better performance */
@media (max-width: 768px) {
  #places {
    background-attachment: scroll;
  }
}

#places::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 26, 77, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

#places h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 3.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

/* Gallery Section */
#photos {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 4rem 2rem;
}

#photos h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #021a4d;
}

/* Gallery Grid - matches place-card styling */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.view-more {
  text-align: center;
  margin-top: 2rem;
}

.gallery-link {
  display: inline-block;
  background-color: #021a4d;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-link:hover {
  background-color: #014080;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Gallery CTA Section (Home Page) */
.gallery-cta-section {
  background: linear-gradient(135deg, #021a4d 0%, #014080 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/images/cover-4.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.gallery-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-cta-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.gallery-cta-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.gallery-cta-btn:hover {
  background-color: #1fb855;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Gallery Page Specific Styles */
.gallery-section {
  background-color: rgba(7, 16, 32, 0.52);
  padding: 4rem 2rem;
  max-width: 100%;
  margin: 0;
}

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

.gallery-section .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.gallery-section .gallery-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 280px;
}

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

.gallery-section .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-section .gallery-card:hover img {
  transform: scale(1.05);
}

/* Booking CTA Section (Gallery Page) */
.booking-cta-section {
  background: linear-gradient(135deg, #021a4d 0%, #014080 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/images/car-cover2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.booking-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.booking-cta-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.booking-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.booking-cta-content .booking-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-cta-content .book-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.booking-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  margin: 0;
  padding: 0;
  color: white;
  padding: 6rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.booking-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/images/car-cover2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.booking-content {
  position: relative;
  z-index: 1;
}

.booking-options {
  position: relative;
  z-index: 1;
}

.booking-content p {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0.2rem;
  color: #888;
}

.booking-content p span {
  font-weight: bold;
}

.booking-content h2 {
  font-weight: bold;
  font-size: 4rem;
  margin: 0.5rem 0 1rem 0;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-options a svg {
  margin: 0 0.5rem 0 0;
  width: 1.8rem;
  height: 1.8rem;
}

.booking-options a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.book-btn {
  display: inline-block;
  background-color: #021a4d;
  color: white;
  padding: 1.5rem 8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #014080;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.book-btn.whatsapp {
  background-color: #25d366;
}

.book-btn.call {
  background-color: #007bff;
}

.book-btn.location {
  background-color: #ff6347;
}

footer {
  text-align: center;
  background-color: #006666;
  color: white;
  padding: 1rem;
}

/* Places Grid */
.places-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 0 8rem;
  margin-top: 20px;
}

.place-card {
  position: relative;
  border-radius: 16px;
  margin: 0;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  height: 220px;
}

.place-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.place-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 40%, transparent 100%);
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.place-card h3 {
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
/* About Section */
.about-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  margin-bottom: 10rem;
  color: white;
  padding: 6rem 4rem 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/images/car-cover2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
  animation: none;
}

.about-section .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 1;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon svg {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.feature-item:hover .feature-icon svg {
  opacity: 1;
  transform: scale(1.05);
}

.feature-item h3 {
  color: #ffffff;
  margin: 1rem 0 0.5rem 0;
}

.feature-item p {
  color: #d0d0d0;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: #021a4d;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #888;
  font-size: 0.9rem;
}

/* Contact Section */
/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #021a4d 0%, #014080 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/images/hiriketiya.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #021a4d, #25d366);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #021a4d 0%, #014080 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(2, 26, 77, 0.3);
}

.contact-card-icon.whatsapp-icon {
  background: linear-gradient(135deg, #25d366 0%, #1fb855 100%);
}

.contact-card:hover .contact-card-icon.whatsapp-icon {
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #021a4d;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details a {
  color: #014080;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.3rem;
  border-radius: 4px;
}

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

.contact-details p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Footer Updates */
footer {
  background: linear-gradient(135deg, #021a4d 0%, #014080 100%);
  color: white;
  padding: 3rem 2rem 1rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0.5rem 0;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
/* Tablet and Mobile (768px and below) */
@media (max-width: 768px) {
  /* Reset overflow and improve overall mobile experience */
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* Header improvements */
  .header {
    min-height: 65vh;
    padding: 3rem 1.5rem;
    background-attachment: scroll;
  }

  .header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .header p {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    padding: 0 1rem;
  }

  .hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  /* Navigation improvements */
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

  /* Booking container */
  .booking-container {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
    text-align: center;
  }

  .booking-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .booking-content p {
    font-size: 1rem;
  }

  /* Touch-friendly buttons */
  .book-btn {
    padding: 1.2rem 2rem;
    width: 100%;
    max-width: 350px;
    font-size: 1rem;
    min-height: 50px;
  }

  .booking-options {
    width: 100%;
    align-items: center;
  }

  .booking-options a {
    font-size: 1.1rem;
  }

  .booking-options a svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* About Section */
  .about-section {
    padding: 4rem 1.5rem 5rem 1.5rem;
    margin-bottom: 4rem;
  }

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

  .about-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Features grid */
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .feature-item {
    padding: 1.8rem 1.5rem;
  }

  /* Vehicles Section */
  #vehicles {
    padding: 4rem 1.5rem;
    background-attachment: scroll;
  }

  #vehicles h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .vehicle-card {
    max-width: 100%;
    height: 280px;
  }

  /* Places Section */
  #places {
    padding: 4rem 1.5rem;
    background-attachment: scroll;
  }

  #places h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
  }

  .places-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .place-card {
    max-width: 100%;
    height: 200px;
  }

  /* Gallery Section */
  #photos {
    padding: 3rem 1.5rem;
  }

  .gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-card img {
    height: 220px;
  }

  .gallery-header {
    padding: 3rem 1.5rem;
    min-height: 25vh;
  }

  .gallery-header h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .gallery-header p {
    font-size: 1.1rem;
  }

  /* Gallery CTA Section */
  .gallery-cta-section {
    padding: 4rem 1.5rem;
  }

  .gallery-cta-content h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .gallery-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .gallery-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }

  /* Gallery Section (Gallery Page) */
  .gallery-section {
    padding: 3rem 1.5rem;
  }

  .gallery-section .gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-section .gallery-card {
    height: 250px;
  }

  /* Booking CTA Section */
  .booking-cta-section {
    padding: 4rem 1.5rem;
  }

  .booking-cta-content h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .booking-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .booking-cta-content .booking-options {
    flex-direction: column;
    gap: 1rem;
  }

  .booking-cta-content .book-btn {
    width: 100%;
    max-width: 350px;
  }

  /* Contact Section */
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-header h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .contact-header p {
    font-size: 1.1rem;
  }

  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Booking form (booking.html) */
  .booking-section {
    padding: 3rem 0;
  }

  .booking-section .container {
    padding: 0 1.5rem;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-form {
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .booking-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 1.1rem 2rem;
  }

  .estimated-price {
    margin: 1.5rem 0;
    padding: 1.3rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section {
    padding: 1rem 0;
  }

  /* CTA Buttons */
  .booking-cta-section {
    padding: 4rem 1.5rem;
  }

  .booking-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }

  /* Gallery link */
  .gallery-link {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  /* Header */
  .header {
    min-height: 60vh;
    padding: 2rem 1rem;
  }

  .header h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .header p {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    padding: 0 0.5rem;
  }

  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  /* Navigation */
  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }

  .nav-book-btn {
    display: none;
  }

  .mobile-menu-toggle {
    padding: 0.3rem;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .nav-menu {
    top: 60px;
  }

  .nav-menu li a {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  /* Section spacing */
  section {
    padding: 1rem;
  }

  #vehicles,
  #places,
  #photos {
    padding: 3rem 1rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
  }

  /* Booking container */
  .booking-container {
    padding: 2.5rem 1rem;
    gap: 2rem;
  }

  .booking-content h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin: 0.5rem 0;
  }

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

  /* Buttons - ensuring minimum touch target of 44px */
  .book-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    min-height: 48px;
    max-width: 100%;
  }

  .booking-options a {
    font-size: 0.95rem;
  }

  .booking-options a svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  /* About section */
  .about-section {
    padding: 3rem 1rem 4rem 1rem;
    margin-bottom: 3rem;
  }

  .about-content {
    padding: 0 0.5rem;
  }

  .about-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .features {
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .feature-icon svg {
    width: 44px;
    height: 44px;
  }

  /* Vehicles and Places */
  #vehicles h2,
  #places h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 2rem;
  }

  .vehicle-grid,
  .places-grid {
    gap: 1.5rem;
  }

  .vehicle-card {
    height: 260px;
    border-radius: 12px;
  }

  .vehicle-card h3 {
    font-size: 1.15rem;
    bottom: 2.5rem;
  }

  .vehicle-card p {
    font-size: 0.85rem;
    bottom: 1rem;
  }

  .place-card {
    height: 180px;
    border-radius: 12px;
  }

  .place-card h3 {
    font-size: 1rem;
    bottom: 1rem;
    padding: 0 1rem;
  }

  /* Gallery */
  #photos {
    padding: 2.5rem 1rem;
  }

  .gallery,
  .gallery-grid {
    gap: 1.2rem;
  }

  .gallery-card img {
    height: 200px;
  }

  .gallery-header {
    padding: 2.5rem 1rem;
    min-height: 20vh;
  }

  .gallery-header h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.8rem;
  }

  .gallery-header p {
    font-size: 1rem;
  }

  .gallery-link {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }

  /* Gallery CTA Section */
  .gallery-cta-section {
    padding: 3rem 1rem;
  }

  .gallery-cta-content h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .gallery-cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .gallery-cta-btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  /* Gallery Section (Gallery Page) */
  .gallery-section {
    padding: 2.5rem 1rem;
  }

  .gallery-section .gallery {
    gap: 1.2rem;
  }

  .gallery-section .gallery-card {
    height: 220px;
  }

  /* Booking CTA Section */
  .booking-cta-section {
    padding: 3rem 1rem;
  }

  .booking-cta-content h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .booking-cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .booking-cta-content .booking-options {
    gap: 0.8rem;
  }

  .booking-cta-content .book-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Contact section */
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-header {
    margin-bottom: 2.5rem;
  }

  .contact-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-card {
    padding: 1.8rem 1.2rem;
  }

  .contact-card-icon {
    width: 55px;
    height: 55px;
  }

  .contact-card h3 {
    font-size: 1.15rem;
  }

  .contact-details a,
  .contact-details p {
    font-size: 0.9rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  /* Booking form (booking.html) */
  .booking-section {
    padding: 2.5rem 0;
  }

  .booking-section .container {
    padding: 0 1rem;
  }

  .booking-section .section-title {
    padding: 0;
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 1.5rem;
  }

  .booking-subtitle {
    font-size: 0.95rem;
    padding: 0;
    margin-top: -1rem;
    margin-bottom: 2rem;
  }

  .booking-wrapper {
    gap: 1.5rem;
  }

  .booking-form {
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .form-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 16px;
    border-radius: 6px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    min-height: 48px;
    width: 100%;
  }

  .submit-btn svg {
    width: 18px;
    height: 18px;
  }

  .estimated-price {
    padding: 1.2rem;
  }

  .estimated-price h3 {
    font-size: 1.1rem;
  }

  .price-amount {
    font-size: 1.6rem;
  }

  .price-note {
    font-size: 0.8rem;
  }

  .alternative-contact {
    padding: 0.9rem;
    font-size: 0.85rem;
  }

  .contact-link {
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.3rem;
  }

  .booking-info {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .info-card {
    padding: 1.3rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.85rem;
  }

  .info-icon {
    font-size: 2rem;
  }

  .info-icon svg {
    width: 28px;
    height: 28px;
  }

  /* Footer */
  footer {
    padding: 2.5rem 1rem 1rem 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  /* CTA Section */
  .booking-cta-section {
    padding: 3rem 1rem;
  }

  .booking-cta-content h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .booking-cta-content p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 2rem;
  }

  .cta-btn {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
    max-width: 100%;
  }

  .cta-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
  .hero-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .booking-content h2 {
    font-size: 1.6rem;
  }

  .book-btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

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

  .feature-item {
    padding: 1.2rem 0.8rem;
  }

  .vehicle-card,
  .place-card {
    border-radius: 10px;
  }

  .vehicle-card h3,
  .place-card h3 {
    font-size: 0.95rem;
  }
}

/* Navigation Book Button */
.nav-book-btn {
  background-color: #25d366 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.nav-book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

/* Booking CTA Section */
.booking-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #021a4d 0%, #044894 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.booking-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.booking-cta-content {
  position: relative;
  z-index: 1;
}

.booking-cta-content h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.booking-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary {
  background-color: #25d366;
  color: white;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.cta-btn.secondary {
  background: white;
  color: #021a4d;
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

/* Booking Section Styles (for booking.html) */
.booking-section {
  padding: 5rem 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

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

.booking-section .section-title {
  color: white;
}

.booking-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.booking-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #021a4d;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  max-width: 100%;
}

/* Ensure 16px minimum on mobile to prevent auto-zoom on iOS */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }
  
  .form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group.has-error label {
  color: #b3261e;
}

.form-group .input-error {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.15);
}

.field-error {
  min-height: 1rem;
  margin-top: 0.35rem;
  color: #b3261e;
  font-size: 0.82rem;
  line-height: 1.2;
}

.vehicle-suggestion {
  min-height: 1rem;
  margin-top: 0.45rem;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.3;
}

.vehicle-suggestion.is-recommended {
  color: #0f5132;
}

.vehicle-suggestion.is-warning {
  color: #9a3412;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  width: 100%;
  max-width: 100%;
}

.estimated-price {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  text-align: center;
  border: 2px solid #25d366;
  width: 100%;
  max-width: 100%;
}

.estimated-price h3 {
  margin: 0 0 1rem 0;
  color: #021a4d;
  font-size: 1.2rem;
}

.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.price-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #25d366;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.price-note {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.booking-status {
  border-radius: 10px;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.booking-status a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.booking-status.is-success {
  background: #ecfdf3;
  border: 1px solid #6fd59f;
  color: #0f5132;
}

.booking-status.is-error {
  background: #fdecec;
  border: 1px solid #f1a5a0;
  color: #842029;
}

.booking-status.is-info {
  background: #eef6ff;
  border: 1px solid #93c5fd;
  color: #1e3a8a;
}

.submit-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  width: 100%;
  max-width: 100%;
  min-height: 52px;
}

.submit-btn.is-loading {
  opacity: 0.8;
  cursor: wait;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn svg {
  width: 20px;
  height: 20px;
}

.alternative-contact {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.alternative-contact span {
  color: #666;
  font-size: 0.9rem;
}

.contact-link {
  color: #021a4d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  word-break: break-all;
}

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

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  color: #021a4d;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.info-card p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Mobile Sticky CTA (homepage) */
.mobile-quick-cta {
  display: none;
}

@media (max-width: 768px) {
  body.has-mobile-cta {
    padding-bottom: calc(5.4rem + env(safe-area-inset-bottom));
  }

  .mobile-quick-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(8, 10, 14, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  }

  .mobile-cta-btn {
    border-radius: 999px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .mobile-cta-btn.call {
    background: #007bff;
  }

  .mobile-cta-btn.whatsapp {
    background: #25d366;
  }

  .mobile-cta-btn.book {
    background: #021a4d;
  }

  .scroll-top-btn {
    bottom: 108px !important;
  }
}