/* ===== CSS VARIABLES (Dark Luxury Theme) ===== */
:root {
  /* Backgrounds */
  --bg-body: #0D0D0D;
  --bg-section: #141414;
  --bg-alt: #1A1714;
  --bg-card: #141414;

  /* Accent Colors */
  --gold: #C5A55A;
  --gold-hover: #D4B96A;
  --gold-muted: rgba(197, 165, 90, 0.4);

  /* Text Colors */
  --text-1: #F5F0E8;
  --text-2: #E8E0D0;
  --text-3: #888078;
  --text-muted: #888078;

  /* Borders */
  --border: #2A2520;
  --border-accent: rgba(197, 165, 90, 0.4);

  /* Legacy mappings for compatibility */
  --white: #F5F0E8;
  --off-white: #E8E0D0;
  --light-gray: #1A1714;
  --medium-gray: #2A2520;
  --burgundy: #C5A55A;
  --burgundy-dark: #A8893D;
  --burgundy-light: #D4B96A;
  --black: #0D0D0D;
  --charcoal: #141414;
  --warm-gray: #888078;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(197, 165, 90, 0.4);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-2);
  background: var(--bg-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Accessibility - Focus States */
a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== TYPOGRAPHY ===== */
.font-display {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.font-editorial {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  line-height: 1.6;
}

.font-editorial-italic {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
}

/* Improved serif line-heights */
h1, h2, h3 {
  line-height: 1.3;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* ===== COMPONENTS ===== */
.accent-rule {
  width: 48px;
  height: 2px;
  background: var(--burgundy);
  opacity: 0.6;
}

.accent-rule-center {
  width: 48px;
  height: 2px;
  background: var(--burgundy);
  opacity: 0.6;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg-body);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.3s ease;
  min-height: 48px;
}

@media (min-width: 480px) {
  .btn-primary {
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-1);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold-muted);
  border-radius: 40px;
  transition: all 0.3s ease;
  min-height: 48px;
}

@media (min-width: 480px) {
  .btn-secondary {
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}

.btn-secondary:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo svg {
  height: 40px;
  width: auto;
  color: var(--text-1);
  transition: color 0.3s ease;
}

.header.scrolled .logo svg {
  color: var(--gold);
}

.logo-text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header.scrolled .logo-text {
  color: var(--text-1);
  text-shadow: none;
}

.logo-text span {
  opacity: 0.8;
  font-size: 12px;
  letter-spacing: 0.4em;
  display: block;
  margin-top: 2px;
}

.header.scrolled .logo-text span {
  opacity: 0.6;
}

.nav-desktop {
  display: none;
  gap: 40px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header.scrolled .nav-desktop a {
  color: var(--text-1);
  text-shadow: none;
}

.nav-desktop a:hover {
  color: var(--burgundy);
}

.header-cta {
  display: block;
}

.header-cta a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: 10px 16px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .header-cta a {
    font-size: 11px;
    letter-spacing: 0.15em;
    padding: 12px 24px;
  }
}

.header-cta a:hover {
  background: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-section);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
  background: var(--text-1);
  box-shadow: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: var(--bg-section);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-1);
  opacity: 0.9;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--burgundy);
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 1px;
}

