/* Pricing cards view (in-place replacement of packages) */
.pricing-view {
  padding-top: 8px;
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing-header .back-link {
  text-decoration: none;
  color: var(--primary, #0b5);
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-header .back-link:hover {
  color: var(--primary-dark, #094);
}

.pricing-header .titles h2 {
  margin: 0 0 4px;
  font-size: 1.6rem;
}

.pricing-header .titles .subtitle {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}

.category-filters .category-filter {
  background: rgba(44, 120, 115, 0.2);
  border: 2px solid rgba(44, 120, 115, 0.3);
  border-radius: 24px;
  padding: 8px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2C7873;
}

.category-filters .category-filter.active {
  background: #2C7873;
  color: white;
  border-color: #2C7873;
}

.category-filters .category-filter:hover:not(.active) {
  background: rgba(44, 120, 115, 0.3);
  border-color: rgba(44, 120, 115, 0.5);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: #f0f0f0;
  border-color: #ccc;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Vehicle Carousel */
.vehicle-carousel-container {
  overflow: hidden;
  margin-bottom: 24px;
  touch-action: pan-y;
}

.vehicle-carousel {
  display: flex;
  transition: transform 0.3s ease;
  gap: 20px;
  touch-action: pan-y;
  user-select: none;
}

.vehicle-card {
  flex: 0 0 auto;
  width: calc(33.333% - 14px);
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.vehicle-card .card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vehicle-card .card-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.vehicle-card .card-content {
  padding: 20px;
  flex: 1;
}

.vehicle-card .vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.vehicle-card .vehicle-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  flex: 1;
}

.vehicle-card .seating-info {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f0f9ff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #2C7873;
  font-weight: 600;
}

.vehicle-card .seat-icon {
  font-size: 14px;
}

.vehicle-card .seat-count {
  font-size: 0.85rem;
}

.vehicle-card .vehicle-type {
  margin: 0 0 16px;
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-card .price-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vehicle-card .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.vehicle-card .price-item:last-child {
  border-bottom: none;
}

.vehicle-card .price-item .label {
  color: #666;
  font-size: 0.9rem;
  flex: 1;
}

.vehicle-card .price-item .value {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.pricing-notes {
  margin-top: 24px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
  font-size: 0.9rem;
}

.pricing-notes .note {
  margin: 0 0 8px;
}

.pricing-notes .note:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .vehicle-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  /* Keep desktop card sizing on mobile - don't limit to single card */
  .vehicle-card {
    width: calc(33.333% - 14px);
    min-width: 280px; /* Minimum width to ensure readability */
  }
  
  .vehicle-card .card-image {
    height: 160px;
  }
  
  .vehicle-card .card-content {
    padding: 16px;
  }
  
  /* Keep category filters in single row on mobile */
  .category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  
  .category-filters .category-filter {
    padding: 6px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* Hide carousel navigation buttons on mobile */
  .carousel-controls {
    display: none;
  }
  
  /* Enhanced touch scrolling for mobile */
  .vehicle-carousel-container {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .vehicle-card {
    scroll-snap-align: start;
  }
}
/* Reset and Base Styles */
:root {
    --primary-color: #2C7873;    /* Serene teal */
    --secondary-color: #6FB98F;  /* Soft green */
    --accent-color: #004445;     /* Deep teal */
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #f5f5f5;
    --font-heading: 'Canela', serif;
    --font-body: 'Graphik', sans-serif;
    --green-bg: #6FB98F;         /* Green background color for mobile menu */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    text-align: left;
}

/* Ensure section headers and titles are left-aligned */
.section-header h2,
.section-title,
.cta-content h2 {
    text-align: left;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #001f1f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.navbar.navbar-transparent {
    background-color: transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: #001f1f;
    padding: 0.3rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar.hide {
    transform: translateY(-100%);
}

.navbar.show {
    transform: translateY(0);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 1.2rem;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 0.9rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #001f1f;
    border-radius: 0 0 5px 5px;
    min-width: 200px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: #fff;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover { background: rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.5); }

/* Hero Section Update */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100vh;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    height: 100%;
    padding-left: 4rem;
    padding-top: 15rem;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-text-wrap { 
    max-width: 640px; 
    text-align: left;
}

.hero h1,
.hero-title-one-line {
    text-align: left !important;
    margin: 0;
}

.hero-sub { 
    font-size: 1.1rem; 
    margin-top: 0.5rem; 
    opacity: 0.95; 
    text-align: left !important;
}

.hero-checklist { 
    display: flex; 
    gap: 1.5rem; 
    list-style: none; 
    margin-top: 1rem; 
    color: #fff; 
    padding: 0; 
    justify-content: flex-start;
}
.hero-checklist li { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.hero-checklist i { color: var(--secondary-color); }



@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }
  
  .hero .hero-content {
    padding-left: 2rem;
    padding-top: 18rem;
  }
  
  .video-background {
    height: 100vh;
  }
  
  .video-background video {
    height: 100vh;
    max-height: 100vh;
  }
  
  .video-overlay {
    height: 100vh;
  }
  
  .hero-checklist { 
    gap: 0.75rem; 
    font-size: 0.9rem; 
    flex-wrap: wrap; 
    justify-content: flex-start;
  }
  
  .hero-title-one-line {
    white-space: normal;
    font-size: 2.5rem;
  }
}



.field-group {
    display: flex;
    align-items: center;
    padding: 16px;
    border-right: 1px solid #e2e8f0;
    position: relative;
    min-height: 70px;
}

.field-group:last-child {
    border-right: none;
}

.field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.field-icon i {
    color: #64748b;
    font-size: 16px;
}

.field-content {
    flex: 1;
    margin-left: 12px;
}




.field-content label {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.field-content input,
.field-content select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    outline: none;
    padding: 6px 0;
    box-sizing: border-box;
}





.field-note {
    display: block;
    font-size: 10px;
    color: #e53e3e;
    margin-top: 2px;
    font-weight: 500;
}

.field-content input::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.field-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}



.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 120, 115, 0.3);
}

.search-button:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(44, 120, 115, 0.4);
}

.search-button i {
    font-size: 12px;
}



.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title-one-line { white-space: nowrap; }
.typing-text { display: inline-block; }

.typing-text {
    position: relative;
    color: var(--secondary-color);
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--light-text);
}

.cta-button.secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
}

/* Packages Section Styles */
.packages {
    padding: 5rem 0;
    background-color: var(--background-color);
}

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

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0;
    text-align: left;
}

.packages-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

th, td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--accent-color);
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

tr:hover {
    background-color: #f8f8f8;
}

.details-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.details-link:hover {
    color: var(--accent-color);
}

.journey-signature {
    text-align: center;
    margin-top: 3rem;
}

.signature-img {
    max-width: 150px;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #001f1f;
    color: white;
}

.features .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.underline {
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #001f1f;
    color: white;
    position: relative;
}

.testimonial-heading {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 220px; /* Ensure consistent height */
}

.testimonial-slide {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-slide blockquote {
    font-size: 2rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-slide cite {
    font-style: normal;
    color: var(--secondary-color);
    display: block;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active, .dot:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .testimonial-slide blockquote {
        font-size: 1.5rem;
    }
}

/* Explore Section */
.explore {
    padding: 5rem 0;
    background-color: white;
}

.explore h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.explore-intro {
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.explore-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.explore-card.large {
    grid-row: span 2;
    height: 100%;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-overlay h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.arrow-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.explore-card:hover .arrow-link {
    transform: translateX(5px);
}

/* Discount Section */
.discount {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/discount-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.discount-content {
    text-align: center;
}

.discount-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Travel Packages Showcase */
.travel-packages {
    padding: 5rem 0;
    background-color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 1;
}

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

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.price {
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
}

.sale-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: var(--accent-color);
}

/* Removed popup styles */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 120, 115, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.contact-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    max-width: 600px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.contact-item {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

.contact-item h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-link {
    font-family: var(--font-heading);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

.response-time {
    font-family: var(--font-body);
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #001f1f;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #999;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

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

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

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .nav-brand {
        flex: 0 0 auto;
        margin-right: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links a {
        margin: 0.5rem;
    }

    .social-links {
        margin-top: 1rem;
    }

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

    .contact-content h2 {
        font-size: 2.5rem;
    }

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

    .contact-link {
        font-size: 1.3rem;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .packages-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 1rem;
        margin: -1rem;
    }

    .package-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-right: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    /* Hide scrollbar but keep functionality */
    .packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .packages-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .packages-table {
        overflow: visible;
        box-shadow: none;
    }

    table {
        display: none;
    }

    .mobile-packages {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .mobile-package-card {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

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

    .mobile-package-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }

    .mobile-package-name {
        font-size: 1.2rem;
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-package-duration {
        color: var(--text-color);
        font-size: 0.9rem;
    }

    .mobile-package-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .mobile-package-info {
        display: flex;
        flex-direction: column;
    }

    .mobile-package-label {
        font-size: 0.8rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
    }

    .mobile-package-value {
        font-size: 1rem;
        color: var(--text-color);
        font-weight: 500;
    }

    .mobile-package-action {
        text-align: right;
    }

    .mobile-details-link {
        display: inline-block;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border: 1px solid var(--primary-color);
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .mobile-details-link:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .service-card {
        padding-bottom: 5rem;
    }

    .book-now-btn {
        width: calc(100% - 2rem);
        bottom: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .logo-img {
        max-width: 130px;
    }

    .hamburger-menu {
        display: block;
        margin-left: auto;
        z-index: 1002;
    }
}

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

    .container {
        padding: 0 1rem;
    }

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

    .contact-content h2 {
        font-size: 2rem;
    }

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

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

    .footer-links {
        margin-top: 1rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-links a,
    .social-links a,
    .contact-link,
    .cta-button,
    .add-to-cart {
        padding: 0.8rem;
    }

    .explore-card:hover img {
        transform: none;
    }

    .package-card:hover {
        transform: none;
    }

    .book-now-btn {
        padding: 1rem 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cta-button,
    .social-links,
    .footer {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-link {
        color: black;
    }

    /* Removed modal print styles */
    .book-now-btn,
    .cta-button.secondary {
        display: none;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background-color: #128C7E;
}

/* Removed modal styles */

/* Mobile Packages Cards */
.mobile-packages {
    display: none;
}

@media (max-width: 768px) {
    .mobile-packages {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .packages-table {
        display: none;
    }

    .mobile-package-card {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

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

    .mobile-package-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }

    .mobile-package-name {
        font-size: 1.2rem;
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-package-duration {
        color: var(--text-color);
        font-size: 0.9rem;
    }

    .mobile-package-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .mobile-package-info {
        display: flex;
        flex-direction: column;
    }

    .mobile-package-label {
        font-size: 0.8rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
    }

    .mobile-package-value {
        font-size: 1rem;
        color: var(--text-color);
        font-weight: 500;
    }

    .mobile-package-action {
        text-align: right;
    }

    .mobile-details-link {
        display: inline-block;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border: 1px solid var(--primary-color);
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .mobile-details-link:hover {
        background-color: var(--primary-color);
        color: white;
    }
}

/* Services Section Styles */
.services {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.section-underline {
    height: 3px;
    width: 80px;
    background-color: #001f1f;
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    padding: 2rem;
    padding-bottom: 4rem;
    background-color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.book-now-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100% - 3rem);
}

.book-now-btn:hover {
    background-color: var(--accent-color);
    transform: translateX(-50%) translateY(-2px);
}

/* CTA Form Styles */
.cta-form {
    padding: 5rem 0;
    background-color: white;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

.request-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Interactive CTA Styles */
.interactive-cta {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #666;
    margin-bottom: 2rem;
}

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

.quote-btn, .chat-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn {
    background-color: var(--primary-color);
    color: white;
}

.chat-btn {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.quote-btn:hover {
    background-color: var(--accent-color);
}

.chat-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

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

/* Modal Styles */
/* Removed modal styles */

/* Responsive Styles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-image {
        order: -1;
    }

    /* Removed modal content styles */
}

/* Quote Details Styles */
#quote-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-story {
    padding: 8rem 0 5rem; /* Extra padding to account for removed hero section */
    background-color: white;
}

/* Custom styles for the About page heading */
.about-story h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 600;
}

.about-story p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-story .section-underline {
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-bottom: 2.5rem;
    margin-left: 0; /* Align left */
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

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

.story-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
}

/* Core Values Section */
.core-values {
    padding: 5rem 0;
    background-color: var(--background-color);
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Highlight Section */
.services-highlight {
    padding: 5rem 0;
    background-color: white;
}

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

.highlight-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-content {
    padding: 1.5rem;
    background-color: white;
}

.highlight-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.highlight-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Environmental Commitment Section */
.environmental-commitment {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.commitment-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.commitment-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.commitment-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

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

/* CTA Section - Modified for white background option */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-white {
    background: white;
    color: var(--text-color);
}

.cta-white .cta-button {
    background-color: var(--primary-color);
    color: white;
}

.cta-white .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-white .cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Mobile Navigation Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001f1f;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--green-bg);
    z-index: 2001;
    padding: 2rem;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.mobile-menu-links li {
    margin-bottom: 1.5rem;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 1rem;
    margin-top: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.8rem;
}

.mobile-dropdown-menu a {
    font-size: 1rem;
}

.mobile-social-links {
    display: flex;
    margin-top: 3rem;
    gap: 1.5rem;
}

.mobile-social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.mobile-social-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .story-content,
    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1; /* Show image first on mobile */
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links, .social-links {
        display: none;
    }
    
    /* About page specific mobile styles */
    .about-story {
        padding: 6rem 0 3rem;
    }
    
    .about-story h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-story p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens - one stat per row */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        padding-top: 6rem;
    }
}

/* Modal Improvements for Mobile */
/* Removed modal styles */

/* Logo Image Styling */
.logo-img {
    max-height: 56px;
    width: auto;
}

/* White Background for CTA sections */
.cta-white {
    background-color: #fff;
    color: #333;
}

.cta-white .cta-button {
    background-color: #004445;
    color: #fff;
}

.cta-white .cta-button.secondary {
    background-color: transparent;
    border: 2px solid #004445;
    color: #004445;
}

.cta-white h2 {
    color: #004445;
}

/* Our Fleet Section */
.our-fleet {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.fleet-showcase {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
}

.fleet-carousel {
    display: flex;
    width: 300%; /* Fits 3 cars at 100% each */
    transition: transform 0.5s ease;
    will-change: transform;
}

.car-card {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .car-card {
        flex-direction: row;
    }
}

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

.car-image {
    flex: 0 0 100%;
    max-height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .car-image {
        flex: 0 0 40%;
        max-height: none;
    }
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-details {
    padding: 25px;
    flex: 1;
}

.car-details h3 {
    color: #004445;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 15px;
}

.car-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.car-features li {
    padding: 5px 0;
    font-size: 14px;
}

.car-features li i {
    color: #004445;
    margin-right: 8px;
}

.car-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.fleet-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.prev-btn, .next-btn {
    background: #004445;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prev-btn:hover, .next-btn:hover {
    background: #00615f;
}

.nav-indicators {
    display: flex;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 5;
}

.indicator.active {
    background: #004445;
}

/* Responsive fleet carousel for mobile */
@media (max-width: 767px) {
    .fleet-carousel {
        width: 300%; /* Keep 3 cars at full width */
    }
    
    .car-card {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: #004445;
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-details {
    padding: 20px;
}

.contact-details h2 {
    color: #004445;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-intro {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    background-color: #004445;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2rem;
}

.contact-text p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.support-hours {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #004445;
    margin-bottom: 25px;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #004445;
    outline: none;
}

.contact-form .submit-btn {
    background-color: #004445;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    font-weight: 600;
}

.contact-form .submit-btn:hover {
    background-color: #003132;
}

.map-section {
    padding: 60px 0;
}

.map-section h2 {
    color: #004445;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Form Validation */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

input:invalid, select:invalid {
    border-color: #e74c3c;
}

input:valid, select:valid {
    border-color: #2ecc71;
}

/* Updated Mobile Menu Overlay */
.mobile-menu-overlay {
    background-color: #004445;
}

.mobile-menu-content {
    padding: 30px 20px;
}

.mobile-menu-links {
    margin-bottom: 30px;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    background-color: rgba(0, 0, 0, 0.2);
    padding-left: 15px;
    margin: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.fleet-cta {
    text-align: center;
    margin-top: 40px;
}

.fleet-cta .cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.fleet-cta .cta-button:hover {
    background-color: var(--accent-color);
}



.service-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    background: var(--background-color);
    padding: 0.5rem;
    border-radius: 10px;
    margin: 0 auto 1rem;
    max-width: 760px;
}

.service-tabs .tab {
    appearance: none;
    border: 1px solid transparent;
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.service-tabs .tab:hover {
    border-color: #e6e6e6;
}

.service-tabs .tab.active {
    background: var(--primary-color);
    color: #fff;
}





.form-row {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-right: 1px solid #e6e6e6;
    position: relative;
}

.form-row:last-child { border-right: none; }

.form-row label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    color: #333;
    font-weight: 600;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border: none;
}



.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #777;
}

.hidden { display: none; }

@media (max-width: 768px) {
    .service-tabs { grid-template-columns: repeat(2, 1fr); }
}

/* Google Reviews */
.google-reviews {
    padding: 4rem 0;
    background: var(--background-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.reviewer-name { font-weight: 600; }
.stars { color: #f5a623; font-size: 0.95rem; }
.review-text { color: #555; line-height: 1.6; }

.skeleton { position: relative; overflow: hidden; min-height: 120px; }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.06), rgba(0,0,0,0.03)); animation: shimmer 1.2s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

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



/* ==========================================
   BOOKING FORM - COMPLETE SOLUTION
   ========================================== */

/* Booking Section Container */
.booking-section {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Booking CTA */
.booking-cta {
    text-align: left;
    margin-bottom: 40px;
}

.booking-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
    text-align: left;
    max-width: 600px;
}

/* Booking Container */
.booking-container {
    width: 100%;
}

/* Service Tabs */
.booking-tabs {
    display: flex;
    background: var(--accent-color);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.booking-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.booking-tab.active {
    background: #ffffff;
    color: var(--accent-color);
}

.booking-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.booking-tab i {
    font-size: 16px;
}

/* Booking Panel */
.booking-panel {
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: 100%;
}

/* Booking Form */
.booking-form {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Booking Fields - Base */
.booking-fields {
    display: none;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
}

.booking-fields.active {
    display: flex;
}

/* Airport Form - Flexbox Approach */
.booking-fields[data-service="airport"].active {
    display: flex !important;
    width: 100%;
    gap: 0;
}

.booking-fields[data-service="airport"] .field-group {
    flex: 1;
    border-right: 1px solid #e2e8f0;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.booking-fields[data-service="airport"] .field-group:nth-child(2),
.booking-fields[data-service="airport"] .field-group:nth-child(3) {
    flex: 1.5;
}

.booking-fields[data-service="airport"] .field-group:last-child {
    border-right: none;
}

/* Other Forms */
.booking-fields[data-service="outstation"].active,
.booking-fields[data-service="rental"].active {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.booking-fields[data-service="outstation"] .field-group,
.booking-fields[data-service="rental"] .field-group {
    border-right: 1px solid #e2e8f0;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Field Content */
.field-content {
    width: 100%;
    margin: 0;
}

/* Overlay proxy for Google PlaceAutocompleteElement to preserve UI */
.field-content {
    position: relative;
}
/* Remove overlay approach; use native input directly */

.field-content label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    display: block;
}

.field-content input,
.field-content select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    outline: none;
    padding: 8px 0;
    box-sizing: border-box;
}

/* Enhanced Native Time Input Styling */
.enhanced-time-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #f8f9fa !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 20px;
}

.enhanced-time-input:hover {
    border-color: var(--primary-color) !important;
    background: #f1f5f9 !important;
}

.enhanced-time-input:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(44, 120, 115, 0.1) !important;
}

/* Time input clock icon styling */
.enhanced-time-input::-webkit-calendar-picker-indicator {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12,6 12,12 16,14'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center center;
    background-size: 16px 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.enhanced-time-input:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Firefox specific styling */
.enhanced-time-input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Time input text styling */
.enhanced-time-input::-webkit-datetime-edit {
    color: #1a202c;
    font-weight: 600;
}

.enhanced-time-input::-webkit-datetime-edit-fields-wrapper {
    background: transparent;
}

.enhanced-time-input::-webkit-datetime-edit-hour-field,
.enhanced-time-input::-webkit-datetime-edit-minute-field {
    background: transparent;
    color: #1a202c;
    font-weight: 600;
}

.enhanced-time-input::-webkit-datetime-edit-ampm-field {
    background: transparent;
    color: #1a202c;
    font-weight: 600;
}

/* Custom Time Picker Styles */
.custom-time-picker {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 9998;
}

.time-picker-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.time-picker-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 120, 115, 0.1);
}

.time-picker-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.time-picker-toggle:hover {
    background-color: rgba(44, 120, 115, 0.1);
}

.time-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    margin-top: 4px;
}

.time-picker-dropdown.show {
    display: block;
}

.time-option {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.time-option:last-child {
    border-bottom: none;
}

.time-option:hover {
    background-color: #f8f9fa;
}

.time-option.selected {
    background-color: var(--primary-color);
    color: white;
}

/* Scrollbar styling for time picker dropdown */
.time-picker-dropdown::-webkit-scrollbar {
    width: 6px;
}

.time-picker-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.time-picker-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.time-picker-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}



.field-content input::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.field-note {
    font-size: 10px;
    color: #e53e3e;
    margin-top: 4px;
    font-weight: 500;
}

/* Location Input Group Styling */
.location-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-input-group input,
.location-input-group gmp-place-autocomplete {
    flex: 1;
    min-width: 0;
}

.current-location-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.current-location-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.current-location-btn:active {
    transform: scale(0.95);
}

.current-location-btn i {
    font-size: 14px;
}

.current-location-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Google Maps Autocomplete Styling */
.pac-container {
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e2e8f0 !important;
    margin-top: 4px !important;
    z-index: 10000 !important;
    font-family: inherit !important;
}

.pac-item {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    font-size: 14px !important;
}

.pac-item:hover {
    background-color: #f8f9fa !important;
}

.pac-item-selected {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.pac-item-query {
    font-weight: 600 !important;
    color: #1a202c !important;
}

.pac-item-selected .pac-item-query {
    color: white !important;
}

.pac-matched {
    font-weight: 700 !important;
}

.pac-item-selected .pac-matched {
    color: white !important;
}

/* Google Places autocomplete inputs should match regular form inputs */
.maps-autocomplete {
    position: relative !important;
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    outline: none !important;
    padding: 8px 0 !important;
    box-sizing: border-box !important;
}

/* Invisible overlay for new Places Autocomplete element */
.field-content { position: relative; }
.gmp-proxy {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    z-index: 2 !important;
}
.location-input-group .current-location-btn { position: relative; z-index: 3; }

/* Loading state for current location */
.current-location-btn.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* New Places API Dropdown Styling */
.places-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    margin-top: 4px !important;
}

.places-dropdown-item,
.places-dropdown div {
    padding: 12px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid #f1f5f9 !important;
    transition: background-color 0.2s ease !important;
    font-size: 14px !important;
    color: #1a202c !important;
}

.places-dropdown-item:hover,
.places-dropdown div:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.places-dropdown-item:last-child,
.places-dropdown div:last-child {
    border-bottom: none !important;
}

/* Search Button */
.booking-submit {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 120, 115, 0.3);
}

.search-button:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(44, 120, 115, 0.4);
}

.search-button i {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-section {
        padding: 30px 10px;
    }
    
    .booking-cta h2 {
        font-size: 2rem;
    }
    
    .booking-cta p {
        font-size: 1.1rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .booking-tab span {
        display: none;
    }
    
    .booking-fields.active {
        display: flex !important;
        flex-direction: column;
    }
    
    .booking-fields[data-service="airport"].active {
        display: flex !important;
        flex-direction: column;
    }
    
    .booking-fields[data-service="airport"] .field-group {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        flex: none;
        padding: 20px 15px;
    }
    
    .booking-fields[data-service="airport"] .field-group:last-child {
        border-bottom: none;
    }
}

/* Car Selection Modal Styles */
.car-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.car-selection-modal.active {
    display: flex;
}

.car-selection-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.car-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: var(--primary-color);
    color: white;
}

.car-selection-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.car-selection-filters {
    display: flex;
    gap: 12px;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8f9fa;
    overflow-x: auto;
}

.filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.car-selection-grid {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-height: 450px;
}

.car-selection-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.car-selection-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.car-selection-card.selected {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.car-selection-card.selected::before {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.car-selection-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.car-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.car-selection-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-selection-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.car-selection-type {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-selection-features {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.car-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #64748b;
}

.car-feature i {
    color: var(--primary-color);
    font-size: 12px;
}



.car-selection-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
    display: flex;
    justify-content: flex-end;
}

.confirm-selection-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.confirm-selection-btn:hover:not(:disabled) {
    background: var(--accent-color);
    transform: translateY(-1px);
}

.confirm-selection-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Selected car display in booking form */
.selected-car-display {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0f9ff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 20px;
}

.selected-car-display.show {
    display: flex;
}

.selected-car-image {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.selected-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-car-info {
    flex: 1;
}

.selected-car-name {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 2px 0;
    font-size: 14px;
}

.selected-car-type {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.change-car-btn {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.change-car-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile responsive styles for car selection modal */
@media (max-width: 768px) {
    .car-selection-modal {
        padding: 10px;
    }
    
    .car-selection-content {
        max-height: 95vh;
        max-width: 100%;
    }
    
    .car-selection-header {
        padding: 20px;
    }
    
    .car-selection-header h2 {
        font-size: 1.3rem;
    }
    
    .car-selection-filters {
        padding: 15px 20px;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .car-selection-grid {
        padding: 15px 20px;
        grid-template-columns: 1fr;
        gap: 15px;
        max-height: 350px;
    }
    
    .car-selection-card {
        min-height: 280px;
    }
    
    .car-selection-image {
        height: 180px;
    }
    
    .car-selection-details {
        padding: 12px;
    }
    
    .car-selection-footer {
        padding: 15px 20px;
    }
    
    .confirm-selection-btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .selected-car-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .selected-car-image {
        width: 80px;
        height: 50px;
    }
    
    .change-car-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .car-selection-filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .car-selection-grid {
        max-height: 300px;
    }
}



/* Mobile Responsive Styles for Contact Modal */
@media (max-width: 768px) {
    .contact-details-modal {
        padding: 10px;
    }
    
    .contact-details-content {
        max-height: 95vh;
        max-width: 100%;
    }
    
    .contact-details-header {
        padding: 20px;
    }
    
    .contact-details-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-details-header p {
        font-size: 0.9rem;
    }
    
    .close-contact-modal {
        top: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
    
    .contact-details-body {
        padding: 20px;
    }
    
    .contact-form-fields {
        gap: 16px;
    }
    
    .contact-details-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .back-to-car-btn,
    .send-enquiry-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-details-modal {
        padding: 5px;
    }
    
    .contact-details-content {
        max-height: 98vh;
    }
    
    .contact-details-header {
        padding: 15px;
    }
    
    .contact-details-body {
        padding: 15px;
    }
    
    .contact-form-fields {
        gap: 14px;
    }
    
    .contact-details-footer {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .back-to-car-btn,
    .send-enquiry-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Contact Details Modal */
.contact-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-details-modal.active {
    display: flex;
    opacity: 1;
}

.contact-details-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.contact-details-modal.active .contact-details-content {
    transform: translateY(0);
}

.contact-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: var(--primary-color);
    color: white;
    border-radius: 12px 12px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.header-text h2 {
    margin: 0 0 8px 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    max-width: 450px;
    line-height: 1.5;
}

.close-contact-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.close-contact-modal:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-details-body {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
}

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

.contact-form-fields .field-group {
    border: none;
    padding: 0;
}

.contact-form-fields .field-content label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-fields .field-content label i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.contact-form-fields .field-content input,
.contact-form-fields .field-content textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
    box-sizing: border-box;
}

.contact-form-fields .field-content input:focus,
.contact-form-fields .field-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 120, 115, 0.1);
    background: white;
    transform: translateY(-1px);
}

.enhanced-field {
    position: relative;
    transition: all 0.3s ease;
}

.enhanced-field:hover {
    transform: translateY(-2px);
}

.contact-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-text {
    color: #1e40af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-text strong {
    color: #1e3a8a;
}

.contact-form-fields .field-content textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-details-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.back-to-car-btn {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.back-to-car-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.send-enquiry-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(44, 120, 115, 0.2);
}

.send-enquiry-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 120, 115, 0.4);
}

.send-enquiry-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.send-enquiry-btn i {
    font-size: 14px;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--brand-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-buttons .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-cta-buttons .cta-button:first-child {
    background: var(--brand-color);
    color: white;
    border: 2px solid var(--brand-color);
}

.faq-cta-buttons .cta-button:first-child:hover {
    background: transparent;
    color: var(--brand-color);
}

.faq-cta-buttons .cta-button.secondary {
    background: transparent;
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
}

.faq-cta-buttons .cta-button.secondary:hover {
    background: var(--brand-color);
    color: white;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.9rem;
    }
}




