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

: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: #c9a84c;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-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(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  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.75rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}

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

.btn-light:hover {
  background: var(--light-gray);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid #ddd;
}

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

/* ======================== 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: border-color var(--transition), box-shadow var(--transition);
}

.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: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  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: 100px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid #ddd;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  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.75rem;
}

/* ======================== 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;
}

.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: 800;
  margin-bottom: 2rem;
}

.cta-btn {
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
}

/* ======================== 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.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.85rem;
}

.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.7rem 1.2rem;
  font-size: 0.82rem;
}

.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 {
  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);
}

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

.sidebar-card {
  background: #f8f8f8;
  border-radius: 16px;
  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: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.93rem;
  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: 1rem;
  padding: 1rem;
  border-radius: 12px;
  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);
  }
}