.mobile-menu-close::before {
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 140px;
  position: relative;
  overflow: hidden;
  background-image: url('images/hero/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (min-width: 480px) {
  .hero {
    padding: 120px 24px 100px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero-badge {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(198, 54, 79, 0.85);
  border-radius: 40px;
  animation: fadeInUp 0.8s ease forwards;
}

@media (min-width: 480px) {
  .hero-badge {
    font-size: 10px;
    letter-spacing: 0.5em;
    margin-bottom: 40px;
    padding: 10px 24px;
  }
}

.hero-logo {
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

@media (min-width: 480px) {
  .hero-logo {
    margin-bottom: 48px;
  }
}

.hero-logo svg {
  width: clamp(180px, 40vw, 280px);
  height: auto;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.5;
  color: var(--white);
  max-width: 520px;
  margin-bottom: 32px;
  padding: 0 16px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (min-width: 480px) {
  .hero-tagline {
    margin-bottom: 48px;
    padding: 0;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  width: 100%;
  padding: 14px 24px;
  font-size: 11px;
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    gap: 16px;
    width: auto;
    max-width: none;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: auto;
    padding: 16px 32px;
    font-size: 12px;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUpCentered 0.8s ease 0.8s forwards;
  opacity: 0;
}

@media (min-width: 480px) {
  .hero-scroll {
    display: flex;
    bottom: 32px;
  }
}

@media (min-width: 768px) {
  .hero-scroll {
    bottom: 40px;
    gap: 12px;
  }
}

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

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--white), transparent);
  opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-scroll-line {
    height: 40px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpCentered {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.6;
    transform: scaleY(1.2);
  }
}

/* ===== NEW HERO SECTION (Single Image) ===== */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.5) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 180px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-section .hero-tagline {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-section .hero-subtitle {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-section .hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--bg-body);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.hero-section .hero-cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(197, 165, 90, 0.4);
}

/* Hero Booking Bar */
.hero-booking-bar {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 48px);
  max-width: 1100px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  animation: fadeInUpCentered 0.8s ease 0.3s forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-booking-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    width: calc(100% - 48px);
    margin: -60px auto 0;
    z-index: 20;
  }

  .hero-content {
    padding-bottom: 100px;
  }
}

.hero-booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero-booking-form {
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 12px;
    align-items: end;
  }
}

.hero-booking-form .booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-booking-form .booking-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-booking-form .booking-field label svg {
  color: var(--gold);
}

.hero-booking-form .booking-field select,
.hero-booking-form .booking-field input {
  padding: 12px 16px;
  background: rgba(26, 23, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hero-booking-form .booking-field select:focus,
.hero-booking-form .booking-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.2);
}

.hero-booking-form .booking-submit-btn {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg-body);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.hero-booking-form .booking-submit-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.3);
}

/* Hero Scroll for new hero section */
.hero-section .hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

@media (min-width: 768px) {
  .hero-section .hero-scroll {
    display: flex;
    bottom: 140px;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-scroll {
    display: none;
  }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(196, 162, 101, 0.1); }
  50% { box-shadow: 0 0 40px rgba(196, 162, 101, 0.25); }
}

/* ===== PARALLAX & EFFECTS ===== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

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

.hover-lift {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(198, 54, 79, 0.15);
}

.stat-number {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-size: clamp(36px, 8vw, 56px);
  color: var(--burgundy);
  line-height: 1;
  animation: float 4s ease-in-out infinite;
}

.stat-number:nth-child(2) { animation-delay: 0.5s; }
.stat-number:nth-child(3) { animation-delay: 1s; }
.stat-number:nth-child(4) { animation-delay: 1.5s; }

/* ===== INTRO SECTION ===== */
.intro {
  padding: 64px 0;
  position: relative;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .intro {
    padding: 100px 0;
  }
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.intro-content p {
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 16px;
}

.intro-content p strong {
  color: var(--burgundy);
  font-weight: 500;
}

.intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-visual svg {
  width: clamp(120px, 25vw, 160px);
  height: auto;
  opacity: 0.25;
}

/* ===== VALUES ===== */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .values {
    grid-template-columns: repeat(5, 1fr);
  }
}

.value-item {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-section);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.value-word {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ===== PILLARS SECTION ===== */
.pillars {
  padding: 64px 0;
  position: relative;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .pillars {
    padding: 100px 0;
  }
}

.pillars-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .pillars-header {
    margin-bottom: 64px;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 32px 24px;
  padding-top: 200px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-section);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .pillar-card {
    padding: 40px 32px;
    padding-top: 220px;
  }
}

.pillar-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .pillar-image {
    height: 200px;
  }
}

.pillar-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--bg-section));
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burgundy);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

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

