/* ====================================================
   PEACE JETS — PRIVATE JET CHARTER
   Complete Stylesheet
   ==================================================== */

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

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --dark: #1a1a1a;
  --dark-blue: #0f1e3c;
  --dark-blue-2: #152440;
  --mid-gray: #888888;
  --light-gray: #e8e8e8;
  --white: #ffffff;
  --accent: #1d4ed8;
  --accent-light: #3b82f6;
  --gold: #c9a55c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 165, 92, 0.12);
  --gold-glow: 0 8px 32px rgba(201, 165, 92, 0.28);
  --surface: #111111;
  --surface-2: #181818;
  --surface-3: #222222;
  --text: #f0ece4;
  --text-muted: rgba(240, 236, 228, 0.52);
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 165, 92, 0.28);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --nav-h: 72px;
  --radius: 12px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #0a0a0a;
}

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

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

/* ======================== TYPOGRAPHY ======================== */
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--black);
}

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

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
  display: block;
}

.label-white {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.label-center {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}

.label-row {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}

.label-row .dot {
  margin: 0 0.5rem;
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.btn-dark {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.btn-dark:hover {
  background: var(--gold-light);
  color: #0a0a0a;
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 165, 92, 0.3);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: none;
}

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

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: none;
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  border-bottom-color: #eee;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--black);
  opacity: 0.65;
  transition: opacity var(--transition);
}

.nav-link:hover,
.nav-link.active-link {
  opacity: 1;
}

.dropdown-arrow {
  font-size: 0.65rem;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 8px;
  transition: background var(--transition);
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

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

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 899;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.open {
  display: flex;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 780px;
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-btn {
  margin-top: 0.5rem;
}

/* ======================== ABOUT ======================== */
.about-section {
  padding: 7rem 5%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-text .section-heading {
  margin: 1rem 0 1.5rem;
}

.about-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid-gray);
  margin-top: 1.5rem;
}

.about-btn {
  margin-bottom: 2rem;
}

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

.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 520px;
  background: #e8e8e8;
}

.about-img-caption {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ======================== SLIDER ======================== */
.slider-section {
  background: var(--light-gray);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.slider-meta {
  text-align: center;
  margin-bottom: 1.5rem;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
}

.slider-track {
  overflow: hidden;
  flex: 1;
  border-radius: 20px;
  background: var(--black);
  position: relative;
}

.slide {
  display: none;
  padding: 3.5rem 4rem;
  color: var(--white);
  position: relative;
}

.slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 2rem 3rem;
  align-items: start;
}

.slide-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  grid-column: 1;
  align-self: center;
}

.slide-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  grid-column: 1;
  margin-top: 0;
}

.slide-btn {
  grid-column: 1;
  justify-self: start;
}

.slide-image-wrap {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
}

.slide-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  background: #1e1e3f;
}

.slide-stats {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

.slider-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.08);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

/* ======================== JET SHOWCASE ======================== */
.jet-showcase {
  padding: 5rem 0 4rem;
  background: var(--white);
  overflow: hidden;
}

.js-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}

.js-name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0.5rem 0 1rem;
  transition: opacity 0.22s ease;
}

.js-desc {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  transition: opacity 0.22s ease;
}

.js-btn {
  display: inline-flex;
}

/* Stage: arrows + image */
.js-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.js-image-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  width: 100%;
}

.js-img {
  max-height: 380px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: opacity 0.18s ease;
  will-change: opacity;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.10));
}

.js-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #ddd;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--black);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.js-arrow:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(1.08);
}

/* Stats bar */
.js-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 2rem 0;
  border-top: 1px solid #eee;
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.js-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
}

.js-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.js-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}

.js-stat-div {
  width: 1px;
  height: 40px;
  background: #e0e0e0;
  flex-shrink: 0;
  margin: 0 2rem;
}

/* Dot indicators */
.js-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.js-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

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

/* ======================== BOATS/FLEET GRID ======================== */
.boats-section {
  padding: 6rem 5%;
}

.boats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.boat-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.boat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.boat-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e8e8;
}

.boat-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s ease;
}

.boat-card:hover .boat-card-img {
  transform: scale(1.04);
}

.boat-card-body {
  padding: 1.5rem;
}

.boat-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.boat-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: #f4f4f4;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
}

