/* ============================================
   VipTransfer Alanya - Main Stylesheet
   ============================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid/flex overflow fix */
.about-content,
.about-images,
.service-card,
.reason-item,
.footer-col,
.footer-brand,
.booking-strip-text {
  min-width: 0;
}

body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 998;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: var(--dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.navbar-brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.brand-vip {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.brand-transfer {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
}

.brand-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: 6px;
  align-self: center;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.navbar-menu-footer {
  display: none;
}

.navbar-menu-contact {
  display: none;
}

.navbar-menu-list a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar-menu-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-menu-list a:hover { color: var(--gold); }
.navbar-menu-list a:hover::after { width: 100%; }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.lang-btn:hover { background: rgba(201,168,76,0.2); }

.nav-wa-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(37,211,102,0.35);
}

.nav-wa-btn:hover {
  background: #1ebe57;
  transform: scale(1.06);
  color: var(--white);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 150px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--gray-light);
  transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.flag-img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

.btn-book {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menu Close Button (mobile only) */
.menu-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1001;
}
.menu-close:hover { background: var(--gold); color: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-actions .btn-primary,
.contact-actions .btn-whatsapp {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat span { color: var(--gold); font-size: 1.5rem; }

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  color: var(--gold);
  animation: bounce 2s infinite;
  transition: var(--transition);
}

.hero-scroll a:hover { background: rgba(201,168,76,0.1); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

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

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}


/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.left { text-align: left; }

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== REASONS ===== */
.reasons {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.reasons-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.reasons-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px 60px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.reasons-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.reasons-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin: 0;
  max-width: 520px;
}

.reasons-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
  max-width: 280px;
  text-align: right;
  padding-bottom: 4px;
}

.reasons-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(160deg, rgba(34,34,34,0.85) 0%, rgba(17,17,17,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 24px 64px rgba(0,0,0,0.45);
}

.reason-item {
  position: relative;
  padding: 44px 36px 48px;
  transition: background 0.4s ease;
}

.reason-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.reason-item--featured {
  background: rgba(201,168,76,0.04);
}

.reason-item--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reason-num {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.28);
  user-select: none;
  transition: color 0.4s ease;
}

.reason-item:hover .reason-num {
  color: rgba(255,255,255,0.45);
}

.reason-item-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.reason-item:hover .reason-item-accent {
  transform: scaleY(1);
  transform-origin: top;
}

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

.reason-item h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
  padding-right: 56px;
  padding-top: 4px;
}

.reason-item p {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark-2);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 28px 60px rgba(0,0,0,0.5);
}

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

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-4);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0) 0%,
    rgba(10,10,10,0.25) 40%,
    rgba(10,10,10,0.92) 100%
  );
  pointer-events: none;
}

