@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF8F4;
  --cream-2: #F3EDE4;
  --white: #FFFFFF;
  --gold: #B8945A;
  --gold-light: #D4B483;
  --gold-pale: #F0E6D2;
  --gold-dark: #8B6E3A;
  --dark: #1A1510;
  --dark-2: #2C2418;
  --gray: #6B6055;
  --gray-light: #A89F95;
  --border: #E5DDD4;
  --shadow: 0 4px 40px rgba(26,21,16,0.08);
  --shadow-lg: 0 20px 80px rgba(26,21,16,0.12);
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
}

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

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* =====================
   UTILITIES
   ===================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 4vw, 58px);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

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

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn-gold:hover::before {
  transform: translateX(0);
}

.btn-gold span, .btn-gold svg {
  position: relative;
  z-index: 1;
}

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

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

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

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

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* =====================
   NAVIGATION
   ===================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: var(--transition);
}

.nav.scrolled {
  padding: 16px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-hero .nav-links a {
  color: var(--white);
}

.nav-hero .nav-logo-text {
  color: var(--white);
}

.nav-hero .nav-logo-sub {
  color: var(--gold-light);
}

.nav-hero .nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-tel {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.3s;
}

.nav-tel:hover {
  color: var(--gold);
}

.nav-hero .nav-tel {
  color: rgba(255,255,255,0.75);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

.nav-hero .hamburger span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* =====================
   HERO
   ===================== */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,21,16,0.72) 0%,
    rgba(26,21,16,0.45) 50%,
    rgba(26,21,16,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
  width: 100%;
}

.hero-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 720px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-top: 28px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

/* =====================
   BOOKING BAR
   ===================== */

.booking-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.booking-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
}

.booking-field {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s;
  cursor: pointer;
}

.booking-field:hover {
  background: var(--cream);
}

.booking-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-field input,
.booking-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--dark);
  width: 100%;
  cursor: pointer;
}

.booking-field select option {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
}

.booking-field input::placeholder {
  color: var(--gray-light);
}

.booking-btn {
  padding: 0 44px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.booking-btn:hover {
  background: var(--gold-dark);
}

/* =====================
   SERVICES STRIP
   ===================== */

.services-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.3s;
}

.service-item:last-child {
  border-right: none;
}

.service-item:hover {
  background: var(--white);
}

.service-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.service-item-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.service-item-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* =====================
   FLEET SECTION
   ===================== */

.section-pad {
  padding: 120px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

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

.fleet-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.fleet-card:first-child {
  grid-column: span 2;
  aspect-ratio: unset;
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, transparent 60%);
  transition: var(--transition);
}

.fleet-card:hover .fleet-card-overlay {
  background: linear-gradient(to top, rgba(26,21,16,0.92) 0%, rgba(26,21,16,0.1) 70%);
}

.fleet-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.fleet-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.fleet-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.fleet-card-specs {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.fleet-card-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.fleet-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
}

.fleet-card:hover .fleet-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   STATS
   ===================== */

.stats-section {
  background: var(--dark);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =====================
   DESTINATIONS
   ===================== */

.destinations-section {
  background: var(--cream);
}

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

.destinations-header .section-subtitle {
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.8) 0%, transparent 55%);
}

.dest-card-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}

.dest-country {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.dest-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.dest-time {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* =====================
   EXPERIENCE SECTION
   ===================== */

.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.experience-image {
  position: relative;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-image:hover img {
  transform: scale(1.04);
}

.experience-content {
  background: var(--cream-2);
  display: flex;
  align-items: center;
  padding: 80px;
}

.experience-text {
  max-width: 480px;
}

.experience-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.exp-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.exp-item-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  display: block;
  margin-bottom: 3px;
}

.exp-item-text p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

/* =====================
   TESTIMONIALS
   ===================== */

.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  margin-top: 64px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 22px);
  background: var(--cream);
  padding: 52px 48px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold-pale);
  line-height: 0.6;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

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

/* =====================
   CTA SECTION
   ===================== */

.cta-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,21,16,0.88) 0%, rgba(26,21,16,0.5) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.cta-content .section-label {
  color: var(--gold-light);
}

.cta-content h2 {
  font-size: clamp(40px, 4.5vw, 68px);
  color: var(--white);
  max-width: 600px;
  margin-bottom: 36px;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  background: var(--dark-2);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-social svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.6);
  fill: none;
  transition: stroke 0.3s;
}

.footer-social a:hover svg {
  stroke: var(--white);
}

.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-col ul a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  letter-spacing: 0.05em;
}

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

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */

.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.92) 0%, rgba(26,21,16,0.60) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.page-hero-content .section-label {
  color: var(--gold-light);
}

.page-hero-content h1 {
  font-size: clamp(42px, 5vw, 72px);
  color: var(--white);
  font-weight: 300;
}

/* =====================
   FLEET PAGE
   ===================== */

.fleet-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.jet-card {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s;
}

.jet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.jet-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

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

.jet-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.jet-card-body {
  padding: 36px 40px;
}

.jet-card-name {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 6px;
}

.jet-card-model {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.jet-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.jet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}