.pillar-card .corner-tl,
.pillar-card .corner-br {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--burgundy);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.pillar-card .corner-tl {
  top: 12px;
  left: 12px;
}

.pillar-card .corner-br {
  bottom: 12px;
  right: 12px;
  transform: rotate(180deg);
}

.pillar-card:hover .corner-tl,
.pillar-card:hover .corner-br {
  opacity: 0.8;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(198, 54, 79, 0.3);
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.pillar-name {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pillar-services {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.9;
}

/* Pillar CTA Button */
.pillar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg-body);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pillar-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 165, 90, 0.3);
}

/* ===== FLEET PREVIEW SECTION ===== */
.fleet-preview {
  padding: 64px 0;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .fleet-preview {
    padding: 100px 0;
  }
}

.fleet-preview .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.fleet-preview .section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.fleet-card {
  background: var(--bg-section);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

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

.fleet-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
}

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

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

.fleet-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

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

.fleet-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 16px;
}

.fleet-card-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.fleet-card-specs .spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
}

.fleet-card-specs .spec svg {
  color: var(--burgundy);
  opacity: 0.8;
}

.fleet-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.fleet-card-link:hover {
  gap: 12px;
  color: var(--burgundy-dark);
}

.fleet-card-link svg {
  transition: transform 0.3s ease;
}

.fleet-card-link:hover svg {
  transform: translateX(4px);
}

.fleet-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
  padding: 64px 0;
  background: var(--bg-section);
  position: relative;
}

@media (min-width: 768px) {
  .experience {
    padding: 100px 0;
  }
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .experience-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-section);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198, 54, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--burgundy);
}

.feature-content h4 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.experience-quote {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border: none;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(198, 54, 79, 0.2);
}

.experience-quote blockquote {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
}

.experience-quote cite {
  display: block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== JOURNEY SECTION ===== */
.journey {
  padding: 64px 0;
  position: relative;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .journey {
    padding: 100px 0;
  }
}

.journey-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .journey-header {
    margin-bottom: 64px;
  }
}