.boat-card-desc {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ======================== FILTER BAR ======================== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 5%;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + 2rem);
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #ddd;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--black);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ======================== FLEET LISTING ======================== */
.fleet-listing {
  padding: 2rem 5% 6rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.fleet-card {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.fleet-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8e8e8;
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s ease;
}

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

.fleet-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.fleet-card-body {
  padding: 1.75rem;
}

.fleet-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.fleet-specs-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.fleet-spec {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.fspec-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}

.fspec-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.fleet-card-desc {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.fleet-card-footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fleet-card-footer .btn {
  padding: 0.6rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ======================== INTERIOR SECTION ======================== */
.interior-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.interior-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.interior-content {
  position: relative;
  z-index: 2;
  padding: 5rem 10%;
  max-width: 700px;
}

.interior-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.interior-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.interior-btn {
  margin-top: 0.5rem;
}

/* ======================== FOUNDER ======================== */
.founder-section {
  background: var(--dark-blue);
  padding: 7rem 5%;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.founder-section .label {
  color: rgba(255, 255, 255, 0.5);
}

.founder-section .section-heading {
  color: var(--white);
  margin: 1rem 0 2.5rem;
}

.founder-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.founder-list-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.founder-list li strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.founder-list li p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.founder-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.founder-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.founder-card-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.founder-card-info strong {
  color: var(--white);
  font-size: 1rem;
}

.founder-card-info span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-quote {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials-section {
  background: var(--light-gray);
  padding: 6rem 5%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 2rem auto 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  flex: 1;
}

.testimonial-divider {
  margin-top: auto;
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ======================== CTA SECTION ======================== */
.cta-section {
  padding: 6rem 5%;
  background: var(--white);
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.cta-btn {
  font-size: 0.72rem;
  padding: 1rem 2.8rem;
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255, 255, 255, 0.6);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

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

.footer-newsletter-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.82rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--dark-blue);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 5%;
  max-width: 900px;
}

.page-hero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
}

/* ======================== JET DETAIL ======================== */
.jet-detail-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.jet-detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0a0a1a 100%);
}

.jet-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.jet-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 5%;
  width: 100%;
}

.back-link {
  position: absolute;
  top: calc(var(--nav-h) + 1.2rem);
  left: 5%;
  z-index: 3;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--white);
}

.jet-detail-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 2rem;
}

.jet-hero-specs {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.jet-hero-spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.jhs-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.jhs-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.jhs-div {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
}

/* JET DETAIL BODY */
.jet-detail-body {
  padding: 5rem 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.jet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.jet-section {
  margin-bottom: 3rem;
}

.jet-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.jet-section-text {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.8;
}

.jet-ideal {
  margin-bottom: 3rem;
}

.jet-ideal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.jet-ideal-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.93rem;
  color: #333;
  display: flex;
  gap: 0.75rem;
}

.jet-ideal-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.jet-gallery {
  margin-top: 1rem;
}

.jet-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e8e8;
}

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

.gallery-img-wrap:hover .gallery-img {
  transform: scale(1.05);
}

