/* ============================================
   VIP TRANSFERS CYPRUS - Luxury Theme
   ============================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e8e8e8;
  background: #0a0a0a;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* VARIABLES */
:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #232323;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-deep: #a8862a;
  --cream: #f5e9c8;
  --text: #e8e8e8;
  --muted: #9a9a9a;
  --line: rgba(212, 175, 55, 0.2);
  --shadow: 0 25px 50px rgba(0,0,0,0.5);
  --gold-gradient: linear-gradient(135deg, #f0d878 0%, #d4af37 45%, #a8862a 100%);
  --gold-gradient-2: linear-gradient(135deg, #d4af37 0%, #f0d878 50%, #a8862a 100%);
  --container: 1240px;
  --radius: 14px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { color: var(--muted); }
em { font-style: italic; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #1a1206;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
  background: var(--gold-gradient-2);
}
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #1a1206;
}
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* TOPBAR */
.topbar {
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 0.85rem;
  color: #b0b0b0;
  padding: 9px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold-light); }
.topbar i { color: var(--gold); font-size: 0.85rem; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.15); }
.topbar-info { display: inline-flex; align-items: center; gap: 6px; }

/* LANGUAGE SWITCHER */
.lang-switcher { position: relative; }
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold-light);
  transition: all .2s;
}
.lang-current:hover { border-color: var(--gold); background: rgba(212,175,55,.1); }
.lang-current i { font-size: 0.65rem; }
.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.lang-switcher.open .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-list li {
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #d0d0d0;
  transition: background .15s;
}
.lang-list li:hover { background: rgba(212,175,55,.1); color: var(--gold-light); }
.lang-flag { font-size: 1rem; }