.journey-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .journey-flow {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.journey-step {
  padding: 24px 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-section);
  text-align: center;
  min-width: 160px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.journey-step:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.journey-step-label {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.journey-step-sub {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journey-arrow {
  font-size: 20px;
  color: var(--burgundy);
  opacity: 0.4;
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .journey-arrow {
    transform: rotate(0deg);
  }
}

.journey-note {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.journey-note p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

.journey-note strong {
  color: var(--burgundy);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 64px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .testimonials {
    padding: 100px 0;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .testimonials-header {
    margin-bottom: 64px;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-section);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card .quote-accent {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 28px;
  height: 24px;
  color: var(--burgundy);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .quote-accent {
  opacity: 0.8;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-1);
  margin-bottom: 24px;
  padding-top: 24px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--burgundy);
  border: 1px solid var(--border-accent);
}

.testimonial-avatar[style*="background-image"] {
  font-size: 0;
  color: transparent;
}

.testimonial-info h5 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-1);
}

.testimonial-info span {
  font-size: 11px;
  color: var(--text-3);
}

/* Customer Review Cards */
.customer-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .customer-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.customer-review-card {
  padding: 32px;
  background: var(--bg-section);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.customer-review-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-text {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-1);
  margin-bottom: 20px;
}

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

.review-author-info strong {
  display: block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-1);
}

.review-author-info span {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .cta {
    padding: 120px 0;
  }
}

.cta-icon {
  margin-bottom: 32px;
  opacity: 0.2;
}

.cta-icon svg {
  width: 60px;
  height: auto;
  margin: 0 auto;
}

.cta-tagline {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.4;
  color: var(--text-1);
  max-width: 400px;
  margin: 0 auto 32px;
}

.cta .accent-rule-center {
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px;
  background: var(--black);
  color: var(--white);
}

@media (min-width: 768px) {
  .footer {
    padding: 80px 0 40px;
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand svg {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .footer-brand svg {
    width: 120px;
    margin-bottom: 20px;
  }
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 280px;
}

@media (min-width: 768px) {
  .footer-brand p {
    font-size: 13px;
  }
}

.footer-column h6 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

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

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

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

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 64px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .gallery {
    padding: 100px 0;
  }
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .gallery-header {
    margin-bottom: 64px;
  }
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-gray);
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Featured gallery item */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 767px) {
  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

/* ===== ROTATING SIDE CTA (Removed per brief) ===== */
.side-cta {
  display: none !important;
}

.side-cta a {
  display: block;
  background: var(--burgundy);
  color: var(--white);
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
  box-shadow: -4px 0 20px rgba(198, 54, 79, 0.3);
}

.side-cta a:hover {
  background: var(--black);
  padding-right: 28px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 32px;
    right: 32px;
  }
}

/* ===== PARTNER LOGOS ===== */
.partners {
  padding: 64px 0;
  background: var(--light-gray);
  overflow: hidden;
}

@media (min-width: 768px) {
  .partners {
    padding: 80px 0;
  }
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-carousel {
  overflow: visible;
}

.partners-carousel .swiper-wrapper {
  transition-timing-function: linear;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 160px;
  min-height: 80px;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: all 0.4s ease;
  cursor: default;
}

@media (min-width: 768px) {
  .partner-logo {
    padding: 28px 40px;
    min-width: 180px;
    min-height: 90px;
  }
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  border-color: var(--border-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.partner-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.02em;
  text-align: center;
}

@media (min-width: 768px) {
  .partner-name {
    font-size: 15px;
  }
}

.partner-type {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.partner-airline {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  border-color: transparent;
}

.partner-airline .partner-name {
  color: var(--white);
}

.partner-airline .partner-type {
  color: rgba(255, 255, 255, 0.6);
}

.partner-airline:hover {
  border-color: var(--burgundy);
  box-shadow: 0 8px 24px rgba(198, 54, 79, 0.2);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 64px 0;
  background: var(--black);
  position: relative;
}

@media (min-width: 768px) {
  .video-section {
    padding: 100px 0;
  }
}

.video-section .section-label,
.video-section .section-title {
  color: var(--white);
}

.video-section .section-label {
  color: var(--burgundy-light);
}

.video-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .video-header {
    margin-bottom: 64px;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: var(--warm-gray);
}

.video-placeholder .play-btn {
  width: 80px;
  height: 80px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  background: var(--burgundy-light);
}

.video-placeholder .play-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  margin-left: 4px;
}

.video-placeholder span {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== BOOKING WIDGET ===== */
.booking-section {
  padding: 64px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .booking-section {
    padding: 100px 0;
  }
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .booking-header {
    margin-bottom: 64px;
  }
}

.booking-widget {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .booking-widget {
    padding: 48px;
  }
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 40px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.booking-step.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.booking-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.booking-step.active .booking-step-number {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.booking-step-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

@media (min-width: 768px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-1);
  background: var(--bg-section);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(198, 54, 79, 0.1);
}

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

.booking-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.booking-submit .btn-primary {
  min-width: 200px;
}

/* Other location input */
.other-location-input {
  margin-top: 8px;
  animation: slideDown 0.3s ease;
}

.other-location-input[style*="display: none"],
.other-location-input[style*="display:none"] {
  animation: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TIMELINE PROCESS ===== */
.process-section {
  padding: 64px 0;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .process-section {
    padding: 100px 0;
  }
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .process-header {
    margin-bottom: 64px;
  }
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Timeline connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  background: var(--border);
}

/* Vertical line for mobile */
@media (max-width: 767px) {
  .process-timeline::before {
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
  }
}

/* Horizontal line for desktop */
@media (min-width: 768px) {
  .process-timeline::before {
    left: 80px;
    right: 80px;
    top: 24px;
    height: 2px;
  }
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

@media (min-width: 768px) {
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 16px;
  }
}

.process-step-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 3px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--burgundy);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-circle {
  background: var(--burgundy);
  color: var(--white);
}

.process-step-content h4 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.process-step-content p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-step-content {
    margin-top: 20px;
  }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 48px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-badges-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .trust-badges-inner {
    gap: 48px;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: var(--border-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--burgundy);
}

.trust-badge span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ===== MEGA MENU / DROPDOWN NAVIGATION ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 8px 0;
}

.header.scrolled .nav-link {
  color: var(--text-1);
  text-shadow: none;
}

.nav-link:hover {
  color: var(--burgundy);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--bg-section);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--text-1);
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.nav-dropdown a:hover {
  background: var(--light-gray);
  color: var(--burgundy);
  padding-left: 28px;
}

/* Header Actions (language, corporate, CTA) */
.header-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.header.scrolled .lang-btn {
  color: var(--text-1);
}

.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
}

.lang-btn.active {
  font-weight: 500;
}

.lang-divider {
  font-size: 11px;
  color: var(--white);
  opacity: 0.4;
}

.header.scrolled .lang-divider {
  color: var(--text-1);
}

/* Corporate Link */
.corporate-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.header.scrolled .corporate-link {
  color: var(--text-1);
}

.corporate-link:hover {
  opacity: 1;
  color: var(--burgundy);
}

/* Header CTA Button */
.header-cta-btn {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: 12px 24px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.header-cta-btn:hover {
  background: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE MENU ACCORDION ===== */
.mobile-menu {
  padding: 80px 24px 40px;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: flex-start;
}

.mobile-accordion {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 48px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-1);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-accordion-toggle:hover {
  color: var(--burgundy);
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

.mobile-accordion-toggle[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-accordion-toggle[aria-expanded="true"] + .mobile-accordion-content {
  max-height: 500px;
}

.mobile-accordion-content a {
  display: block;
  padding: 14px 0 14px 20px;
  min-height: 44px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-2);
  border-left: 2px solid var(--border);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-accordion-content a:hover {
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.mobile-menu > a {
  width: 100%;
  padding: 16px 0;
  min-height: 48px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent;
}

.corporate-link-mobile {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-2);
  margin-top: 24px;
}

.mobile-lang-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.mobile-lang-selector .lang-btn {
  color: var(--text-1);
  font-size: 13px;
}

.mobile-lang-selector .lang-divider {
  color: var(--text-3);
}

/* ===== HERO SLIDER (Swiper) ===== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 140px;
  max-width: 700px;
}

@media (min-width: 480px) {
  .hero-slide-content {
    padding: 120px 24px 100px;
  }
}

.hero-slide .hero-badge {
  display: inline-block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(198, 54, 79, 0.85);
  border-radius: 40px;
}

@media (min-width: 480px) {
  .hero-slide .hero-badge {
    font-size: 10px;
    letter-spacing: 0.5em;
    margin-bottom: 40px;
    padding: 10px 24px;
  }
}

.hero-slide .hero-logo {
  margin-bottom: 32px;
}

@media (min-width: 480px) {
  .hero-slide .hero-logo {
    margin-bottom: 48px;
  }
}

.hero-slide .hero-logo svg {
  width: clamp(160px, 35vw, 240px);
  height: auto;
}

.hero-slide .hero-tagline {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-weight: 400;
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-slide .hero-subtitle {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 480px) {
  .hero-slide .hero-subtitle {
    margin-bottom: 48px;
  }
}

.hero-slide .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-slide .hero-cta .btn-primary,
.hero-slide .hero-cta .btn-secondary {
  width: 100%;
  padding: 14px 24px;
  font-size: 11px;
}

.hero-slide .hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.hero-slide .hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

@media (min-width: 480px) {
  .hero-slide .hero-cta {
    flex-direction: row;
    gap: 16px;
    width: auto;
    max-width: none;
  }

  .hero-slide .hero-cta .btn-primary,
  .hero-slide .hero-cta .btn-secondary {
    width: auto;
    padding: 16px 32px;
    font-size: 12px;
  }
}

/* Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: var(--white);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: var(--burgundy);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.hero-swiper .swiper-button-prev {
  left: 20px;
}

.hero-swiper .swiper-button-next {
  right: 20px;
}

@media (max-width: 768px) {
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
  bottom: 80px;
}

@media (min-width: 480px) {
  .hero-swiper .swiper-pagination {
    bottom: 100px;
  }
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--bg-section);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--burgundy);
  transform: scale(1.2);
}

/* Scroll indicator positioning */
.hero-slider-section .hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 480px) {
  .hero-slider-section .hero-scroll {
    display: flex;
    bottom: 32px;
  }
}

@media (min-width: 768px) {
  .hero-slider-section .hero-scroll {
    bottom: 40px;
    gap: 12px;
  }
}

.hero-slider-section .hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-slider-section .hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--white), transparent);
  opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-slider-section .hero-scroll-line {
    height: 40px;
  }
}

/* ===== QUICK BOOKING WIDGET ===== */
.quick-booking {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.quick-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.quick-booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quick-booking-title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}

.quick-booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .quick-booking-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .quick-booking-form {
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 1200px) {
  .quick-booking-form {
    grid-template-columns: repeat(5, 1fr) auto;
  }
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-field select,
.booking-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.booking-field select option {
  background: var(--charcoal);
  color: var(--white);
  padding: 12px;
}

.booking-field select optgroup {
  background: var(--black);
  color: var(--burgundy-light);
  font-weight: 600;
  font-style: normal;
}

.booking-field select:hover,
.booking-field input:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.booking-field select:focus,
.booking-field input:focus {
  outline: none;
  border-color: var(--burgundy);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(198, 54, 79, 0.3);
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Date and time input styling */
.booking-field input[type="date"],
.booking-field input[type="time"] {
  color-scheme: dark;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.booking-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--burgundy);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
}

.booking-submit-btn:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 54, 79, 0.4);
}

.booking-submit-btn:active {
  transform: translateY(0);
}

.booking-submit-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(198, 54, 79, 0.4);
}

.booking-submit-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.booking-submit-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1023px) {
  .booking-submit-btn {
    width: 100%;
    margin-top: 8px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .booking-submit-btn {
    grid-column: span 1;
  }
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 180px 0 100px;
    min-height: 450px;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

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

.page-hero-content {
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span:last-child {
  color: var(--burgundy-light);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 500px;
}

@media (min-width: 768px) {
  .page-hero-subtitle {
    font-size: 18px;
  }
}

/* Light header for inner pages */
.header-light {
  background: var(--bg-section);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-light .logo {
  color: var(--text-1);
}

.header-light .nav-link {
  color: var(--text-1);
}

.header-light .nav-link:hover,
.header-light .nav-link.active {
  color: var(--burgundy);
}

.header-light .mobile-menu-btn span {
  background: var(--text-1);
}

/* ===== FLEET PAGE STYLES ===== */
.fleet-intro {
  padding: 48px 0 32px;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .fleet-intro {
    padding: 64px 0 48px;
  }
}

.fleet-intro-content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.lead-text {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .lead-text {
    font-size: 18px;
  }
}

.fleet-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-btn {
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.category-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.fleet-full-grid {
  padding: 32px 0 80px;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .fleet-full-grid {
    padding: 48px 0 100px;
  }
}

.fleet-full-grid .fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

@media (min-width: 1024px) {
  .fleet-full-grid .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.fleet-full-grid .fleet-card {
  background: var(--bg-section);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

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

.fleet-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.fleet-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.fleet-card-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fleet-card-features li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}

.fleet-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.6;
}

.fleet-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 13px;
}

/* Fleet CTA Section */
.fleet-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  text-align: center;
}

@media (min-width: 768px) {
  .fleet-cta-section {
    padding: 100px 0;
  }
}

.fleet-cta-content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.fleet-cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
}

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

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== YACHT PAGE STYLES ===== */
.page-hero-tall {
  min-height: 500px;
}

@media (min-width: 768px) {
  .page-hero-tall {
    min-height: 550px;
  }
}

.yacht-intro {
  padding: 64px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .yacht-intro {
    padding: 80px 0;
  }
}

.yacht-intro-content {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.yacht-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .yacht-packages {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.package-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--light-gray);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.package-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.package-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  border-radius: 50%;
  color: var(--white);
}

.package-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 12px;
}

.package-card p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.6;
}

