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

:root {
  --primary-color: #0292c2; /* Main theme color (blue) */
  --primary-dark: #016b8a;  /* Darker shade for hover states */
  --primary-light: #04c4ff; /* Lighter shade for gradients/accents */
  --accent-color: #FFD700; /* Gold/Yellow for highlights */
  --accent-dark: #DAA520; /* Darker gold */
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-overlay: rgba(0, 0, 0, 0.75);
  --gradient-overlay: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)); /* Adjusted opacity on right */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.book-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
  z-index: 1001; /* Ensure hamburger is on top */
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=1920&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* New, reliable, dynamic background image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay); /* Gradient overlay for depth */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* Form on left (smaller), text on right (larger) */
  gap: 60px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-left-column,
.hero-right-column {
    opacity: 0;
    transform: translateY(30px); /* More pronounced initial translateY */
    animation-fill-mode: forwards;
}

.hero-left-column {
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-right-column {
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-main-content {
  max-width: 100%;
  text-align: left;
  padding: 0;
}

.hero-main-content h1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9); /* Stronger text shadow */
  line-height: 1.1;
  letter-spacing: -1px; /* Tighter letter spacing for impact */
}

.hero-main-content p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0.9;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--accent-color); /* Use accent color for primary CTA */
  color: var(--text-color); /* Dark text on light button */
  padding: 20px 45px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--accent-color); /* Border matching color */
}

.hero-cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-7px) scale(1.02); /* More pronounced lift and slight scale */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-dark);
}

.hero-booking-form {
  background: rgba(255, 255, 255, 0.95); /* Slightly more opaque for form clarity */
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  width: 100%;
  max-width: none;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-booking-form h3 {
  color: var(--primary-color);
  margin-bottom: 35px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}

.car-search-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: #555;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Base styling for all form inputs (input, select, textarea) */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

/* Specific styling for select dropdowns */
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  /* Custom arrow for select */
  -webkit-appearance: none; /* For Safari/Chrome */
  -moz-appearance: none;    /* For Firefox */
  appearance: none;         /* Standard property */
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230292c2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13.2-6.4H18.2c-5%200-9.3%201.8-13.2%206.4-3.9%204.6-5.8%2010.2-5.8%2016.2%200%206.1%202%2011.6%205.8%2016.2l128.6%20127.9c3.9%203.9%208.4%205.8%2013.2%205.8s9.3-1.9%2013.2-5.8L287%20101.8c3.9-4.6%205.8-10.1%205.8-16.2-.1-6.1-2-11.6-5.9-16.2z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px; /* Adjust arrow size */
  padding-right: 40px; /* Make space for the custom arrow */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 146, 194, 0.3);
}

.submit-btn.search-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}

.submit-btn.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 0 60px;
  margin-top: 80px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color); /* Accent underline */
    border-radius: 2px;
}

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

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

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

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.service-content {
  padding: 25px;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0; /* Ensure no default padding */
}

.service-card li {
  display: flex; /* Use flexbox for alignment */
  align-items: flex-start;
  gap: 8px; /* Space between tick and text */
  margin-bottom: 8px;
}

.service-card li:before {
  content: "✔️"; /* Tick mark */
  color: var(--primary-color);
  font-weight: bold;
  flex-shrink: 0; /* Prevent tick from shrinking */
  margin-top: 2px; /* Adjust vertical alignment of tick */
}

.service-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Services Main Page */
.services-main {
  padding: 40px 0 80px;
}

.service-category {
  margin-bottom: 60px;
}

.service-category h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
  width: 100%;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-color); /* Use accent color for icons */
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Google Reviews Section */
.google-reviews-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.reviews-summary strong {
    color: var(--primary-color);
}

.google-reviews-widget-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* New .review-item styling from user's provided HTML */
.review-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-item strong {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    display: block; /* Ensure it takes full width */
    margin-bottom: 5px;
}

.review-item .rating-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.review-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.review-item small {
    font-size: 0.85rem;
    color: #999;
    text-align: right;
    display: block;
}


.review-error, .no-reviews {
  text-align: center;
  padding: 40px;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  border-radius: 8px;
  grid-column: 1 / -1; /* Span across all columns in the grid */
  font-size: 1.1rem;
}

/* Pagination styles */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.load-more-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* About Content Page */
.about-content-section {
  padding: 40px 0 80px;
}

.about-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.about-text-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.about-text-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.features-list {
  margin: 30px 0;
}

.feature-point {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: border-color 0.3s ease;
}
.feature-point:hover {
    border-left-color: var(--accent-color); /* Accent border on hover */
}

.feature-point h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-point p {
  color: #666;
  margin: 0;
}

.about-image-section img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}