/* HEADER */
.header {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all .3s;
}
.header.scrolled { background: rgba(10,10,10,.95); border-bottom-color: rgba(212,175,55,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}
.logo-sub { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.4em; font-weight: 500; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: #ccc;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width .3s;
}
.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.mobile-only { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--gold); transition: all .25s; border-radius: 2px; }
.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); }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.55) saturate(0.9) contrast(1.05);
  z-index: 1;
  animation: kenburns 20s ease infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-20px,-10px); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,.15), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.85) 100%);
  z-index: 2;
}
.hero-inner { position: relative; z-index: 3; padding: 80px 24px; width: 100%; }
.hero-content { max-width: 800px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow i { color: var(--gold); }
.hero-title {
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}
.hero-title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #d0d0d0;
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-stats span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  z-index: 3;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll i { color: var(--gold); }
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* SECTIONS */
section { position: relative; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section-head .eyebrow { display: inline-block; }
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 1.08rem; max-width: 580px; margin: 0 auto; }

/* BOOKING */
.booking { padding: 80px 0 100px; background: var(--black); margin-top: -90px; position: relative; z-index: 5; }
.booking-card {
  background: linear-gradient(155deg, #1a1a1a 0%, #131313 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.booking-head { text-align: center; margin-bottom: 36px; }
.booking-head h2 { margin-bottom: 10px; }
.booking-head p { color: var(--muted); }
.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 0 16px;
  transition: all .2s;
}
.input-wrap:focus-within { border-color: var(--gold); background: rgba(212,175,55,.05); }
.input-wrap i { color: var(--gold); font-size: 0.95rem; margin-right: 12px; }
.input-wrap input, .input-wrap select, .input-wrap textarea {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 0.95rem;
  padding: 14px 0;
  width: 100%;
}
.input-wrap textarea { padding: 14px 0; resize: vertical; }
.input-wrap select { cursor: pointer; appearance: none; padding-right: 22px; }
.input-wrap select option { background: var(--black-2); color: #fff; }
.input-wrap input::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(8) hue-rotate(0deg); cursor: pointer; }
.booking-form button { grid-column: 1 / -1; margin-top: 10px; }

/* SERVICES */
.services { padding: 100px 0; background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: linear-gradient(155deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width .35s;
}
.service-card:hover {
  border-color: rgba(212,175,55,.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.45);
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 12px; color: #fff; }
.service-card p { font-size: 0.95rem; }

/* FLEET */
.fleet { padding: 100px 0; background: var(--black); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fleet-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
  border-color: rgba(212,175,55,.5);
}
.fleet-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.fleet-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
}
.fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: #1a1206;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.fleet-body { padding: 28px; }
.fleet-body h3 { color: #fff; margin-bottom: 6px; }
.fleet-tag {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.fleet-features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #c0c0c0;
  padding: 5px 11px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 100px;
}
.fleet-features i { color: var(--gold); font-size: 0.85rem; }

/* WHY US */
.whyus { padding: 110px 0; background: linear-gradient(180deg, var(--black) 0%, #080808 100%); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyus-content .eyebrow { display: inline-block; padding-bottom: 14px; }
.whyus-content h2 { margin-bottom: 20px; }
.whyus-content > p { margin-bottom: 36px; font-size: 1.05rem; }
.why-list { display: grid; gap: 26px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item i {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.why-item h4 { color: #fff; margin-bottom: 4px; font-size: 1.1rem; }
.why-item p { font-size: 0.92rem; color: var(--muted); }

.whyus-image {
  position: relative;
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
}
.whyus-image-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/whyus.jpg') center/cover;
  filter: brightness(0.75) saturate(0.85);
}
.whyus-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,.6) 100%);
}
.whyus-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 16px;
  z-index: 2;
}
.whyus-floating-card i {
  font-size: 1.6rem;
  color: var(--gold);
}
.whyus-floating-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}
.whyus-floating-card span {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ABOUT */
.about { padding: 100px 0; background: var(--black); }
.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-deep), var(--black));
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.about-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,.2) 0%, transparent 60%);
  pointer-events: none;
}
.about-content .eyebrow { display: inline-block; padding-bottom: 14px; }
.about-content h2 { margin-bottom: 22px; }
.about-content p { margin-bottom: 18px; font-size: 1.04rem; line-height: 1.75; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* REVIEWS */
.reviews { padding: 100px 0; background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%); }
.rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 22px;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 100px;
}
.rating-strip .stars { color: var(--gold); display: flex; gap: 4px; }
.rating-strip span { color: #d0d0d0; font-size: 0.95rem; }
.rating-strip strong { color: var(--gold-light); font-size: 1.1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.review-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
}
.review-card:hover { border-color: rgba(212,175,55,.4); transform: translateY(-4px); }
.review-stars { color: var(--gold); margin-bottom: 16px; display: flex; gap: 3px; font-size: 0.85rem; }
.review-card p {
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  padding-left: 18px;
}
.review-card p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #1a1206;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.review-author strong { display: block; color: #fff; font-size: 0.95rem; }
.review-author span { font-size: 0.8rem; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 50px; }

/* CONTACT */
.contact { padding: 100px 0; background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info { display: grid; gap: 14px; align-content: start; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .25s;
}
a.contact-item:hover { border-color: rgba(212,175,55,.5); transform: translateX(4px); }
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-icon.green {
  background: linear-gradient(135deg, rgba(37,211,102,.18), rgba(37,211,102,.05));
  border-color: rgba(37,211,102,.4);
  color: #25d366;
}
.contact-item span { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-item strong { display: block; color: #fff; font-size: 1rem; font-weight: 500; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}
.contact-map iframe { display: block; min-height: 460px; }

/* CTA STRIP */
.cta-strip {
  padding: 70px 0;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.15), transparent 70%),
    linear-gradient(135deg, #1a1206, #0a0a0a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inner h3 { color: #fff; font-size: 2rem; margin-bottom: 6px; }
.cta-inner p { color: #c0c0c0; }

/* FOOTER */
.footer { background: #050505; padding: 80px 0 0; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.footer-col a, .footer-col p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #b0b0b0;
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col i { color: var(--gold); font-size: 0.85rem; width: 16px; }
.footer-col > p { display: block; margin-bottom: 20px; max-width: 320px; line-height: 1.7; color: #999; }
.logo-footer { margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
  transition: all .25s;
}
.footer-social a:hover { background: var(--gold-gradient); color: #1a1206; border-color: transparent; transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 0.85rem; color: var(--muted); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, .55); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: wapulse 2s ease-out infinite;
}
@keyframes wapulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: .04s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: .12s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: .20s; }
.fleet-grid .fleet-card.reveal:nth-child(2) { transition-delay: .12s; }
.fleet-grid .fleet-card.reveal:nth-child(3) { transition-delay: .24s; }
.reviews-grid .review-card.reveal:nth-child(2) { transition-delay: .08s; }
.reviews-grid .review-card.reveal:nth-child(3) { transition-delay: .16s; }
.reviews-grid .review-card.reveal:nth-child(4) { transition-delay: .24s; }
.why-list .why-item.reveal:nth-child(2) { transition-delay: .08s; }
.why-list .why-item.reveal:nth-child(3) { transition-delay: .16s; }
.why-list .why-item.reveal:nth-child(4) { transition-delay: .24s; }

/* RESPONSIVE */

/* ============ TABLET & SMALL DESKTOP (≤ 1024px) ============ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .booking-card { padding: 40px 30px; }
  .hero-stats { gap: 36px; }
  .whyus-grid { gap: 50px; }
  .about-inner { gap: 50px; }
}

/* ============ TABLET (≤ 980px) ============ */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--black-2);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 30px 30px;
    gap: 8px;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 99;
    overflow-y: auto;
  }
  .nav a { width: 100%; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav a:last-child { border-bottom: 0; }
  .nav.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav-overlay { display: none; }
  .hamburger { display: flex; padding: 10px; margin-right: -10px; }
  .mobile-only { display: inline-flex; }
  .header-actions .btn-gold { display: none; }

  .topbar { padding: 8px 0; }
  .topbar-left .topbar-info, .topbar-divider { display: none; }
  .topbar-left a, .topbar-right { font-size: 0.78rem; gap: 12px; }
  .topbar-left a span { display: none; }
  .topbar-left a i { font-size: 0.95rem; }

  .header-inner { padding: 12px 20px; }
  .logo img { width: 44px; height: 44px; }
  .logo-title { font-size: 1.2rem; }
  .logo-sub { font-size: 0.65rem; letter-spacing: 0.3em; }

  .hero { min-height: auto; padding: 50px 0 70px; }
  .hero-eyebrow { font-size: 0.78rem; padding: 7px 16px; margin-bottom: 22px; }
  .hero-subtitle { font-size: 1.02rem; margin-bottom: 32px; }
  .hero-cta { margin-bottom: 44px; gap: 12px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; padding-top: 28px; }
  .hero-stats strong { font-size: 2rem; }
  .hero-stats span { font-size: 0.72rem; }
  .hero-scroll { display: none; }

  .booking { padding: 60px 0 70px; margin-top: -60px; }
  .booking-card { padding: 30px 22px; border-radius: 18px; }
  .booking-head { margin-bottom: 26px; }
  .booking-form { grid-template-columns: 1fr 1fr; gap: 16px; }

  section { scroll-margin-top: 80px; }
  .services, .fleet, .reviews, .contact, .about, .whyus { padding: 70px 0; }
  .section-head { margin: 0 auto 44px; }
  .services-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service-card { padding: 32px 24px; }
  .fleet-image { height: 220px; }
  .fleet-body { padding: 22px; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .review-card { padding: 24px; }

  .whyus-grid { grid-template-columns: 1fr; gap: 50px; }
  .whyus-image { height: 380px; }
  .why-list { gap: 22px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 320px; margin: 0 auto; padding: 36px; }

  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-map, .contact-map iframe { min-height: 360px; }

  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 40px; }
}

/* ============ MOBILE (≤ 640px) ============ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.3rem; }

  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 15px 26px; font-size: 0.95rem; }

  .topbar { padding: 7px 0; font-size: 0.78rem; }
  .topbar-inner { justify-content: space-between; gap: 8px; }
  .topbar-left { gap: 14px; }
  .topbar-right { gap: 12px; }
  .topbar-left a:nth-child(2) { display: none; }
  .topbar-right a[aria-label="Facebook"], .topbar-right a[aria-label="Instagram"] { display: none; }

  .header-inner { padding: 10px 16px; gap: 12px; }
  .logo img { width: 40px; height: 40px; }
  .logo-title { font-size: 1.1rem; }
  .logo-sub { font-size: 0.6rem; }

  .hero { padding: 40px 0 60px; }
  .hero-bg { animation: none; }
  .hero-title { margin-bottom: 18px; }
  .hero-eyebrow { margin-bottom: 18px; letter-spacing: 0.1em; }
  .hero-subtitle { font-size: 0.98rem; }
  .hero-cta { flex-direction: column; margin-bottom: 36px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 22px 14px; padding-top: 24px; }
  .hero-stats > div { gap: 2px; }
  .hero-stats strong { font-size: 1.7rem; }
  .hero-stats span { font-size: 0.66rem; letter-spacing: 0.08em; }

  .booking { padding: 50px 0 60px; margin-top: -40px; }
  .booking-card { padding: 26px 18px; border-radius: 16px; }
  .booking-form { grid-template-columns: 1fr; gap: 14px; }
  .form-group label { font-size: 0.72rem; margin-bottom: 8px; }
  .input-wrap { padding: 0 14px; }
  .input-wrap input, .input-wrap select, .input-wrap textarea { font-size: 0.92rem; padding: 12px 0; }

  .services, .fleet, .reviews, .contact, .about, .whyus { padding: 56px 0; }
  .section-head { margin: 0 auto 32px; }
  .section-head p { font-size: 0.98rem; }

  .services-grid, .fleet-grid, .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 22px; }
  .service-icon { width: 56px; height: 56px; font-size: 1.3rem; margin-bottom: 18px; }
  .fleet-image { height: 200px; }
  .fleet-body { padding: 20px; }
  .fleet-features { gap: 10px; }
  .fleet-features li { padding: 4px 10px; font-size: 0.8rem; }

  .whyus-image { height: 280px; }
  .whyus-floating-card { bottom: 16px; left: 16px; padding: 14px 18px; }
  .whyus-floating-card i { font-size: 1.3rem; }
  .why-item { gap: 14px; }
  .why-item i { width: 42px; height: 42px; font-size: 1rem; }
  .why-item h4 { font-size: 1.02rem; }
  .why-item p { font-size: 0.88rem; }

  .about-image { max-width: 240px; padding: 28px; }
  .about-content p { font-size: 0.98rem; }
  .about-cta { flex-direction: column; gap: 10px; }
  .about-cta .btn { width: 100%; }

  .rating-strip { padding: 10px 16px; flex-wrap: wrap; justify-content: center; }
  .rating-strip .stars { font-size: 0.8rem; }
  .review-card { padding: 22px; }
  .review-card p { font-size: 0.92rem; padding-left: 14px; }

  .contact-item { padding: 16px 18px; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; font-size: 1rem; }
  .contact-item strong { font-size: 0.92rem; word-break: break-word; }
  .contact-map, .contact-map iframe { min-height: 280px; }

  .cta-strip { padding: 50px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner h3 { font-size: 1.6rem; }
  .cta-inner p { font-size: 0.95rem; }
  .cta-inner .btn { width: 100%; max-width: 320px; }

  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 30px; }
  .footer-col p { max-width: none; }
  .footer-bottom-inner { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
  .footer-bottom span { font-size: 0.8rem; }

  .whatsapp-float { width: 56px; height: 56px; font-size: 1.6rem; bottom: 18px; right: 18px; }

  .lang-list { right: 0; min-width: 150px; }
}

/* ============ SMALL PHONES (≤ 380px) ============ */
@media (max-width: 380px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }

  .topbar-left a span { display: none; }
  .topbar-left { gap: 12px; }

  .header-inner { gap: 8px; }
  .logo img { width: 36px; height: 36px; }
  .logo-title { font-size: 1rem; }
  .logo-sub { display: none; }

  .hero-eyebrow { font-size: 0.7rem; padding: 6px 14px; }
  .hero-subtitle { font-size: 0.94rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .hero-stats strong { font-size: 1.5rem; }
  .hero-stats span { font-size: 0.62rem; }

  .booking-card { padding: 22px 14px; }
  .section-head h2 { line-height: 1.2; }

  .service-card, .review-card { padding: 24px 18px; }
  .fleet-body { padding: 18px; }
  .about-image { max-width: 200px; padding: 22px; }
}

/* ============ ACCESSIBILITY: REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ TOUCH DEVICES ============ */
@media (hover: none) and (pointer: coarse) {
  .btn:active { transform: scale(0.98); }
  .service-card:hover, .fleet-card:hover, .review-card:hover { transform: none; }
  a.contact-item:hover { transform: none; }
}
