/* ============================================
   Taxi Bilal Tour - Main Stylesheet
   Professional Taxi Service Landing Page
   ============================================ */

/* CSS Variables - Premium Taxi Theme */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fbbf24;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding-x: clamp(24px, 5vw, 80px);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--gray-100);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.service-card-img img,
.fleet-card-image img,
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================
   Section Layout - Full Width with Padding
   ============================================ */
section {
  width: 100%;
  padding: 80px var(--section-padding-x);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animation variants */
section.animate-left { transform: translateX(-60px); }
section.animate-left.visible { transform: translateX(0); }
section.animate-right { transform: translateX(60px); }
section.animate-right.visible { transform: translateX(0); }
section.animate-scale { transform: scale(0.95); }
section.animate-scale.visible { transform: scale(1); }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--primary);
}

.section-title p {
  color: var(--gray-600);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px var(--section-padding-x);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: none;
}

.logo-text.show {
  display: inline;
}

.logo span {
  color: var(--accent);
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  color: var(--gray-200);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-desktop a:hover {
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
}

.btn-book {
  display: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--primary);
  z-index: 999;
  padding: 80px 24px 24px;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer a {
  display: block;
  color: var(--gray-200);
  text-decoration: none;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-drawer a:hover {
  color: var(--accent);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--section-padding-x) 100px;
}

.hero-content-inner {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.25);
  color: var(--accent-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  color: var(--gray-200);
  font-size: 1.2rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Slider Navigation */
.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot:hover,
.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--section-padding-x);
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: auto;
}

.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ============================================
   Page Banner (Services, Contact)
   ============================================ */
.page-banner {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--section-padding-x) 80px;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-banner h1 span {
  color: var(--accent);
}

.page-banner p {
  color: var(--gray-400);
  font-size: 1.15rem;
}

/* ============================================
   About Section - Two Column
   ============================================ */
.about-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-content {
  text-align: left;
}

.section-badge {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: var(--accent);
}

.about-content > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  margin-bottom: 32px;
}

.about-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.about-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-features strong {
  color: var(--primary);
}

.about-features li div {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill {
  border-radius: 50px;
  padding: 14px 28px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 158, 11, 0.15);
}

/* ============================================
   Services Section - Cards with Images
   ============================================ */
.services {
  background: linear-gradient(180deg, var(--white) 0%, #fafbfc 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(245, 158, 11, 0.15);
  border-color: transparent;
}

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

.services.visible .service-card {
  animation: cardFadeUp 0.7s ease forwards;
}

.services.visible .service-card:nth-child(1) { animation-delay: 0.1s; }
.services.visible .service-card:nth-child(2) { animation-delay: 0.18s; }
.services.visible .service-card:nth-child(3) { animation-delay: 0.26s; }
.services.visible .service-card:nth-child(4) { animation-delay: 0.34s; }
.services.visible .service-card:nth-child(5) { animation-delay: 0.42s; }
.services.visible .service-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes cardFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.service-card-img {
  height: 255px;
  overflow: hidden;
  position: relative;
}

.service-card-img .service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
  pointer-events: none;
}