/* ── Trio Gallery Layout (3 images) ── */
.jet-gallery-trio {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-trio-hero {
  aspect-ratio: 3/4;
  border-radius: 10px;
}

.gallery-trio-pair {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-trio-pair .gallery-img-wrap {
  flex: 1;
  aspect-ratio: auto;
  min-height: 0;
}

/* Zoom hint icon */
.gallery-img-wrap {
  position: relative;
}

.gallery-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery-img-wrap:hover .gallery-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lb-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox.open .lb-img {
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2;
}

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

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  z-index: 2;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .jet-gallery-trio {
    grid-template-columns: 1fr;
  }

  .gallery-trio-hero {
    aspect-ratio: 16/10;
  }

  .gallery-trio-pair {
    flex-direction: row;
  }

  .gallery-trio-pair .gallery-img-wrap {
    aspect-ratio: 1/1;
    flex: 1;
  }

  .lb-prev,
  .lb-next {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }

  .lb-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

/* SIDEBAR */
.jet-detail-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar-card {
  background: #f8f8f8;
  border-radius: 0;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ededed;
  font-size: 0.85rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  color: var(--mid-gray);
}

.spec-val {
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.sidebar-cta {
  background: var(--black);
}

.sidebar-cta .sidebar-title {
  color: var(--white);
}

.sidebar-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ======================== SERVICES PAGE ======================== */
.services-intro {
  padding: 5rem 5% 3rem;
  text-align: center;
}

.services-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}

.services-intro-sub {
  color: var(--mid-gray);
  margin-top: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.services-list {
  padding: 2rem 5% 6rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-btn {
  font-size: 0.82rem;
}

.how-it-works {
  background: var(--light-gray);
  padding: 6rem 5%;
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.hiw-step {
  flex: 1;
  min-width: 180px;
}

.hiw-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #121212;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.hiw-step:nth-child(1) .hiw-number {
  color: #121212;
}

.hiw-step:nth-child(3) .hiw-number {
  color: #191919;
}

.hiw-step:nth-child(5) .hiw-number {
  color: #373737;
}

.hiw-step:nth-child(7) .hiw-number {
  color: #373737;
}


.hiw-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hiw-desc {
  font-size: 0.87rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

.hiw-arrow {
  font-size: 1.5rem;
  color: #ccc;
  padding-top: 1.5rem;
  flex-shrink: 0;
}

/* ======================== FAQ ======================== */
.faq-section {
  padding: 5rem 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.faq-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.faq-sidebar .label {
  margin-bottom: 1.5rem;
}

.faq-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  background: none;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 0.3rem;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--black);
  color: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--mid-gray);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  color: var(--mid-gray);
  line-height: 1.75;
  font-size: 0.93rem;
  padding-bottom: 1.5rem;
}

.faq-cta {
  background: var(--light-gray);
  padding: 6rem 5%;
}

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

.faq-cta .section-heading {
  margin: 1rem 0;
}

/* ======================== CONTACT ======================== */
.contact-hero {
  padding: calc(var(--nav-h) + 4rem) 5% 4rem;
  background: var(--near-black);
}

.contact-hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}

.contact-hero .label {
  color: rgba(255, 255, 255, 0.5);
}

.contact-hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 500px;
}

.contact-section {
  padding: 5rem 5%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.charter-form {}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full {
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.form-input {
  padding: 0.85rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--black);
}

.form-input::placeholder {
  color: #bbb;
}

.form-select {
  cursor: pointer;
}

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

.form-alert {
  display: none;
  margin-bottom: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-alert-error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-submit {
  width: 100%;
  font-size: 0.75rem;
  padding: 1.1rem;
  border-radius: 0;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 1rem;
  line-height: 1.6;
}

.form-success {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--mid-gray);
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 2rem;
}

.info-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.93rem;
  color: var(--black);
  line-height: 1.6;
}

.contact-fleet-overview {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 2rem;
}

.contact-fleet-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-fleet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  border-radius: 10px;
  transition: background var(--transition);
}

.contact-fleet-item:hover {
  background: #eeeeee;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.cfi-img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  background: #ddd;
  flex-shrink: 0;
}

.cfi-info {
  flex: 1;
}

.cfi-info strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
}

.cfi-info span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.cfi-arrow {
  color: var(--mid-gray);
  font-size: 0.9rem;
}