.service-card-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-card-body {
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.service-card-body p {
  color: var(--gray-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.services .section-header {
  margin-bottom: 56px;
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover .service-card-media img {
    transform: none;
  }
  .service-card:hover {
    transform: none;
  }
}

/* ===== FLEET ===== */
.fleet { background: var(--dark); overflow: hidden; }

.fleet-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.fleet-slider-viewport {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.fleet-slider-viewport::-webkit-scrollbar { display: none; }
.fleet-slider-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

.fleet-slider-track {
  display: flex;
  gap: 20px;
  padding: 4px 2px 12px;
}

.fleet-item {
  flex: 0 0 clamp(280px, 72vw, 380px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 260px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.fleet-item:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.fleet-item:hover img {
  transform: scale(1.05);
}

.fleet-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: var(--dark-3);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 2;
}

.fleet-nav:hover:not(:disabled) {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.fleet-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ===== ABOUT ===== */
.about { background: var(--dark); }

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

.about-images {
  position: relative;
  overflow: hidden;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

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

.about-img-secondary {
  position: absolute;
  top: 40px;
  right: 0;
  width: 160px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: var(--shadow);
}

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

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

.about-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.about-features li i { color: var(--gold); font-size: 1rem; }

/* ===== GALLERY ===== */
.gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}

.gallery-item.large {
  grid-column: span 2;
  height: 280px;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

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

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== BOOKING STRIP ===== */
.booking-strip {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 52px 0;
}

.booking-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.booking-strip-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.booking-strip-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
  max-width: 620px;
}

.booking-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 16px 32px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.booking-strip-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.booking-strip-btn:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.booking-strip-btn:hover i {
  transform: translateX(4px);
}

.booking-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.booking-strip-btn--call {
  background: var(--white);
  color: var(--dark);
}

.booking-strip-btn--wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}

.booking-strip-btn--wa:hover {
  background: #1ebe57;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.booking-strip-btn--wa i {
  font-size: 1.1rem;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

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

.cta-content { max-width: 700px; margin: 0 auto; }

.cta-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark-4); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-col ul li a i { font-size: 0.65rem; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.875rem;
}

.footer-contact-list li i { color: var(--gold); width: 16px; }
.footer-contact-list li a { color: var(--gray); transition: var(--transition); }
.footer-contact-list li a:hover { color: var(--gold); }

.footer-col ul li a,
.footer-contact-list li,
.footer-contact-list li a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--gray); font-size: 0.8rem; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--gray);
  font-size: 0.8rem;
  transition: var(--transition);
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  right: max(24px, env(safe-area-inset-right, 0px));
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* ===== FLOAT CONTACT (WhatsApp, Call, Instagram) ===== */
.float-contact {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  left: max(24px, env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-call {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.float-call:hover {
  background: var(--gold-light);
}

.float-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 20px rgba(220,39,67,0.4);
}

.float-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse-green 2s infinite;
}

.float-whatsapp:hover {
  animation: none;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .fleet-item { flex: 0 0 clamp(260px, 65vw, 340px); height: 220px; }
  .fleet-nav { width: 42px; height: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-main { height: 380px; }

  .reasons-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reasons-lead {
    text-align: left;
    max-width: 100%;
  }
  .reasons-showcase { grid-template-columns: 1fr; }
  .reason-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  .about-images { overflow: hidden; }

  /* Navbar — full screen mobile menu */
  .navbar-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    left: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: max(72px, env(safe-area-inset-top, 0px)) 0 0;
    gap: 0;
    border: none;
    border-radius: 0;
    z-index: 999;
    box-shadow: none;
    overflow: hidden;
  }
  .navbar-menu.open {
    transform: translateX(0);
  }
  .navbar-menu-list {
    flex: 0 1 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    overflow-y: auto;
    padding: 8px 28px max(32px, env(safe-area-inset-bottom, 0px));
  }
  .navbar-menu-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .navbar-menu-contact {
    display: block;
    border-bottom: none;
    padding: 8px 8px 4px;
  }
  .navbar-menu-list > li > a {
    display: block;
    width: 100%;
    padding: 18px 8px;
    font-size: 1.05rem;
    letter-spacing: 1.2px;
    white-space: normal;
  }
  .navbar-menu-list > li > a::after {
    display: none;
  }
  .navbar-menu-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: auto;
    padding: 12px 8px 8px;
    border-top: none;
    background: none;
  }
  .navbar-menu-list .menu-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    padding: 0;
    flex: 0 0 auto;
    border-radius: 50%;
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  }
  .menu-contact-call {
    background: var(--gold);
    color: var(--dark);
  }
  .menu-contact-call:hover {
    background: var(--gold-light);
    transform: scale(1.06);
    color: var(--dark);
  }
  .menu-contact-wa {
    background: #25D366;
    color: var(--white);
  }
  .menu-contact-wa:hover {
    background: #1ebe57;
    transform: scale(1.06);
    color: var(--white);
  }
  .menu-close {
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
  }
  .hamburger { display: flex !important; }
  .menu-close { display: flex; }
  .btn-book { display: none; }

  /* Hero */
  .hero {
    min-height: 0;
    height: 100svh;
    height: 100dvh;
  }
  .hero-content { padding-top: 72px; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: row; gap: 10px; margin-bottom: 36px; }
  .btn-primary, .btn-outline { padding: 14px 22px; font-size: 0.85rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-whatsapp {
    width: auto;
    max-width: none;
    padding: 14px 20px;
    font-size: 0.82rem;
  }
  .btn-whatsapp { padding: 14px 20px; font-size: 0.82rem; }

  .nav-wa-btn { display: flex; }

  /* About */
  .about-grid { gap: 40px; }
  .about-img-secondary { display: none; }
  .about-img-main { height: 280px; }
  .about-content .section-title { font-size: 1.6rem; }

  /* Reasons */
  .reasons-head {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }
  .reason-item { padding: 32px 28px 36px; }
  .reason-item h3 { padding-right: 44px; font-size: 1rem; }
  .reason-num { top: 6px; right: 10px; font-size: 2.25rem; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card-body { padding: 16px 18px 18px; }
  .service-card-body p { font-size: 0.82rem; }
  .service-card-overlay { padding: 16px; }
  .service-card-overlay h3 { font-size: 1.05rem; }
  .services .section-header { margin-bottom: 36px; }

  /* Fleet */
  .fleet-slider { padding: 0 12px; gap: 6px; }
  .fleet-item { flex: 0 0 min(78vw, 320px); height: 200px; }
  .fleet-nav { width: 38px; height: 38px; font-size: 0.85rem; flex-shrink: 0; }

  /* Lightbox */
  .lightbox-close {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: 12px;
    width: 42px;
    height: 42px;
  }
  .lightbox-prev { left: 8px; width: 42px; height: 42px; }
  .lightbox-next { right: 8px; width: 42px; height: 42px; }
  .lightbox-content { max-width: 94vw; padding: 0 8px; }

  /* CTA */
  .booking-strip { padding: 40px 0; }
  .booking-strip-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .booking-strip-text h2 { max-width: 100%; }
  .booking-strip-actions { width: auto; flex-direction: row; flex-wrap: wrap; }
  .booking-strip-btn {
    width: auto;
    padding: 14px 22px;
    font-size: 0.85rem;
  }

  .cta-section { padding: 70px 0; background-attachment: scroll; }
  .cta-content h2 { font-size: 1.6rem; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-outline-white { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-top { padding: 50px 0 40px; }

  /* Section spacing */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 1.6rem; }

  /* Floating buttons */
  .back-to-top { right: max(16px, env(safe-area-inset-right, 0px)); }
  .float-contact { left: max(16px, env(safe-area-inset-left, 0px)); gap: 10px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }

  /* Navbar */
  .navbar .container { gap: 10px; }
  .navbar-brand { min-width: 0; }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  /* Navbar */
  .brand-vip, .brand-transfer { font-size: 1.15rem; }
  .brand-sub { display: none; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 7px 10px; gap: 4px; }
  .lang-dropdown {
    right: 0;
    left: auto;
    min-width: 148px;
    max-width: calc(100vw - 32px);
  }
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }

  /* Hero */
  .hero-title { font-size: 1.65rem; }
  .hero-subtitle { font-size: 0.85rem; line-height: 1.65; }
  .slider-dots { right: 16px; bottom: max(20px, env(safe-area-inset-bottom, 0px)); }
  .hero-scroll { display: none; }

  /* About */
  .about-img-main { height: 240px; }

  /* Reasons */
  .reason-item { padding: 28px 22px 32px; }
  .reasons-title { font-size: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card-body { padding: 14px 16px 16px; }
  .service-card-media { aspect-ratio: 16 / 10; }
  .service-card-overlay h3 { font-size: 1rem; }

  /* Fleet */
  .fleet-slider { padding: 0 8px; gap: 0; }
  .fleet-item { flex: 0 0 min(88vw, 300px); height: 180px; }
  .fleet-nav { display: none; }
  .fleet-slider-viewport { width: 100%; }

  /* Footer */
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .footer-social { justify-content: flex-start; }
  .footer-col h4 { margin-bottom: 16px; }

  /* Booking */
  .booking-strip-label { letter-spacing: 1.5px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .btn-primary { font-size: 0.82rem; padding: 13px 18px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
  .back-to-top { width: 40px; height: 40px; }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ===== INPUT DATE COLOR FIX ===== */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
}