.package-price {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.05em;
}

/* Yacht Showcase */
.yacht-showcase {
  padding: 80px 0;
  background: var(--bg-section);
}

.yacht-showcase-alt {
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .yacht-showcase {
    padding: 100px 0;
  }
}

.yacht-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .yacht-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .yacht-showcase-grid.reverse {
    direction: rtl;
  }

  .yacht-showcase-grid.reverse > * {
    direction: ltr;
  }
}

.yacht-gallery {
  border-radius: 16px;
  overflow: hidden;
}

.yacht-gallery-swiper {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--charcoal);
}

.yacht-gallery-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yacht-gallery-swiper .swiper-pagination-bullet {
  background: var(--bg-section);
  opacity: 0.5;
}

.yacht-gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.yacht-gallery-swiper .swiper-button-prev,
.yacht-gallery-swiper .swiper-button-next {
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.yacht-gallery-swiper .swiper-button-prev::after,
.yacht-gallery-swiper .swiper-button-next::after {
  font-size: 18px;
}

.yacht-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.yacht-name {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-1);
  margin-bottom: 16px;
}

.yacht-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: 12px;
}

.yacht-showcase-alt .yacht-specs {
  background: var(--bg-section);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.spec-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
}

.yacht-amenities h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 16px;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.amenities-list li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}