.jet-spec label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 4px;
}

.jet-spec span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--dark);
  font-weight: 400;
}

/* =====================
   SERVICES PAGE
   ===================== */

.services-full {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.services-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-big-card {
  background: var(--white);
  padding: 52px 44px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-big-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-big-card:hover {
  background: var(--cream);
}

.service-big-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 24px;
}

.service-big-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}

.service-big-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
}

.service-big-title {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-big-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 300;
}

/* =====================
   BOOKING PAGE
   ===================== */

.booking-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
}

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 60px;
  box-shadow: var(--shadow);
}

.form-section-title {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-section-title span {
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-pale);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

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

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}

.form-submit-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 13px;
  color: var(--gray-light);
  font-weight: 300;
}

/* =====================
   ABOUT PAGE
   ===================== */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
}

.about-image-wrap {
  position: relative;
}

.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.about-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.about-values {
  background: var(--cream);
}

.about-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
}

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

.value-item {
  padding: 44px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.value-item:hover {
  box-shadow: var(--shadow);
}

.value-icon {
  margin-bottom: 24px;
}

.value-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
}

.value-title {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 300;
}

/* =====================
   CONTACT PAGE
   ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 46px;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dark);
  fill: none;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
}

.contact-form-card {
  background: var(--cream);
  padding: 52px;
  border: 1px solid var(--border);
}

/* =====================
   DESTINATIONS PAGE
   ===================== */

.dest-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.dest-full-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
}

.dest-full-card:first-child {
  grid-column: span 2;
  aspect-ratio: unset;
  min-height: 500px;
}

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

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

.dest-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, transparent 55%);
}

.dest-full-info {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dest-full-text .dest-country {
  margin-bottom: 4px;
}

.dest-full-text .dest-city {
  font-size: 36px;
}

.dest-full-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.dest-full-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.dest-full-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
}

/* =====================
   SUCCESS PAGE
   ===================== */

.success-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.success-card {
  max-width: 560px;
  text-align: center;
  padding: 80px 60px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-dark);
  fill: none;
}

/* =====================
   AIRPORT AUTOCOMPLETE
   ===================== */

.autocomplete-wrap {
  position: relative;
  width: 100%;
}

.airport-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--dark);
  width: 100%;
  cursor: text;
}

.airport-input::placeholder {
  color: var(--gray-light);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
}

.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -32px;
  right: -32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(26,21,16,0.14);
  z-index: 600;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.autocomplete-dropdown.open {
  display: block;
}

.autocomplete-item {
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.ac-highlighted {
  background: var(--cream);
}

.ac-iata {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 8px;
  min-width: 46px;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.ac-details {
  flex: 1;
  min-width: 0;
}

.ac-city {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-airport {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--gray-light);
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autocomplete-empty {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--gray-light);
  text-align: center;
  font-weight: 300;
}

/* booking field fix for autocomplete */
.booking-field .autocomplete-wrap .airport-input {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--dark);
}

/* form group autocomplete */
.form-group .autocomplete-wrap {
  width: 100%;
}

.form-group .autocomplete-wrap .airport-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-group .autocomplete-wrap .airport-input:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group .autocomplete-dropdown {
  left: 0;
  right: 0;
  top: 100%;
}

/* =====================
   ANIMATIONS
   ===================== */

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

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-card:first-child {
    grid-column: span 2;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-big-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-intro {
    gap: 60px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .container,
  .nav-inner {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-tel {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .booking-bar-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .booking-field {
    border-bottom: 1px solid var(--border);
  }
  .booking-btn {
    grid-column: span 2;
    padding: 24px;
    text-align: center;
    justify-content: center;
  }
  .services-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .service-item {
    border-bottom: 1px solid var(--border);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
    gap: 0;
  }
  .stat-item {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .experience-section {
    grid-template-columns: 1fr;
  }
  .experience-image {
    height: 380px;
  }
  .experience-content {
    padding: 60px 40px;
  }
  .about-intro {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .about-badge {
    right: 12px;
  }
  .fleet-full-grid {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .dest-full-grid {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .dest-full-card:first-child {
    grid-column: 1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .booking-page {
    padding: 60px 24px;
  }
  .booking-form-card {
    padding: 36px 28px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
  .hero-content {
    padding: 0 24px;
    padding-top: 100px;
  }
  .page-hero-content {
    padding: 0 24px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .services-big-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 44px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-card:first-child {
    grid-column: 1;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
  }
  .services-strip-inner {
    grid-template-columns: 1fr;
  }
  .section-pad {
    padding: 72px 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }
  .testimonial-card {
    flex: 0 0 calc(90vw);
  }
  .cta-content h2 {
    font-size: 36px;
  }
  .jet-specs {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form-card {
    padding: 32px 24px;
  }
  .success-card {
    padding: 52px 32px;
  }
  .about-badge {
    width: 120px;
    height: 120px;
    right: 0;
  }
  .about-badge-num {
    font-size: 40px;
  }
  .booking-bar-inner {
    grid-template-columns: 1fr;
  }
  .booking-btn {
    grid-column: 1;
  }
}