.service-card-body {
  padding: 26px 24px;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

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

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-badge {
  background: rgba(15, 23, 42, 0.85);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.service-link:hover {
  color: var(--accent-hover);
  transform: translateX(4px);
}

/* ============================================
   CTA Strip (Services page)
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 50px var(--section-padding-x);
}

.cta-strip-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-strip h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-strip p {
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon.location {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
}

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

.contact-info-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-top: 6px;
  line-height: 1.6;
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-desc {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.how-it-works .section-title span { color: var(--accent-light); }
.how-it-works .section-title h2 { color: var(--white); }
.how-it-works .section-title p { color: var(--gray-400); }

.how-it-works .step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.how-it-works .step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
}

.how-it-works .step-card h3 { color: var(--white); }
.how-it-works .step-card p { color: var(--gray-400); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(40px);
}

.how-it-works.visible .step-card {
  animation: cardFadeUp 0.7s ease forwards;
}

.how-it-works.visible .step-card:nth-child(1) { animation-delay: 0.15s; }
.how-it-works.visible .step-card:nth-child(2) { animation-delay: 0.3s; }
.how-it-works.visible .step-card:nth-child(3) { animation-delay: 0.45s; }
.how-it-works.visible .step-card:nth-child(4) { animation-delay: 0.6s; }

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  background: var(--gray-100);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(40px);
}

.why-us.visible .why-card {
  animation: cardFadeUp 0.6s ease forwards;
}

.why-us.visible .why-card:nth-child(1) { animation-delay: 0.1s; }
.why-us.visible .why-card:nth-child(2) { animation-delay: 0.2s; }
.why-us.visible .why-card:nth-child(3) { animation-delay: 0.3s; }
.why-us.visible .why-card:nth-child(4) { animation-delay: 0.4s; }

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  background: var(--white);
}

.why-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ============================================
   Popular Destinations Section
   ============================================ */
.destinations {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(40px);
}

.destinations.visible .dest-card {
  animation: cardFadeUp 0.6s ease forwards;
}

.destinations.visible .dest-card:nth-child(1) { animation-delay: 0.1s; }
.destinations.visible .dest-card:nth-child(2) { animation-delay: 0.2s; }
.destinations.visible .dest-card:nth-child(3) { animation-delay: 0.3s; }
.destinations.visible .dest-card:nth-child(4) { animation-delay: 0.4s; }

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.dest-card-img {
  height: 180px;
  overflow: hidden;
}

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

.dest-card:hover .dest-card-img img {
  transform: scale(1.1);
}

.dest-card-body {
  padding: 24px;
}

.dest-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.dest-card .distance {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

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

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

.gallery-section.visible .gallery-item {
  animation: cardFadeUp 0.5s ease forwards;
}

.gallery-section.visible .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-section.visible .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-section.visible .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-section.visible .gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-section.visible .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-section.visible .gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-section.visible .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-section.visible .gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-section.visible .gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-section.visible .gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-section.visible .gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-section.visible .gallery-item:nth-child(12) { animation-delay: 0.6s; }

.gallery-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-600);
}

.gallery-empty a {
  color: var(--accent);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 70px 60px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: var(--accent);
  transform: scale(1.08);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================
   Fleet Section
   ============================================ */
.fleet {
  background: var(--primary);
  color: var(--white);
}

.fleet .section-title span { color: var(--accent-light); }
.fleet .section-title h2 { color: var(--white); }
.fleet .section-title p { color: var(--gray-400); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.fleet-card {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(40px);
}

.fleet.visible .fleet-card {
  animation: cardFadeUp 0.7s ease forwards;
}

.fleet.visible .fleet-card:nth-child(1) { animation-delay: 0.1s; }
.fleet.visible .fleet-card:nth-child(2) { animation-delay: 0.18s; }
.fleet.visible .fleet-card:nth-child(3) { animation-delay: 0.26s; }
.fleet.visible .fleet-card:nth-child(4) { animation-delay: 0.34s; }
.fleet.visible .fleet-card:nth-child(5) { animation-delay: 0.42s; }

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: var(--accent);
}

.fleet-card-image {
  height: 255px;
  overflow: hidden;
}

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

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.08);
}

.fleet-card-content {
  padding: 24px;
}

.fleet-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--white);
}