.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.5;
}

.yacht-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Yacht Experience Section */
.yacht-experience {
  padding: 80px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .yacht-experience {
    padding: 100px 0;
  }
}

.yacht-experience .section-header {
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.experience-item {
  text-align: center;
  padding: 32px 24px;
}

.experience-number {
  font-size: 32px;
  font-weight: 300;
  color: var(--burgundy);
  margin-bottom: 16px;
  opacity: 0.6;
}

.experience-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 12px;
}

.experience-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== PRIVATE TOURS PAGE STYLES ===== */
.tours-intro {
  padding: 64px 0 32px;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .tours-intro {
    padding: 80px 0 48px;
  }
}

.tours-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tours-grid-section {
  padding: 32px 0 80px;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .tours-grid-section {
    padding: 48px 0 100px;
  }
}

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.tour-card {
  background: var(--bg-section);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

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

.tour-card-featured {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .tour-card-featured {
    grid-column: span 1;
  }
}

.tour-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}

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

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

.tour-duration {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

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

.tour-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 12px;
}

.tour-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tour-highlights {
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tour-highlights li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}

.tour-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.6;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--burgundy);
}

.tour-duration-text {
  font-size: 13px;
  color: var(--text-3);
}

.tour-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 13px;
}

/* Custom Tours Section */
.custom-tours {
  padding: 80px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .custom-tours {
    padding: 100px 0;
  }
}