/* ======================== ANIMATIONS ======================== */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

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

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

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {

  .about-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .slide.active {
    grid-template-columns: 1fr;
  }

  .slide-image-wrap {
    grid-column: 1;
    grid-row: auto;
  }

  .slide-image {
    height: 220px;
  }

  .slide-stats {
    grid-column: 1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-listing {
    padding: 2rem 5% 4rem;
  }

  .jet-detail-grid {
    grid-template-columns: 1fr;
  }

  .jet-detail-sidebar {
    position: static;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .faq-cat-btn {
    width: auto;
  }
}

@media (max-width: 900px) {
  .boats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }

  .hiw-steps {
    flex-direction: column;
  }

  .hiw-arrow {
    display: none;
  }
}

@media (max-width: 700px) {

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-center {
    position: static;
    transform: none;
  }

  .navbar {
    justify-content: space-between;
  }

  .boats-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 300px;
  }

  .boats-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slice-stats {
    flex-wrap: wrap;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .jet-gallery-grid {
    grid-template-columns: 1fr;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  /* Fleet card buttons wrap on mobile */
  .fleet-card-footer {
    flex-wrap: wrap;
  }

  .fleet-card-footer .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
  }

  /* Jet hero specs wrap on mobile */
  .jet-hero-specs {
    gap: 1rem;
  }

  .jhs-div {
    display: none;
  }

  /* JS showcase adjustments */
  .js-stage {
    padding: 0 1rem;
  }

  .js-image-area {
    min-height: 220px;
  }

  .js-img {
    max-height: 220px;
  }

  .js-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .js-stats {
    padding: 1.5rem 1rem 0;
    gap: 0;
  }

  .js-stat-label {
    font-size: 0.6rem;
  }

  .js-stat-val {
    font-size: 1rem;
  }

  /* Footer newsletter form fix */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    min-width: unset;
    width: 100%;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Hero text sizing */
  .hero-heading {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .interior-heading {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .cta-heading {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  /* Jet detail hero */
  .jet-detail-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  /* Page hero */
  .page-hero {
    min-height: 340px;
  }

  .page-hero-heading {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
}

/* ====================================================
   LUXURY DARK OVERRIDES — PEACE JETS
   Champagne gold + deep black + Cormorant Garamond serif
   ==================================================== */

/* ── Display Typography ── */
.section-heading,
.hero-heading,
.page-hero-heading,
.cta-heading,
.jet-detail-title,
.contact-hero-heading,
.interior-heading,
.js-name {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-heading { color: var(--text); }
.about-body { color: var(--text-muted); }

/* ── Labels → gold ── */
.label { color: var(--gold); }
.label-center { color: var(--gold); }
.label-row { color: var(--gold); }
.label-row .dot { color: var(--gold); opacity: 0.5; }
.label-white { color: rgba(201, 165, 92, 0.85); }

/* ── Buttons — Luxury Override ── */
/* btn-dark: gold border, gold text → fills gold on hover */
/* btn-light: white border, white text → subtle fill on hover */
/* Both use the base .btn styles now (rectangular, uppercase, spaced) */

/* Hero CTA — larger variant of btn-dark */
.hero-btn {
  font-weight: 600;
  padding: 1rem 2.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.hero-btn:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Navbar → dark glass ── */
.navbar {
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom-color: var(--border-dark);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  background: linear-gradient(130deg, var(--gold), var(--gold-light) 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link { color: var(--text); opacity: 0.6; }
.nav-link:hover,
.nav-link.active-link { opacity: 1; color: var(--text); }

.nav-mobile-toggle span { background: var(--text); }

.mobile-nav {
  background: #0d0d0d;
  border-top: 1px solid var(--border-dark);
}

.dropdown-menu {
  background: #121212;
  border-color: var(--border-dark);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}

.dropdown-menu a { color: var(--text); }
.dropdown-menu a:hover { background: var(--surface-3); color: var(--text); }

/* ── About Section ── */
.about-section { background: var(--surface); }

.about-img {
  border: 1px solid var(--border-gold);
  background: var(--surface-3);
}

.about-img-caption { color: var(--text-muted); }

/* ── Jet Showcase ── */
.jet-showcase { background: var(--black); }
.js-name { color: var(--text); }
.js-desc { color: var(--text-muted); }
.js-stats { border-top-color: var(--border-dark); }
.js-stat-label { color: var(--gold); }
.js-stat-val { color: var(--text); }
.js-stat-div { background: var(--border-dark); }

.js-arrow {
  background: var(--surface-2);
  border-color: var(--border-dark);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.js-arrow:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  transform: scale(1.08);
}

.js-dot { background: rgba(255, 255, 255, 0.15); border: none; }
.js-dot.active { background: var(--gold); }

/* ── Testimonials ── */
.testimonials-section { background: var(--surface); }

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stars { color: var(--gold); letter-spacing: 0.05em; }
.testimonial-text { color: var(--text-muted); }
.testimonial-author strong { color: var(--text); }
.testimonial-author span { color: var(--gold); }
.testimonial-monogram { background: transparent; }

/* ── CTA Section ── */
.cta-section { background: var(--surface); }
.cta-heading { color: var(--text); }

/* ── Footer ── */
.footer-logo {
  background: linear-gradient(130deg, var(--gold), var(--gold-light) 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-col-title { color: var(--gold); }
.footer-link:hover { color: var(--gold); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.newsletter-input:focus { border-color: var(--gold); }

/* ── Filter Bar (Fleet / Jets page) ── */
.filter-btn {
  background: var(--surface-2);
  border-color: var(--border-dark);
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

/* ── Boats / Cards Grid ── */
.boats-section { background: var(--black); }

.boat-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.boat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.boat-card-img-wrap { background: var(--surface-3); }
.boat-card-title { color: var(--text); }
.boat-card-desc { color: var(--text-muted); }

.tag {
  background: var(--surface-3);
  color: var(--text-muted);
}

/* ── Fleet Cards ── */
.fleet-listing { background: var(--black); }

.fleet-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.fleet-card-img-wrap { background: var(--surface-3); }
.fleet-card-title { color: var(--text); }

.fleet-specs-row {
  border-top-color: var(--border-dark);
  border-bottom-color: var(--border-dark);
}

.fspec-label { color: var(--gold); }
.fspec-val { color: var(--text); }
.fleet-card-desc { color: var(--text-muted); }

.fleet-badge {
  background: rgba(201, 165, 92, 0.12);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

/* ── Services ── */
.services-intro { background: var(--black); }
.services-intro .section-heading { color: var(--text); }
.services-intro-sub { color: var(--text-muted); }
.services-list { background: var(--black); }

.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.service-title { color: var(--text); }
.service-desc { color: var(--text-muted); }

/* ── How It Works ── */
.how-it-works { background: var(--surface); }
.how-it-works .section-heading { color: var(--text); }

.hiw-number {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  opacity: 0.9;
}

.hiw-step:nth-child(1) .hiw-number,
.hiw-step:nth-child(3) .hiw-number,
.hiw-step:nth-child(5) .hiw-number,
.hiw-step:nth-child(7) .hiw-number {
  color: var(--gold) !important;
}

.hiw-title { color: var(--text); }
.hiw-desc { color: var(--text-muted); }
.hiw-arrow { color: var(--border-gold); }

/* ── FAQ ── */
.faq-section { background: var(--black); }
.faq-item { border-bottom-color: var(--border-dark); }
.faq-question { color: var(--text); background: transparent; }
.faq-question::after { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-answer p { color: var(--text-muted); }
.faq-cta { background: var(--surface); }
.faq-cta .section-heading { color: var(--text); }
.faq-cat-btn { color: var(--text-muted); background: transparent; }

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--gold);
  color: #0a0a0a;
}

/* ── Jet Detail Body ── */
.jet-detail-body { background: var(--black); }

.jet-section-title {
  color: var(--text);
  border-bottom-color: var(--border-dark);
}

.jet-section-text { color: var(--text-muted); }

.jet-ideal-list li {
  color: var(--text-muted);
  border-bottom-color: var(--border-dark);
}

.jet-ideal-list li::before { color: var(--gold); }
.gallery-img-wrap { background: var(--surface-2); }
.back-link { color: var(--text-muted); }
.back-link:hover { color: var(--text); }
.jhs-label { color: rgba(240, 236, 228, 0.45); }

/* ── Sidebar Cards ── */
.sidebar-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
}

.sidebar-title { color: var(--text); }
.spec-row { border-bottom-color: var(--border-dark); }
.spec-key { color: var(--text-muted); }
.spec-val { color: var(--text); }

.sidebar-cta {
  background: linear-gradient(135deg, rgba(201, 165, 92, 0.08), rgba(201, 165, 92, 0.04));
  border-color: var(--border-gold);
}

.sidebar-cta .sidebar-title { color: var(--gold); }
.sidebar-text { color: var(--text-muted); }

/* ── Contact ── */
.contact-section { background: var(--black); }
.contact-form-title { color: var(--text); }
.form-label { color: var(--text-muted); }

.form-input {
  background: var(--surface-2);
  border-color: var(--border-dark);
  color: var(--text);
}

.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(240, 236, 228, 0.22); }
.form-note { color: var(--text-muted); }
.form-success h3 { color: var(--text); }
.form-success p { color: var(--text-muted); }

.contact-info-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
}

.info-card-title { color: var(--text); }
.contact-info-item strong { color: var(--gold); }
.contact-info-item p,
.contact-info-item a { color: var(--text-muted); }

.contact-fleet-overview {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
}

.contact-fleet-item:hover { background: var(--surface-3); }
.cfi-info strong { color: var(--text); }
.cfi-info span { color: var(--text-muted); }
.cfi-arrow { color: var(--gold); }

/* ── Page Hero headings ── */
.page-hero-heading { font-family: var(--font-display); font-weight: 500; }
.jet-detail-title { font-family: var(--font-display); font-weight: 500; }

/* ── Hero overlay — slightly warmer ── */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 2, 0.55) 0%,
    rgba(5, 3, 2, 0.30) 55%,
    rgba(5, 3, 2, 0.65) 100%
  );
}

/* ── Founder section — deepen the navy ── */
.founder-section { background: #080f20; }
.founder-quote { border-left-color: var(--gold); color: var(--text-muted); }
.founder-list-icon { color: var(--gold); }
.founder-card {
  background: rgba(201, 165, 92, 0.05);
  border-color: var(--border-gold);
}

/* ── Scroll reveal tweak ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Scrollbar (Webkit) ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: rgba(201, 165, 92, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201, 165, 92, 0.45); }

/* ====================================================
   LUXURY POLISH — Phase 2
   Tactile depth, shimmer, noise, editorial typography
   ==================================================== */

/* ── Noise Texture Overlay (prevents flat digital banding) ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Hero Enhancements ── */
.hero-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.75rem;
}

/* hero-heading — clean, no italic */

.hero-content {
  padding: 0 2rem;
  max-width: 850px;
}

.hero-heading {
  margin-bottom: 1.5rem;
}

/* ── Button Hover — refined gold shift ── */

/* ── Navbar Scrolled Gold Accent ── */
.navbar.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ── About Section Editorial ── */
.about-text .label-row {
  letter-spacing: 0.2em;
}

.about-text .section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.35;
}

.about-img {
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}

.about-image-wrap:hover .about-img {
  transform: scale(1.015);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 165, 92, 0.15);
}

/* ── Jet Showcase Name — grandeur ── */
.js-name {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Testimonials Enhancements ── */
.testimonials-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 3rem;
}

.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.tc-stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.testimonial-card {
  padding: 2.25rem 2rem 2rem;
  border-top: 2px solid transparent;
  border-radius: 2px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-top-color: var(--gold);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: rgba(240, 236, 228, 0.72);
  margin-bottom: 1.5rem;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 1.25rem;
}

.testimonial-monogram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ── CTA Section — Statement Piece ── */
.cta-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
}

/* cta heading — no italic, refined weight */

.cta-btn {
  font-size: 0.72rem;
  padding: 1rem 2.8rem;
  letter-spacing: 0.2em;
}

/* ── Interior Section Polish ── */

.interior-desc {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Footer Fine-Tuning ── */
.footer-top {
  border-bottom: 1px solid rgba(201, 165, 92, 0.1);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(240, 236, 228, 0.2);
}

/* ── Card Rim-Light Effect (Top edge glow) ── */
.testimonial-card::before,
.service-card::before,
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(255, 255, 255, 0.06) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.testimonial-card,
.service-card,
.fleet-card {
  position: relative;
}

/* ── Stat Values — display font for gravitas ── */
.js-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ── Section Breathing — Generous White Space ── */
.about-section { padding: 8rem 5%; }
.testimonials-section { padding: 7rem 5%; }
.cta-section { padding: 7rem 5%; }

/* ── Reveal Animation — Slower, more deliberate ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Image Fallback — dark gradient for luxury feel ── */
.boat-card-img-wrap,
.fleet-card-img-wrap,
.gallery-img-wrap {
  background: linear-gradient(135deg, #161616, #1e1e1e);
}

/* ── Newsletter Button ── */
.newsletter-btn {
  font-weight: 500;
  padding: 0.75rem 1.8rem;
}

/* ── Interior Section Overlay — Deeper, richer ── */
.interior-overlay {
  background: linear-gradient(
    to right,
    rgba(5, 3, 2, 0.88) 0%,
    rgba(5, 3, 2, 0.50) 60%,
    rgba(5, 3, 2, 0.25) 100%
  );
}

/* ── Gold Divider Utility ── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ── Link Underline Gold Hover ── */
.footer-link {
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.footer-link:hover::after {
  width: 100%;
}

/* ── Jet Showcase Stat Labels — refined spacing ── */
.js-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* ── Section Reveal on Scroll ── */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Stagger children within revealed sections ── */
.section-visible .testimonial-card,
.section-visible .service-card,
.section-visible .fleet-card,
.section-visible .boat-card,
.section-visible .hiw-step {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-visible .testimonial-card:nth-child(1),
.section-visible .service-card:nth-child(1),
.section-visible .fleet-card:nth-child(1),
.section-visible .boat-card:nth-child(1),
.section-visible .hiw-step:nth-child(1) { animation-delay: 0.05s; }

.section-visible .testimonial-card:nth-child(2),
.section-visible .service-card:nth-child(2),
.section-visible .fleet-card:nth-child(2),
.section-visible .boat-card:nth-child(2),
.section-visible .hiw-step:nth-child(3) { animation-delay: 0.12s; }

.section-visible .testimonial-card:nth-child(3),
.section-visible .service-card:nth-child(3),
.section-visible .fleet-card:nth-child(3),
.section-visible .boat-card:nth-child(3),
.section-visible .hiw-step:nth-child(5) { animation-delay: 0.19s; }

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

/* ======================== MOBILE RESPONSIVE FIX ======================== */

/* ── Navbar: iOS safe-area support ── */
.navbar {
  padding-top: env(safe-area-inset-top, 0px);
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
}

.mobile-nav {
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
}

/* ── Hero: use dynamic viewport height for mobile ── */
.hero {
  height: 100dvh;
  min-height: 520px;
}

@media (max-width: 700px) {

  /* ── Navbar ── */
  .navbar {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile-nav {
    padding: 1.5rem 1.25rem;
  }

  /* ── Hero section ── */
  .hero {
    height: 100dvh;
    min-height: 480px;
  }

  .hero-content {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .hero-heading {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
  }

  .hero-bg-img {
    object-position: center center;
  }

  .hero-btn {
    padding: 0.85rem 2rem;
    font-size: 0.68rem;
  }

  /* ── About section ── */
  .about-section {
    padding: 4rem 1.25rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-img {
    height: 260px;
    border-radius: 10px;
  }

  .about-text .section-heading {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .about-body {
    font-size: 0.92rem;
  }

  /* ── Jet Showcase ── */
  .jet-showcase {
    padding: 3.5rem 0 3rem;
  }

  .js-header {
    padding: 0 1.25rem;
    margin-bottom: 1.5rem;
  }

  .js-name {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .js-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .js-stage {
    padding: 0 0.5rem;
  }

  .js-image-area {
    min-height: 180px;
    overflow: hidden;
  }

  .js-img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
  }

  .js-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .js-stats {
    max-width: 100%;
    padding: 1.25rem 0.75rem 0;
    margin-top: 1.5rem;
  }

  .js-stat-div {
    margin: 0 0.75rem;
  }

  .js-stat-val {
    font-size: 1.15rem;
  }

  .js-dots {
    margin-top: 1.25rem;
  }

  /* ── Interior / 2nd Video Section ── */
  .interior-section {
    min-height: 420px;
  }

  .interior-bg-img {
    object-position: 60% center;
  }

  .interior-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 3, 2, 0.85) 0%,
      rgba(5, 3, 2, 0.65) 50%,
      rgba(5, 3, 2, 0.80) 100%
    ) !important;
  }

  .interior-content {
    padding: 3.5rem 1.25rem;
    max-width: 100%;
    text-align: center;
  }

  .interior-heading {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .interior-desc {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .interior-btn {
    margin: 0 auto;
  }

  /* ── Testimonials ── */
  .testimonials-section {
    padding: 4rem 1.25rem;
  }

  .testimonials-heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 2rem;
  }

  .testimonial-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 4rem 1.25rem;
  }

  .cta-heading {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
  }

  .cta-btn {
    padding: 0.85rem 2rem;
    font-size: 0.68rem;
  }

  /* ── Footer ── */
  .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-top {
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 0.5rem;
  }

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

  .footer-bottom p {
    font-size: 0.72rem;
  }

  /* ── Page hero on mobile ── */
  .page-hero {
    min-height: 280px;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 2rem);
  }

  /* ── Prevent horizontal scroll ── */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* ── Service cards on mobile ── */
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Extra-small screens (< 400px) ── */
@media (max-width: 400px) {
  .hero-heading {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .js-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .js-img {
    max-height: 160px;
  }

  .js-image-area {
    min-height: 160px;
  }

  .js-stat-val {
    font-size: 1rem;
  }

  .js-stat-div {
    margin: 0 0.5rem;
  }

  .about-img {
    height: 200px;
  }

  .testimonial-card {
    padding: 1.5rem 1rem 1.25rem;
  }
}

/* ── Prefers Reduced Motion — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  body::after {
    display: none;
  }
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .section-visible .testimonial-card,
  .section-visible .service-card,
  .section-visible .fleet-card,
  .section-visible .boat-card,
  .section-visible .hiw-step {
    animation: none;
  }
}