.fleet-card .capacity {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   Stats Section - Card Design
   ============================================ */
.stats {
  background: linear-gradient(180deg, #0f172a 0%, #1a2744 100%);
  padding: 80px var(--section-padding-x);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.stat-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stats.visible .stat-item {
  animation: statSlideUp 0.6s ease forwards;
}

.stats.visible .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats.visible .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats.visible .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats.visible .stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes statSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

.stat-number {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  transition: all var(--transition);
  border-left: 4px solid var(--accent);
  opacity: 0;
  transform: translateY(40px);
}

.testimonials.visible .testimonial-card {
  animation: cardFadeUp 0.6s ease forwards;
}

.testimonials.visible .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials.visible .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials.visible .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-author .location {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================
   FAQ + Contact Form Section - Same Row
   ============================================ */
.faq-contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.faq-column-title,
.form-column-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.faq-list {
  margin: 0;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.faq-contact-section.visible .faq-item {
  animation: cardFadeUp 0.5s ease forwards;
}

.faq-contact-section.visible .faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-contact-section.visible .faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-contact-section.visible .faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-contact-section.visible .faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-contact-section.visible .faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-contact-section.visible .faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-contact-section.visible .faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-contact-section.visible .faq-item:nth-child(8) { animation-delay: 0.45s; }

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--gray-100);
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(245, 158, 11, 0.1);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 20px 24px;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(40px);
}

/* Contact page form - always visible */
.contact-form-box .contact-form-wrapper {
  opacity: 1;
  transform: none;
}

.faq-contact-section.visible .contact-form-wrapper {
  animation: cardFadeUp 0.7s ease 0.2s forwards;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-submit {
  margin-top: 24px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* ============================================
   CTA Section - Premium Design
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0c1220 50%, var(--primary-light) 100%);
  text-align: center;
  padding: 100px var(--section-padding-x);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.25);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta p {
  color: var(--gray-400);
  margin-bottom: 32px;
  font-size: 1.15rem;
  line-height: 1.6;
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  border: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.btn-cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
}

.btn-icon {
  font-size: 1.25rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #0a0f1a;
  color: var(--gray-400);
  padding: 60px var(--section-padding-x) 30px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
}

/* Fixed Call & WhatsApp Buttons */
.fixed-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fixed-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.fixed-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  color: white;
  transition: transform 0.3s ease;
}

.fixed-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.fixed-btn:hover svg {
  transform: scale(1.08);
}

.fixed-btn:active {
  transform: scale(1.02);
}

/* Call button - green */
.fixed-btn.call {
  background: linear-gradient(145deg, #22c55e, #16a34a);
}

.fixed-btn.call:hover {
  box-shadow: 0 10px 35px rgba(34, 197, 94, 0.45);
}

/* WhatsApp button */
.fixed-btn.whatsapp {
  background: linear-gradient(145deg, #25d366, #128c7e);
}

.fixed-btn.whatsapp:hover {
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
}

.fixed-btn.call {
  animation: btn-glow-call 2.5s ease-in-out infinite;
}

.fixed-btn.whatsapp {
  animation: btn-glow-wa 2.5s ease-in-out infinite 0.5s;
}

@keyframes btn-glow-call {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35); }
}

@keyframes btn-glow-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35); }
}

/* Desktop - larger icons */
@media (min-width: 768px) {
  .fixed-buttons {
    bottom: 32px;
    right: 32px;
    gap: 16px;
  }

  .fixed-btn {
    width: 64px;
    height: 64px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  }

  .fixed-btn svg {
    width: 30px;
    height: 30px;
  }

  .fixed-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-book {
    display: inline-flex;
  }

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

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

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

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

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

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

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

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

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

  .page-banner {
    height: 40vh;
    min-height: 240px;
  }

  .page-banner-content {
    padding: 100px var(--section-padding-x) 60px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px var(--section-padding-x);
  }

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

  .about-image {
    order: -1;
  }

  .about-image img {
    min-height: 280px;
  }

  .about-buttons {
    flex-direction: column;
  }

  .about-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 28px 20px;
  }

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

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .contact-form-box {
    padding: 28px 20px;
  }

  .hero-arrows {
    display: none;
  }

  .hero-slider {
    min-height: 450px;
    height: 85vh;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

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

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

  .service-card-img img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .fleet-card-image {
    height: 220px;
  }

  .fleet-card-image img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lightbox-content {
    padding: 70px 16px 50px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .page-banner {
    height: 35vh;
    min-height: 200px;
  }

  .page-banner h1 {
    font-size: 1.75rem;
  }

  .page-banner-content {
    padding: 100px 20px 50px;
  }

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

  .cta-strip {
    padding: 40px 20px;
  }

  .cta-strip h3 {
    font-size: 1.25rem;
  }

  .contact-grid {
    gap: 32px;
  }

  .header {
    padding: 14px 20px;
  }

  .fixed-buttons {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding-x: 16px;
  }

  .hero-content h1 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .service-card-body,
  .fleet-card-content {
    padding: 20px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 100px var(--section-padding-x);
  }
}