.stats-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-box {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-box h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-box p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Mission Vision */
.mission-vision {
  padding: 60px 0;
  background: var(--light-bg);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.mission,
.vision {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission h3,
.vision h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mission p,
.vision p {
  color: #555;
  line-height: 1.8;
}

/* Contact Page */
.contact-section {
  padding: 40px 0 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-section {
  padding: 40px; /* Increased padding */
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-section > p {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact-item:hover {
    background: #eef2f5;
    transform: translateX(5px);
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 5px;
  color: var(--primary-color);
}

.contact-text h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-text p {
  color: #555;
  margin: 0;
}

.contact-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.emergency-contact {
  background: #ffe6e6;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.emergency-contact h3 {
  color: #d63031;
  margin-bottom: 15px;
}

.emergency-contact p {
  color: #666;
  margin-bottom: 20px;
}

.emergency-btn {
  display: inline-block;
  background: #d63031;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.emergency-btn:hover {
  background: #a52a2a;
  transform: translateY(-3px);
}

.contact-form-section .booking-form {
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: none;
  padding: 40px; /* Added padding */
  margin: 20px 0; /* Added margin */
}

.contact-form-section .booking-form h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-section .booking-form > p {
  color: #666;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 8px;
}

/* Specific styling for the contact page submit button */
.contact-form-section .submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light)); /* Gradient background */
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow */
  margin-top: 10px;
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Letter spacing */
}

.contact-form-section .submit-btn:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color)); /* Darker gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4); /* More pronounced shadow on hover */
}

.submit-btn span {
  margin-right: 8px;
}

/* Quick Contact Routes */
.quick-contact-routes {
  padding: 60px 0;
  background: var(--light-bg);
}

.quick-contact-routes h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.quick-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.quick-route {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quick-route:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quick-route h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.quick-route p {
  color: #666;
  margin-bottom: 15px;
}

.quick-book-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.quick-book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); /* Gradient background */
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: var(--primary-text-light);
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.contact-info p {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--primary-light);
  padding-top: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--primary-text-light);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: var(--white); /* White background for contrast */
}

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

.faq-item {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-answer {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
    gap: 40px;
    padding-top: 100px; /* Adjust for fixed header */
    padding-bottom: 40px;
  }

  .hero-left-column,
  .hero-right-column {
      animation: none; /* Remove animation for mobile to avoid re-triggering on resize */
      opacity: 1;
      transform: translateY(0);
  }

  .hero-main-content {
    text-align: center; /* Center text when stacked */
  }

  .hero-booking-form {
    max-width: 500px; /* Constrain form width when stacked */
    margin: 0 auto; /* Center form when stacked */
  }

  .hero-main-content h1 {
    font-size: 3.5rem; /* Adjust for smaller desktops/large tablets */
  }

  .hero-main-content p {
    font-size: 1.3rem;
  }

  .car-search-form .form-row {
    grid-template-columns: 1fr; /* Stack form fields on smaller screens */
  }

  .contact-info-section {
    padding: 30px; /* Adjust padding for smaller screens */
  }

  .contact-form-section .booking-form {
    padding: 30px; /* Adjust padding for smaller screens */
  }

  /* General section padding adjustment for tablets */
  .about-section, .services-section, .why-choose-us, .google-reviews-section, .mission-vision, .contact-section, .quick-contact-routes, .faq-section {
      padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 15px; /* Slightly less padding than 20px */
  }
  .nav-logo {
    flex-shrink: 0; /* Prevent logo from shrinking too much */
    min-width: 150px; /* Ensure logo has minimum space */
  }
  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push hamburger to the right */
    flex-grow: 1; /* Allow nav-actions to take available space */
  }
  .book-btn {
    display: none; /* Hide book button on mobile */
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px; /* Ensure this matches header height */
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
    z-index: 999; /* Ensure menu is below hamburger but above content */
  }

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

  .nav-item {
    margin: 10px 0;
  }

  .nav-link {
    padding: 15px;
    display: block;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-bg);
    margin-top: 10px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-main-content h1 {
    font-size: 2.8rem;
  }
  .hero-main-content p {
    font-size: 1.2rem;
  }
  .hero-cta-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-bottom: 30px; /* Add bottom margin */
  }
  .hero-booking-form {
    padding: 35px;
    margin-top: 30px; /* Add top margin to push it down */
  }
  .hero-booking-form h3 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .google-reviews-widget-container {
    grid-template-columns: 1fr; /* Ensure single column for reviews */
  }

  .about-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-routes-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Further adjust font sizes for better readability on smaller screens */
  body {
      font-size: 15px;
  }
  .section-header p {
      font-size: 1rem;
  }
  .review-item strong {
      font-size: 1rem;
  }
  .review-item .rating-stars {
      font-size: 1.1rem;
  }
  .review-item p {
      font-size: 0.95rem;
  }
  .review-item small {
      font-size: 0.8rem;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .nav-container {
    padding: 0 10px; /* Even less padding for very small screens */
  }
  .nav-logo {
    min-width: 120px; /* Further reduce logo min-width for very small screens */
  }

  .hero-main-content h1 {
    font-size: 2.2rem;
  }

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

  .hero-booking-form {
    padding: 25px;
    margin-top: 20px; /* Adjust top margin for very small screens */
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Further reduce font sizes for very small screens */
  body {
      font-size: 14px;
  }
  .section-header h2 {
      font-size: 1.8rem;
  }
  .hero-booking-form h3 {
      font-size: 1.6rem;
  }
  .book-btn, .hero-cta-btn, .submit-btn.search-btn, .load-more-btn {
      padding: 10px 20px;
      font-size: 1rem;
  }
  .hero-cta-btn {
    margin-bottom: 20px; /* Adjust bottom margin for very small screens */
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.85rem;
  }
}