.custom-tours-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.custom-tours-content .section-label {
  margin-bottom: 12px;
}

.custom-tours-content .section-title {
  margin-bottom: 24px;
}

.custom-tours-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.page-hero-short {
  min-height: 350px;
}

@media (min-width: 768px) {
  .page-hero-short {
    min-height: 400px;
  }
}

.contact-section {
  padding: 60px 0 80px;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 80px 0 100px;
  }
}

.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .contact-info h2 {
    font-size: 32px;
  }
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--burgundy);
}

.contact-method-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-method-content p {
  font-size: 15px;
  color: var(--text-1);
  margin-bottom: 2px;
}

.contact-method-content p a {
  color: var(--text-1);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-method-content p a:hover {
  color: var(--burgundy);
}

.contact-method-content span {
  font-size: 13px;
  color: var(--text-3);
}

.contact-form-wrapper {
  background: var(--cream);
  padding: 32px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 40px;
  }
}

.contact-form-wrapper h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-group:not(:last-child) {
  margin-bottom: 0;
}

.contact-form .form-group + .form-group:not(.form-row .form-group) {
  margin-top: 16px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-section);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(198, 54, 79, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-3);
}

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

.contact-form .btn-full {
  width: 100%;
  margin-top: 24px;
}

/* Contact Map */
.contact-map {
  background: var(--charcoal);
}

