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

:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #141414;
  --card-bg: #1e1e1e;
  --accent-gold: #D4AF37;
  --text-light: #f0f0f0;
  --text-muted: #cccccc;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-arabic: 'Amiri', serif;
  --transition: all 0.3s ease;
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid var(--accent-gold);
  display: flex;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.lang-btn {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover,
.lang-btn.active {
  color: #000;
  background-color: var(--accent-gold);
}

/* RTL Support Base */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
  font-family: var(--font-arabic);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: var(--font-arabic);
}

[dir="rtl"] .lang-switcher {
  left: auto;
  right: 30px;
}

[dir="rtl"] .scroll-top,
[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 30px;
}

@media (max-width: 768px) {

  [dir="rtl"] .scroll-top,
  [dir="rtl"] .floating-whatsapp {
    left: 20px;
  }
}

[dir="rtl"] .nav-menu ul {
  flex-direction: row-reverse;
}

[dir="rtl"] .btn i,
[dir="rtl"] .feature-item i,
[dir="rtl"] .service-card i {
  margin-left: 10px;
  margin-right: 0;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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



#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #000;
  font-weight: 600;
}

.btn-gold:hover {
  background-color: #bfa030;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #000;
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}

.bg-darker {
  background-color: var(--secondary-bg);
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title .line {
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

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

.nav-menu ul {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.book-btn-container {
  display: block;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background: url('images/hero_luxury_van.png') no-repeat center center/cover;
  /* Fallback if image fails or before generation */
  background-color: #111;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Extra subtle pattern overlay could go here */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.text-shine-gold {
  color: var(--accent-gold);
  background: linear-gradient(to right, #D4AF37 20%, #FFF 40%, #FFF 60%, #D4AF37 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 3s linear infinite;
  display: inline-block;
}

@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}


.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  font-weight: 300;
}

/* Animations */
/* Animations */
.animate-up {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* Button Shine Effect */
.btn-gold {
  background-color: var(--accent-gold);
  color: #000;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
  animation: shine 3s infinite 2s;
  /* Shine every 3 seconds after 2s delay */
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.btn-gold:hover {
  background-color: #bfa030;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}


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

.service-card {
  background-color: var(--secondary-bg);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  background: rgba(212, 175, 55, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: var(--transition);
}

.feature-item:hover i {
  background: var(--accent-gold);
  color: #000;
  transform: scale(1.1);
}

.feature-item h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--text-muted);
}

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

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

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

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px;
  padding-top: 60px;
}

.dest-info h3 {
  color: #fff;
  font-size: 1.4rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero_luxury_van.png') no-repeat center center/cover;
  background-attachment: fixed;
  /* Parallax effect */
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-links ul li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.footer-contact p {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.footer-contact a {
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.8rem;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-gold);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #bfa030;
  transform: translateY(-5px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent-gold);
  font-style: italic;
  margin-top: -15px;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Philosophy Section */
.philosophy-container {
  text-align: center;
}

.philosophy-quote {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-light);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

.philosophy-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 40px auto 0;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    /* Add JS toggle later */
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px 0;
    text-align: center;
  }

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

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger {
    display: block;
  }

  .book-btn-container {
    display: none;
    /* Move to inside nav if needed, or hide */
  }

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

/* Fleet Page Styles - Global */

.fleet-hero {
  padding: 220px 0 100px;
  /* High padding to clear fixed header */
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/fleet_hero_new.jpg') no-repeat center center/cover;
}

.fleet-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.fleet-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--secondary-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

/* Album Slider Styles */
.album-container {
  position: relative;
  overflow: hidden;
  background: #000;
}

.album-slider {
  height: 100%;
  width: 100%;
}

.album-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.album-slide.active {
  opacity: 1;
  z-index: 2;
}

.album-slide.fit-contain {
  object-fit: contain;
  background-color: #0d0d0d;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 80%),
    linear-gradient(45deg, #050505 0%, #0a0a0a 100%);
  /* Luxury texture background */
}

/* Optional: Enhanced blurred background if you want a "clone" look */
.album-slide.fit-contain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.censor-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.censor-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plate-censor {
  position: absolute;
  /* Precisely positioned over the license plate in vclass_4.jpg */
  left: 2.3%;
  bottom: 40.5%;
  width: 8.5%;
  height: 4.5%;
  background: rgba(0, 0, 0, 0.85);
  /* Dark semi-transparent bar */
  backdrop-filter: blur(8px);
  /* Blur effect for extra privacy */
  border-radius: 2px;
  z-index: 5;
}

/* Mobile adjustment for censor */
@media (max-width: 768px) {
  .plate-censor {
    bottom: 40.5%;
    left: 2.3%;
  }
}

.album-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 10;
}

.album-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.album-nav button:hover {
  background: var(--accent-gold);
  color: #000;
}

.album-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

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

.dot.active {
  background: var(--accent-gold);
  width: 25px;
  border-radius: 10px;
}

.fleet-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.fleet-img {
  height: 400px;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.fleet-info p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.fleet-specs li i {
  color: var(--accent-gold);
  width: 20px;
}

/* Fleet Responsive */
@media (max-width: 992px) {
  .fleet-hero {
    padding: 140px 0 60px;
  }

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

  .fleet-img {
    height: 300px;
  }

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

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .philosophy-quote {
    font-size: 1.3rem;
  }
}

/* Services Page Styles */
.services-hero {
  padding: 220px 0 100px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('images/hero_luxury_van.png') no-repeat center center/cover;
}

.services-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 1.5rem;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.services-list-section {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  background: var(--secondary-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 30px;
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 50%;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.service-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Service Standards */
.service-standards {
  padding: 80px 0;
  background: var(--secondary-bg);
  text-align: center;
}

.service-standards h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 50px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.standard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.standard-item i {
  font-size: 2rem;
  color: var(--accent-gold);
}

.standard-item span {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
}

.services-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero_luxury_van.png') fixed no-repeat center center/cover;
}

.services-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
}

/* Services Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 140px 0 60px;
  }

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

  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

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

/* Destinations Page Styles */
.destinations-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 40px 0 80px;
}

.dest-page-card {
  background: var(--secondary-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.dest-page-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dest-img-box {
  height: 250px;
  overflow: hidden;
}

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

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

.dest-content {
  padding: 30px;
}

.dest-content h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.dest-subtitle {
  color: var(--accent-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 500;
}

.dest-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.btn-text {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-text:hover {
  color: #fff;
  gap: 12px;
}

@media (max-width: 768px) {
  .destinations-page-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* FAQ Page Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 15px;
  transition: var(--transition);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  outline: none;
}

.faq-question span {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  padding-right: 20px;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
  color: var(--accent-gold);
}

.faq-question i {
  color: var(--accent-gold);
  font-size: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 0 20px 0;
  /* No top border, just bottom padding */
}

.faq-answer a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: #fff;
}

.trust-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Service Expanded Details */
.service-item {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.service-details-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
}

.service-details-expanded.active {
  max-height: 2000px;
  /* Large enough to fit content */
  margin-top: 30px;
  padding-top: 20px;
}

.service-details-content {
  padding: 20px;
  color: var(--text-muted);
}

.service-details-content h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.service-details-content h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin: 30px 0 15px;
}

.service-details-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-details-content ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-details-content ul li i {
  color: var(--accent-gold);
  margin-top: 5px;
}

.airport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.airport-list span {
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-cta-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--accent-gold);
  margin-top: 40px;
  text-align: center;
}

.service-cta-box p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
}

.service-expand-btn {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  cursor: pointer;
  color: var(--accent-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.service-expand-btn:hover {
  filter: brightness(1.2);
}

.service-expand-btn i {
  transition: transform 0.3s ease;
}

.service-expand-btn.active i {
  transform: rotate(180deg);
}

/* New Detailed Destinations Layout */
.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0 80px;
}

.destination-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--secondary-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.05);
}

.destination-block.reverse {
  direction: rtl;
  /* Quick way to swap columns visually */
}

.destination-block.reverse .dest-block-content {
  direction: ltr;
  /* Reset text direction */
}

.dest-block-img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.destination-block:hover .dest-block-img img {
  transform: scale(1.05);
}

.dest-block-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.dest-block-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.dest-block-content strong {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 900px) {

  .destination-block,
  .destination-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
    padding: 30px 20px;
  }

  .dest-block-img {
    height: 250px;
  }

  .dest-block-content h2 {
    font-size: 1.8rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--secondary-bg);
}

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

.testimonial-card {
  background: var(--card-bg);
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
  color: var(--accent-gold);
}

.testimonial-stars {
  color: #FFD700;
  margin-bottom: 10px;
}

/* Trust Badges */
.trust-badges-section {
  padding: 40px 0;
  background-color: #000;
  text-align: center;
}

.trust-badges-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.trust-badge i {
  font-size: 2.5rem;
  color: var(--accent-gold);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
}

/* Fleet & Vehicle Page Hero Styles */
.fleet-hero {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  background-color: #111;
}

.fleet-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for readability */
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.fleet-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .fleet-hero h1 {
    font-size: 2.5rem;
  }
}

.fleet-hero p {
  font-size: 1.4rem;
  color: #f0f0f0;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero_luxury_van.png') no-repeat center center/cover;
  padding: 240px 0 160px;
  /* Increased padding */
  text-align: center;
}

.contact-hero h1 {
  font-size: 4rem;
  /* Larger Title */
  margin-bottom: 25px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* Increased gap */
  margin-top: 80px;
  /* Increased top margin */
}

.contact-info-panel {
  background: var(--secondary-bg);
  padding: 60px;
  /* Increased padding */
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Increased gap */
  margin-bottom: 40px;
  /* Increased margin */
}

.contact-method i {
  font-size: 2rem;
  /* Larger icons */
  color: var(--accent-gold);
  width: 80px;
  /* Larger icon circle */
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.contact-method:hover i {
  background: var(--accent-gold);
  color: #000;
}

.contact-method h4 {
  font-size: 1.3rem;
  /* Larger text */
  color: #fff;
  margin-bottom: 8px;
}

.contact-method p,
.contact-method a {
  color: var(--text-muted);
  font-size: 1.1rem;
  /* Larger text */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method a:hover {
  color: var(--accent-gold);
}

.contact-form-panel {
  background: var(--card-bg);
  padding: 60px;
  /* Increased padding */
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
  margin-bottom: 30px;
  /* Increased margin */
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
  /* Larger padding */
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  /* Larger text */
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-map {
  margin-top: 80px;
  border-radius: 12px;
  overflow: hidden;
  height: 600px;
  /* Taller Map */
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 900px) {
  .contact-hero {
    padding: 150px 0 80px;
  }

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

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

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

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px;
  }

  .contact-map {
    height: 400px;
  }
}