.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(1.1);
}

/* Contact FAQ */
.contact-faq {
  padding: 80px 0;
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .contact-faq {
    padding: 100px 0;
  }
}

.faq-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.faq-item {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .faq-item {
    padding: 32px;
  }
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== IMAGE FALLBACKS & SVG HANDLING ===== */
.vehicle-image,
.tour-image,
.yacht-gallery img {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  object-fit: cover;
}

.vehicle-image[src$=".svg"],
.tour-image[src$=".svg"],
.yacht-gallery img[src$=".svg"] {
  object-fit: contain;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.page-hero-bg {
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
}

/* ===== FORM VALIDATION STYLES ===== */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.btn-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100% - 48px);
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
}

.toast-show {
  transform: translateX(0);
  opacity: 1;
}

.toast-hide {
  transform: translateX(120%);
  opacity: 0;
}

.toast-success {
  background: #28a745;
}

.toast-error {
  background: #dc3545;
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}

.toast-close:hover {
  opacity: 1;
}

/* Inline spinner for buttons */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@media (max-width: 575px) {
  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .toast {
    max-width: none;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-banner p {
    text-align: left;
    flex: 1;
  }
}

.cookie-banner p a {
  color: var(--burgundy-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: var(--burgundy);
  color: var(--white);
  border: none;
}

.cookie-accept:hover {
  background: var(--burgundy-dark);
}

.cookie-settings {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 80px 0;
  background: var(--bg-section);
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-wrapper h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 40px 0 16px;
}

.legal-wrapper h2:first-of-type {
  margin-top: 0;
}

.legal-wrapper h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 24px 0 12px;
}

.legal-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 16px;
}

.legal-wrapper ul {
  margin: 0 0 20px 24px;
  padding: 0;
}

.legal-wrapper li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 8px;
}

.legal-wrapper a {
  color: var(--burgundy);
  text-decoration: underline;
}

.legal-wrapper a:hover {
  color: var(--burgundy-dark);
}

.legal-wrapper strong {
  font-weight: 500;
  color: var(--charcoal);
}

/* Cookie policy table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.cookie-table th {
  background: var(--cream);
  font-weight: 500;
  color: var(--charcoal);
}

.cookie-table td {
  color: var(--text-2);
}

@media (max-width: 767px) {
  .legal-content {
    padding: 60px 0;
  }

  .legal-wrapper h2 {
    font-size: 20px;
  }

  .legal-wrapper h3 {
    font-size: 16px;
  }

  .legal-wrapper p,
  .legal-wrapper li {
    font-size: 15px;
  }

  .cookie-table {
    font-size: 13px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px 12px;
  }
}

/* ===== PRICING INDICATORS ===== */
.price-indicator {
  font-size: 14px;
  color: var(--burgundy);
  font-weight: 500;
  margin-top: 8px;
}

.price-from {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 400;
}

/* ===== ENHANCED ACCESSIBILITY ===== */
/* Improved focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
  box-shadow: none;
}

/* Better touch targets */
@media (pointer: coarse) {
  .nav-link,
  .mobile-menu a,
  button,
  .btn-primary,
  .btn-outline,
  input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .mobile-menu,
  .mobile-menu-btn,
  .hero-slider,
  .swiper-pagination,
  .swiper-navigation {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  .page-hero {
    break-after: page;
    min-height: auto;
    padding: 40px 0;
  }

  .page-hero-bg,
  .page-hero-overlay {
    display: none;
  }

  .page-hero-title,
  .page-hero-subtitle {
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
