/*custom.css - Custom styles for the aviation section and related components */
/* ── Desktop container alignment (matches Charter Solutions .ce-container) ── */
@media (min-width: 992px) {
  .container {
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.custom-aviation {
  background: linear-gradient(
    180deg, 
    transparent 0%, 
    var(--color-bg) 15%, 
    var(--color-bg-secondary) 85%, 
    transparent 100%
  );
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle gold diagonal background pattern */
.custom-aviation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(250, 205, 81, 0.018) 0px,
    rgba(250, 205, 81, 0.018) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Background Decorative Flight Paths ───────────────────── */
.flight-path-decor-1,
.flight-path-decor-2 {
  display: none !important;
}

.custom-aviation .container {
  position: relative;
  z-index: 2;
}

/* Responsive top-padding adjustment to clear the overlapping booking panel */
@media (max-width: 991px) {
  .custom-aviation {
    padding-top: 290px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .custom-aviation {
    padding-top: 340px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .custom-aviation {
    padding-top: 410px;
    padding-bottom: 60px;
  }
}

/* ── Left Column (Media & Quote) ──────────────────────────── */
.aviation-media-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: visible;
}

.aviation-img-container {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.aviation-img-container .main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #eef1f6;
  display: block;
  transition: transform 0.55s ease;
}

.aviation-img-container:hover .main-image {
  transform: scale(1.02);
}

/* Glassmorphism badge */
.glass-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: rgba(17, 28, 38, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
  z-index: 10;
}

.glass-badge .badge-icon {
  font-size: 32px;
  color: var(--color-accent);
}

.glass-badge .badge-content {
  display: flex;
  flex-direction: column;
}

.glass-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.glass-badge .badge-label {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Founder quote card below image */
.founder-statement-card {
  background: rgba(250, 205, 81, 0.04);
  border: 1px dashed var(--border-gold);
  border-radius: 12px;
  padding: 28px 24px 20px;
  position: relative;
  margin-top: 20px;
}

.founder-statement-card .quote-mark {
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 80px;
  font-family: var(--font-heading);
  color: rgba(250, 205, 81, 0.08);
  line-height: 1;
}

.founder-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

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

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.founder-role {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ── Center Column (Core Narrative) ───────────────────────── */
.aviation-content {
  padding: 0 15px;
}

.aviation-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.aviation-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 24px;
}

.aviation-lead {
  font-size: 18px;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.aviation-paragraph {
  font-size: 16px;
  color: var(--color-text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.aviation-paragraph.text-highlight {
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  margin-top: 22px;
  margin-bottom: 25px;
}

.aviation-btn-group {
  margin-top: 30px;
}

/* CTA button slide transition */
.aviation-btn-group .btn--base {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 1;
}

.aviation-btn-group .btn--base i {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.aviation-btn-group .btn--base:hover i {
  transform: translateX(6px);
}

/* ── Right Column (3 P's Sidebar) ─────────────────────────── */
.three-ps-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  position: relative;
  z-index: 1000; /* Higher than banner-booking-panel (999) to prevent blocking mouse hovers */
}

.p-card {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px 20px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

/* Gold bar slide-in from left on hover */
.p-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 3;
}

.p-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.p-card:hover::before {
  transform: scaleY(1);
}

/* Styled circular icon containers */
.p-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(250, 205, 81, 0.06);
  color: var(--color-accent);
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Smooth rotational scale on hover for the icon */
.p-card:hover .p-card-icon {
  background: var(--color-accent);
  color: #111C26;
  transform: scale(1.08) rotate(360deg);
}

.p-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.p-card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ── Responsive breakpoints ───────────────────────────────── */
@media (max-width: 1199px) {
  .aviation-title {
    font-size: 38px;
  }
  .aviation-lead {
    font-size: 17px;
  }
  .p-card {
    padding: 20px 16px;
  }
}

@media (max-width: 991px) {
  /* Stack columns vertically with better order & spacing */
  .custom-aviation {
    padding-top: 290px;
    padding-bottom: 70px;
  }
  .aviation-media-wrapper {
    max-width: 550px;
    margin: 0 auto 40px;
  }
  .aviation-img-container {
    margin-bottom: 25px;
  }
  .glass-badge {
    right: 0px;
    bottom: -15px;
    padding: 12px 16px;
    gap: 10px;
  }
  .glass-badge .badge-icon {
    font-size: 26px;
  }
  .glass-badge .badge-number {
    font-size: 18px;
  }
  .glass-badge .badge-label {
    font-size: 10px;
  }
  .founder-statement-card {
    margin-top: 20px;
    padding: 24px 20px 16px;
  }
  .aviation-content {
    padding: 0;
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: left;
  }
}

/* For Tablet View (min-width: 768px) and (max-width: 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .three-ps-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 10px;
  }
  .three-ps-sidebar .p-card {
    margin-bottom: 0 !important;
    padding: 24px 16px;
    height: 100%;
  }
}

/* For Mobile View (max-width: 767px) */
@media (max-width: 767px) {
  .custom-aviation {
    padding-top: 340px;
    padding-bottom: 50px;
  }
  .aviation-media-wrapper {
    max-width: 100%;
  }
  .three-ps-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .three-ps-sidebar .p-card {
    margin-bottom: 0 !important;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    padding: 16px 20px;
    align-items: start;
    text-align: left;
  }
  .three-ps-sidebar .p-card-icon {
    grid-row: 1 / span 2;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 20px;
    align-self: center;
  }
  .three-ps-sidebar .p-card-title {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 16px;
  }
  .three-ps-sidebar .p-card-desc {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .custom-aviation {
    padding-top: 410px;
  }
  .aviation-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .aviation-lead {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .aviation-paragraph {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .aviation-paragraph.text-highlight {
    margin-top: 18px;
    margin-bottom: 20px;
    padding-left: 12px;
  }
  .founder-quote-text {
    font-size: 16px;
    line-height: 1.5;
  }
  .glass-badge {
    padding: 10px 12px;
    gap: 8px;
    bottom: -10px;
    right: 10px;
  }
  .glass-badge .badge-icon {
    font-size: 22px;
  }
  .glass-badge .badge-number {
    font-size: 16px;
  }
}

/* 
   Prevent the fixed 900px call-widget-wrapper overlay from intercepting 
   pointer/hover events on sibling content (like the Privacy card) when closed.
*/
.call-widget-wrapper {
  display: block !important;
  pointer-events: none !important;
  z-index: 99999 !important;
  background-color: var(--color-card) !important;
  border-left: 1px solid var(--border-light) !important;
}
.call-widget-wrapper.open {
  pointer-events: auto !important;
}
.call-widget-wrapper .call-widget-btn,
.call-widget-wrapper .call-widget-form-area,
.call-widget-wrapper * {
  pointer-events: auto !important;
}

/* Compact and readable call widget inputs */
.call-widget-wrapper {
  padding: 24px 30px !important; /* Make widget height more compact */
  z-index: 200000 !important; /* Ensure it overlays the header section (z-index: 100000) */
}

/* Close button for responsive views */
.close-widget-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
  display: none;
}

.close-widget-btn:hover {
  color: var(--color-text);
  transform: scale(1.1);
}

.call-widget-form-area .book-form label {
  color: var(--color-text) !important;
  margin-bottom: 6px !important;
  font-size: var(--body-sm-font-size) !important;
}

.call-widget-form-area .book-form .form--control {
  color: var(--color-text) !important;
  background: var(--surface-hover) !important;
  border: 1px solid var(--border-medium) !important;
  height: 42px !important;
  font-size: 13px !important;
  border-radius: var(--radius-sm) !important;
  padding-left: 40px !important;
}

.call-widget-form-area .book-form .form--control::placeholder {
  color: var(--color-text-muted) !important;
}

.call-widget-form-area .book-form textarea.form--control {
  height: auto !important;
  min-height: 60px !important;
  resize: vertical !important;
  padding-top: 10px !important;
}

/* Anchor icon to its own input container */
.call-widget-form-area .book-form .book-select {
  position: relative !important;
}

/* Specifically style the book-select container icon */
.call-widget-form-area .book-form .book-select .book-form-icon {
  top: 38px !important;
  left: 15px !important;
  font-size: 15px !important;
  color: var(--color-accent) !important;
}

/* Date input styling: match the other card-colored text fields */
.call-widget-form-area .book-form input[type="date"] {
  background: var(--color-card-deep) !important;
  color: #fff !important;
  padding-left: 40px !important;
}
.call-widget-form-area .book-form input[type="date"]::-webkit-datetime-edit {
  color: #fff !important;
}

.call-widget-form-area .book-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(340deg) !important; /* Gold calendar indicator */
  cursor: pointer;
}

/* Style nice-select custom dropdown to match compact size and white color */
.call-widget-form-area .book-form .nice-select {
  height: 42px !important;
  line-height: 40px !important;
  background: var(--surface-hover) !important;
  color: var(--color-text) !important;
  border: 1px solid var(--border-medium) !important;
  padding-left: 40px !important;
}

.call-widget-form-area .book-form .nice-select .current {
  color: var(--color-text) !important;
}

.call-widget-form-area .book-form .nice-select .list {
  background: color-mix(in srgb, var(--color-bg) 90%, black) !important;
  border: 1px solid var(--color-accent) !important;
}

.call-widget-form-area .book-form .nice-select .option {
  color: var(--color-text) !important;
}

.call-widget-form-area .book-form .nice-select .option.selected,
.call-widget-form-area .book-form .nice-select .option:hover {
  background: var(--color-accent) !important;
  color: #111C26 !important;
}

/* Style the passenger quantity input wrapper and buttons */
.call-widget-form-area .book-quantity {
  margin-top: 0 !important;
}

.call-widget-form-area .book-quantity .book-plus-minus {
  height: 42px !important;
  border: 1px solid var(--border-medium) !important;
  background: var(--surface-hover) !important;
  border-radius: var(--radius-sm) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.call-widget-form-area .book-quantity .book-plus-minus .qtybutton {
  height: 100% !important;
  width: 40px !important;
  line-height: 40px !important;
  color: var(--color-accent) !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 700 !important;
  cursor: pointer;
  user-select: none;
  float: none !important;
}

.call-widget-form-area .book-quantity .book-plus-minus .book-plus-minus-box {
  background: transparent !important;
  border: none !important;
  color: var(--color-text) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  height: 100% !important;
  width: calc(100% - 80px) !important;
  text-align: center !important;
  padding: 0 !important;
}

/* ── Section wrapper ──────────────────────────────────────── */
.fb2-section {
  background: linear-gradient(180deg, var(--color-bg-secondary), var(--color-section));
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Very faint crosshatch texture */
.fb2-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(250, 205, 81, 0.025) 0px,
      rgba(250, 205, 81, 0.025) 1px,
      transparent 1px,
      transparent 44px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(250, 205, 81, 0.025) 0px,
      rgba(250, 205, 81, 0.025) 1px,
      transparent 1px,
      transparent 44px
    );
  pointer-events: none;
  z-index: 0;
}

/* Elegant compass rose watermark layer for depth */
.fb2-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 2 L50 98 M2 50 L98 50 M16.07 16.07 L83.93 83.93 M16.07 83.93 L83.93 16.07' stroke='rgba(250, 205, 81, 0.02)' stroke-width='0.4'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='rgba(250, 205, 81, 0.015)' stroke-width='0.4'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='rgba(250, 205, 81, 0.015)' stroke-width='0.4'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='rgba(250, 205, 81, 0.015)' stroke-width='0.4' stroke-dasharray='1 1'/%3E%3Cpolygon points='50,12 52.5,47.5 88,50 52.5,52.5 50,88 47.5,52.5 12,50 47.5,47.5' fill='none' stroke='rgba(250, 205, 81, 0.03)' stroke-width='0.5'/%3E%3Cpolygon points='50,22 51.5,48.5 78,50 51.5,51.5 50,78 48.5,51.5 22,50 48.5,48.5' fill='none' stroke='rgba(250, 205, 81, 0.02)' stroke-width='0.4'/%3E%3C/svg%3E")
    no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
}

.fb2-section .container {
  position: relative;
  z-index: 1;
}

/* ── Section Header ───────────────────────────────────────── */
.fb2-header {
  margin-bottom: 80px;
}

/* Eyebrow: bumped from 11px → 13px, tighter tracking */
.fb2-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 18px;
}

/* Title: deep navy, strong weight, generous spacing */
.fb2-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--color-bg);
  line-height: 1.15;
  margin-bottom: 28px;
}

/* Ornamental diamond-rule */
.fb2-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.fb2-rule-line {
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent));
}

.fb2-rule-line:last-child {
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.fb2-rule-diamond {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Editorial Block (Mission / Vision) ───────────────────── */
.fb2-editorial-block {
  margin-bottom: 0;
  padding: 52px 32px;
  border-top: 1px solid rgba(250, 205, 81, 0.18);
  position: relative;
  z-index: 1;
  transition:
    background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-radius 0.4s ease,
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fb2-editorial-block:hover {
  background: rgba(17, 28, 38, 0.5);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  transform: translateY(-3px);
}

/* Alternate (Vision) indented for editorial rhythm */
.fb2-editorial-block--alt .fb2-editorial-inner {
  padding-left: 40px;
}

.fb2-editorial-inner {
  display: flex;
  align-items: flex-start;
  gap: 52px;
}

/* ── Large Gold Number ────────────────────────────────────── */
.fb2-ed-number-col {
  flex-shrink: 0;
  width: 90px;
  text-align: right;
  padding-top: 4px;
}

/* Reduced size + lighter stroke so it accents rather than competes */
.fb2-ed-number {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 205, 81, 0.28);
  text-stroke: 1.5px rgba(250, 205, 81, 0.28);
  display: block;
  transition:
    -webkit-text-stroke 0.35s ease,
    color 0.35s ease;
  user-select: none;
}

.fb2-editorial-block:hover .fb2-ed-number {
  -webkit-text-stroke: 1.5px var(--color-accent);
  color: rgba(250, 205, 81, 0.06);
}

/* ── Content Column ───────────────────────────────────────── */
.fb2-ed-content-col {
  flex: 1;
  border-left: 3px solid rgba(250, 205, 81, 0.3);
  padding-left: 40px;
  transition: border-color 0.35s ease;
}

.fb2-editorial-block:hover .fb2-ed-content-col {
  border-left-color: var(--color-cyan);
}

/* Tag + extending line */
.fb2-ed-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Tag: bumped from 11px → 12.5px */
.fb2-ed-tag {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
}

.fb2-ed-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(250, 205, 81, 0.4), transparent);
}

/* Sub-heading: bumped from 28px → 31px, tighter italic */
.fb2-ed-heading {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 31px;
  font-weight: 600;
  color: var(--color-bg);
  line-height: 1.38;
  margin-bottom: 20px;
}

/* Vision block heading — upright to differentiate from Mission */
.fb2-editorial-block--alt .fb2-ed-heading {
  font-style: normal;
}

/* Body: bumped from 15.5px → 17px, ink-dark color, generous line-height */
.fb2-ed-body {
  font-size: 17px;
  color: #1a2035;
  line-height: 1.9;
  margin: 0;
  max-width: 720px;
  font-weight: 400;
}

/* ── Ornamental Dividers ──────────────────────────────────── */
.fb2-ornament {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.fb2-orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 205, 81, 0.35), transparent);
}

.fb2-orn-icon {
  font-size: 22px;
  color: rgba(250, 205, 81, 0.55);
  flex-shrink: 0;
  transition:
    color 0.3s ease,
    transform 0.6s ease;
}

.fb2-ornament:hover .fb2-orn-icon {
  color: var(--color-accent);
  transform: translateX(6px) rotate(-12deg);
}

/* ── Core Values Sub-header ───────────────────────────────── */
.fb2-values-header {
  padding: 56px 0 32px;
  border-top: 1px solid rgba(250, 205, 81, 0.18);
}

/* Eyebrow: bumped from 11px → 13px */
.fb2-values-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  position: relative;
  padding-bottom: 14px;
}

.fb2-values-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.fb2-values-header:hover .fb2-values-eyebrow::after {
  width: 64px;
}

/* ── 2-column Values Grid ─────────────────────────────────── */
.fb2-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

/* ── Value Items (Tactile floating card styling for depth) ── */
.fb2-value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.4s ease,
    background 0.4s ease;
  cursor: default;
  overflow: hidden;
}

/* Faint gradient reflection on hover */
.fb2-value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(226, 184, 74, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.fb2-value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
  background: #203847;
}

.fb2-value-item:hover::before {
  opacity: 1;
}

/* Ensure child elements stack correctly above pseudo-element */
.fb2-val-pill,
.fb2-val-text {
  position: relative;
  z-index: 1;
}

/* Icon pill: with white base and subtle shadow for depth */
.fb2-val-pill {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(250, 205, 81, 0.08);
  border: 1px solid var(--border-gold);
  box-shadow: 0 2px 6px rgba(250, 205, 81, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 20px;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.35s ease;
  margin-top: 3px;
}

.fb2-value-item:hover .fb2-val-pill {
  background: var(--color-accent);
  color: #111C26;
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 4px 10px rgba(250, 205, 81, 0.25);
}

/*
 * KEY READABILITY FIX — Value text layout
 * Changed from pure inline flow (name — desc) to stacked column:
 *   [ICON]  Value Name          ← Playfair 17px bold, full dark navy
 *           Description text    ← Mulish 15.5px, charcoal, own line
 * The em-dash is hidden on desktop to remove visual clutter.
 */
.fb2-val-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fb2-val-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  font-style: normal;
  line-height: 1.25;
  display: block;
}

/* Hide the em-dash on desktop (stacked layout makes it redundant) */
.fb2-val-dash {
  display: none;
}

.fb2-val-desc {
  font-size: 15.5px;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-weight: 400;
  display: block;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .fb2-title {
    font-size: 44px;
  }
  .fb2-ed-number {
    font-size: 68px;
  }
  .fb2-ed-heading {
    font-size: 27px;
  }
  .fb2-editorial-inner {
    gap: 40px;
  }
  .fb2-ed-body {
    font-size: 16.5px;
  }
}

@media (max-width: 991px) {
  .fb2-section {
    padding: 80px 0 70px;
  }
  .fb2-title {
    font-size: 36px;
  }
  .fb2-editorial-block--alt .fb2-editorial-inner {
    padding-left: 0;
  }
  .fb2-ed-number-col {
    width: 70px;
  }
  .fb2-ed-number {
    font-size: 60px;
  }
  .fb2-ed-content-col {
    padding-left: 28px;
  }
  .fb2-ed-body {
    font-size: 16px;
  }
}

/* Values grid → single column at 900px (tablet) */
@media (max-width: 900px) {
  .fb2-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fb2-value-item {
    padding: 24px;
  }
  /* Restore dash as inline separator on single-column layout */
  .fb2-val-text {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
  }
  .fb2-val-name {
    font-size: 16px;
  }
  .fb2-val-dash {
    display: inline;
    color: rgba(250, 205, 81, 0.6);
    margin: 0 6px;
    font-weight: 300;
  }
  .fb2-val-desc {
    font-size: 15px;
    display: inline;
  }
}

@media (max-width: 767px) {
  .fb2-title {
    font-size: 30px;
  }
  .fb2-header {
    margin-bottom: 50px;
  }
  .fb2-editorial-block {
    padding: 40px 20px;
  }
  .fb2-editorial-inner {
    flex-direction: column;
    gap: 16px;
  }
  .fb2-ed-number-col {
    width: auto;
    text-align: left;
  }
  .fb2-ed-number {
    font-size: 48px;
  }
  .fb2-ed-content-col {
    border-left: none;
    border-top: 3px solid rgba(250, 205, 81, 0.3);
    padding-left: 0;
    padding-top: 20px;
  }
  .fb2-editorial-block:hover .fb2-ed-content-col {
    border-top-color: var(--color-cyan);
    border-left: none;
  }
  /* Values: single column card adjustment */
  .fb2-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fb2-value-item {
    padding: 20px;
  }
  /* Restore dash as separator on single-column mobile */
  .fb2-val-text {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
  }
  .fb2-val-name {
    font-size: 16px;
  }
  .fb2-val-dash {
    display: inline;
    color: rgba(250, 205, 81, 0.6);
    margin: 0 6px;
    font-weight: 300;
  }
  .fb2-val-desc {
    font-size: 15px;
    display: inline;
  }
}

@media (max-width: 575px) {
  .fb2-section {
    padding: 60px 0 50px;
  }
  .fb2-title {
    font-size: 26px;
  }
  .fb2-editorial-block {
    padding: 30px 16px;
  }
  .fb2-value-item {
    padding: 16px;
    gap: 14px;
  }
}

/* ============================================================
    Private Jet Charter Fleet Portfolio Styles
    ============================================================ */

.fleet-portfolio-section {
  background: linear-gradient(180deg, var(--color-section), var(--color-bg-secondary));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



/* ── Tab Switcher Layout ──────────────────────────────────── */
.fleet-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 0;
}

.fleet-tabs-container {
  display: inline-flex;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  padding: 6px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
}

.fleet-tab-btn {
  font-family: var(--font-body), sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 12px 36px;
  border-radius: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
}

.fleet-tab-btn.active {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #111C26;
  box-shadow: 0 4px 12px rgba(250, 205, 81, 0.3);
}

.fleet-tab-btn:hover:not(.active) {
  color: var(--color-accent);
}

/* ── Tab Panel Display & Animation ───────────────────────── */
.fleet-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.fleet-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ── Card Styles ──────────────────────────────────────────── */
.fleet-card {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.fleet-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(13, 24, 34, 0.5);
}

.fleet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Custom alignment overrides to prevent helicopter clipping */
.fleet-img-wrapper img[src*="single-helicopter"] {
  object-position: 50% 55%;
}

.fleet-img-wrapper img[src*="twin-helicopter"] {
  object-position: 50% 18%; /* Pulls down the high-flying helicopter to center it */
}

.fleet-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #111C26;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.fleet-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  min-height: 30px;
}

.fleet-card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 75px;
}

/* ── Spec Lists ───────────────────────────────────────────── */
.fleet-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
}

.fleet-specs li {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 400;
}

.fleet-specs li i {
  color: var(--color-accent);
  font-size: 16px;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.fleet-specs li strong {
  color: var(--color-text-soft);
  margin-right: 5px;
}

.fleet-card-btn-area {
  margin-top: auto;
}

.fleet-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--color-text-soft);
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.fleet-card:hover .fleet-card-btn {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  border-color: transparent;
  color: #111C26;
}

.fleet-card-btn:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent)) !important;
  border-color: transparent !important;
  color: #111C26 !important;
}

/* ── Booking Form Area ────────────────────────────────────── */
.fleet-booking-section {
  background: linear-gradient(180deg, var(--color-bg-secondary), var(--color-bg));
  color: var(--color-text);
  padding: 80px 0;
  position: relative;
}

.fleet-booking-section .section-header .sub-title {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fleet-booking-form {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.fleet-booking-form label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: block;
}

.fleet-booking-form .form-control {
  background: rgba(13, 24, 34, 0.4);
  border: 1px solid var(--border-light);
  color: var(--color-text);
  border-radius: 12px;
  padding: 12px 16px;
  height: auto;
  font-size: 15px;
  transition: all 0.3s ease;
}

.fleet-booking-form .form-control:focus {
  background: rgba(13, 24, 34, 0.6);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(250, 205, 81, 0.15);
  color: var(--color-text);
}

.fleet-booking-form select.form-control option {
  background: var(--color-card);
  color: var(--color-text);
}

.fleet-booking-form .btn--base {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* ── Responsive Styling ────────────────────────────────────── */
@media (max-width: 991px) {
  .fleet-tabs-wrapper {
    margin-bottom: 40px;
  }
  .fleet-tab-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  .fleet-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .fleet-portfolio-section {
    padding: 60px 0;
  }
  .fleet-tabs-wrapper {
    margin-bottom: 30px;
  }
  .fleet-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .fleet-booking-form {
    padding: 24px;
  }
}
/* ============================================================
   Our Signature Seven Promises to You — Concept 6: Horizontal Airfoil Flow
   ──────────────────────────────────────────────────────────
   Design tokens:
     Gold:      var(--color-accent)
     Navy:      var(--color-bg)
     Charcoal:  #2c3545
     Ink:       #1a2035
     Parchment: #f4f1eb
     Fonts:  Playfair Display (headings) · Mulish (body)
   ============================================================ */

.f6-promises-section {
  background: linear-gradient(180deg, var(--color-bg-secondary), var(--color-section));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Faint crosshatch texture */
.f6-promises-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(250, 205, 81, 0.02) 0px,
      rgba(250, 205, 81, 0.02) 1px,
      transparent 1px,
      transparent 44px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(250, 205, 81, 0.02) 0px,
      rgba(250, 205, 81, 0.02) 1px,
      transparent 1px,
      transparent 44px
    );
  pointer-events: none;
  z-index: 0;
}

.f6-promises-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* ── Left Column: Typography & Instruction ────────────────── */
.f6-promises-header {
  text-align: left;
  padding-right: 20px;
}

.f6-promises-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 18px;
}

.f6-promises-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--color-bg);
  line-height: 1.2;
  margin-bottom: 36px;
}

/* Interactive Scroll Hint */
.f6-nav-instruction {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.f6-nav-text {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.f6-nav-arrow-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  position: relative;
  animation: f6-arrow-dash 2s infinite ease-in-out;
}

.f6-nav-arrow {
  color: var(--color-accent);
  font-size: 16px;
  animation: f6-arrow-bounce 2s infinite ease-in-out;
}

/* ── Right Column: Horizontal Scroll ──────────────────────── */
.f6-panorama-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 40px;
  margin-bottom: -20px;
}

@media (min-width: 992px) {
  .f6-panorama-scroll {
    max-width: 748px;
    width: 100%;
  }
}

/* Elegant custom scrollbar */
.f6-panorama-scroll::-webkit-scrollbar {
  height: 3px;
}

.f6-panorama-scroll::-webkit-scrollbar-track {
  background: rgba(250, 205, 81, 0.08);
  border-radius: 2px;
}

.f6-panorama-scroll::-webkit-scrollbar-thumb {
  background: rgba(250, 205, 81, 0.35);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.f6-panorama-scroll:hover::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}

.f6-panorama-inner {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: max-content;
  padding-left: 20px;
}

/* ── Promise Items ────────────────────────────────────────── */
.f6-promise-item {
  flex: 0 0 340px;
  position: relative;
  padding: 20px 48px 20px 0;
  margin-right: 48px;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f6-promise-item:hover {
  transform: translateY(-8px);
}

/* Aerodynamic Airfoil Divider */
.f6-airfoil-divider {
  position: absolute;
  right: 0;
  top: 5%;
  bottom: 5%;
  width: 8px;
  pointer-events: none;
}

.f6-airfoil-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 6px;
  border-right: 1.5px solid rgba(250, 205, 81, 0.15);
  /* Creates a beautiful wing-camber curved separator */
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  transition:
    border-color 0.4s ease,
    transform 0.4s ease;
}

.f6-promise-item:hover .f6-airfoil-divider::before {
  border-right-color: rgba(250, 205, 81, 0.45);
  transform: scaleX(1.4);
}

/* Last item has no divider */
.f6-promise-item:last-child .f6-airfoil-divider {
  display: none;
}

/* ── Typography ───────────────────────────────────────────── */
.f6-promise-number {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: rgba(250, 205, 81, 0.28);
  display: block;
  margin-bottom: 12px;
  padding-left: 6px; /* Prevents the italicized '0' from being clipped on the left */
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.f6-promise-item:hover .f6-promise-number {
  color: var(--color-accent);
  transform: scale(1.05);
  transform-origin: left center;
}

.f6-promise-title {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--color-bg);
  margin-bottom: 14px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.f6-promise-item:hover .f6-promise-title {
  color: var(--color-accent);
}

.f6-promise-desc {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Keyframe Animations ───────────────────────────────────── */
@keyframes f6-arrow-dash {
  0%,
  100% {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1.4);
    transform-origin: left;
    opacity: 1;
  }
}

@keyframes f6-arrow-bounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* ── Responsive Styling ────────────────────────────────────── */
@media (max-width: 1199px) {
  .f6-promises-title {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .f6-promises-section {
    padding: 80px 0;
  }

  .f6-promises-header {
    margin-bottom: 50px;
    text-align: center;
    padding-right: 0;
  }

  .f6-nav-instruction {
    justify-content: center;
  }

  .f6-panorama-scroll {
    /* Ensure scroll container fills the column fully */
    width: 100%;
    max-width: none;
  }

  .f6-panorama-inner {
    padding-left: 0;
  }

  /* Tablet: show exactly 2 promises at a time */
  .f6-promise-item {
    flex: 0 0 calc(50% - 20px);
    min-width: 0;
    padding-right: 24px;
    margin-right: 24px;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  /* Mobile: show exactly 1 promise at a time */
  .f6-panorama-scroll {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .f6-panorama-inner {
    padding-left: 0;
    gap: 0;
  }
  .f6-promise-item {
    /* 100vw minus the horizontal padding on the scroll container */
    flex: 0 0 calc(100vw - 56px);
    min-width: 0;
    padding-right: 24px;
    margin-right: 20px;
    box-sizing: border-box;
    scroll-snap-align: start;
  }
}

@media (max-width: 575px) {
  .f6-promises-section {
    padding: 60px 0;
  }

  .f6-promises-title {
    font-size: 28px;
  }

  .f6-promise-title {
    font-size: 19px;
  }

  .f6-promise-desc {
    font-size: 14px;
  }
}



/* ── Featured Full-Width Fleet Card ──────────────────────── */
@media (min-width: 992px) {
  .fleet-card-featured {
    flex-direction: row !important;
    align-items: stretch;
  }

  .fleet-card-featured .fleet-img-wrapper {
    width: 40% !important;
    height: auto !important;
    min-height: 100%;
    flex-shrink: 0;
  }

  .fleet-card-featured .fleet-card-body {
    width: 60% !important;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center details relative to image */
  }

  .fleet-card-featured .fleet-specs {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 24px;
    margin-bottom: 24px;
  }

  .fleet-card-featured .fleet-specs li {
    margin-bottom: 0 !important;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6px;
  }

  .fleet-card-featured .fleet-specs li:nth-last-child(-n + 2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =====================================================
   MINIMAL FULL-WIDTH MODERN FOOTER
   ===================================================== */
.footer-section {
  /* Removed forced bright background so footer uses default dark navy to blend seamlessly */
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 60px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  z-index: 10;
}

/* Seamless blend when footer immediately follows the full-width journey CTA section */
.journey-cta-section ~ .footer-section {
  margin-top: -2px !important;
  padding-top: 40px !important;
}

@media (max-width: 991px) {
  .journey-cta-section ~ .footer-section {
    padding-top: 35px !important;
  }
}

@media (max-width: 767px) {
  .journey-cta-section ~ .footer-section {
    padding-top: 30px !important;
  }
}

.footer-minimal-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}
.footer-minimal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

@media (min-width: 992px) {
  .footer-minimal-socials {
    margin-left: auto;
  }

  .footer-minimal-contacts {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

.footer-minimal-contacts {
  display: flex;
  gap: 40px;
}

.footer-minimal-contacts .contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  align-items: center;
}

.footer-minimal-contacts .contact-label {
  font-family: var(--font-label);
  font-size: var(--label-sm-font-size);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: var(--label-sm-letter-spacing);
  text-shadow: var(--shadow-sm);
  text-align: center;
}

.footer-minimal-contacts .contact-value {
  font-family: var(--font-body);
  font-size: var(--body-md-font-size);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-normal);
  text-shadow: var(--shadow-sm);
  text-align: center;
}

.footer-minimal-contacts .contact-value:hover {
  color: var(--color-accent);
}

/* Social Outline Icons */
.footer-minimal-socials .footer-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.footer-minimal-socials .footer-social-links li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-medium) !important;
  background: rgba(0, 0, 0, 0.5) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-soft);
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.footer-minimal-socials .footer-social-links li a:hover {
  border-color: var(--color-cyan);
  background: var(--color-cyan) !important;
  color: #111C26;
  transform: scale(1.08) rotate(360deg);
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-cyan) 30%, transparent);
}

/* Middle Row: Navigation Links */
.footer-minimal-nav {
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 35px;
  row-gap: 15px;
}

.footer-nav-links li {
  font-family: var(--font-body);
  font-size: var(--body-sm-font-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav-links li a {
  color: var(--color-text);
  transition:
    color var(--transition-normal),
    transform var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  text-shadow: var(--shadow-sm);
}

/* Horizontal slide underline on hover */
.footer-nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-nav-links li a:hover {
  color: var(--color-accent);
}

.footer-nav-links li a:hover::after {
  transform: scaleX(1);
}

/* Bottom Row: Copyright & Vetting Badge */
.footer-minimal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--border-light);
}

.copyright-text {
  font-family: var(--font-body);
  font-size: var(--body-sm-font-size);
  color: var(--color-text-muted);
  margin: 0;
  text-shadow: var(--shadow-sm);
}

.powered-by {
  font-family: var(--font-body);
  font-size: var(--label-sm-font-size);
  color: var(--color-text-soft);
  margin: 0;
  text-align: center;
  width: 100%;
  letter-spacing: 0.5px;
}

.powered-by a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
}

.powered-by a:hover,
.powered-by a:focus-visible {
  color: #ffffff;
}

.footer-minimal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-minimal-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-accent) 80%, transparent);
}

.footer-minimal-badge .badge-text {
  font-family: var(--font-label);
  font-size: var(--label-sm-font-size);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--label-sm-letter-spacing);
  text-shadow: var(--shadow-sm);
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .footer-minimal-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-minimal-contacts {
    flex-direction: column;
    gap: 15px;
  }
  .footer-minimal-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }
  .footer-minimal-wrap {
    gap: 30px;
  }
}



/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Charter Hero Section — Fullscreen Centered
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Charter Hero Section — Sophisticated Editorial Layout (Concept C)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.charter-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 9;
  background-color: transparent !important;
}

.charter-hero-section .container {
  padding-top: 150px;
  padding-bottom: 120px;
}

/* ── Glassmorphic Card Wrapper ── */
.charter-hero-editorial-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(250, 205, 81, 0.12);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: border-color 0.4s ease;
}

.charter-hero-editorial-card:hover {
  border-color: rgba(250, 205, 81, 0.28);
}

/* ── Editorial Wrap ── */
.charter-hero-editorial-wrap {
  text-align: left;
  max-width: 780px;
  position: relative;
}

.charter-hero-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: "Mulish", sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.charter-hero-subtitle {
  display: block;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  color: white;
  font-family: "Mulish", sans-serif;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.charter-hero-subtitle span,
.charter-hero-title span {
  background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent), var(--color-bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.charter-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.25;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 4px 20px rgba(0, 0, 0, 0.6);
}

/* ── Editorial Quote Lead Card ── */
.editorial-lead-card {
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-left: 4px solid var(--color-accent);
  border-top: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  border-radius: 0 16px 16px 0;
  padding: 22px 30px;
  margin: 28px 0 24px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 4px 20px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.editorial-lead-card:hover {
  transform: translateX(4px);
  border-top-color: rgba(250, 205, 81, 0.2);
  border-right-color: rgba(250, 205, 81, 0.2);
  border-bottom-color: rgba(250, 205, 81, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* ── Description Styling ── */
.editorial-desc-text {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 35px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ── Pulsing Shadow CTA Button Wrapper ── */
.pulse-glow-btn-wrap {
  display: inline-block;
  position: relative;
  border-radius: 0px;
}

.pulse-glow-btn-wrap .sol-cta {
  animation: buttonPulse 2.4s infinite ease-in-out;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 205, 81, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(250, 205, 81, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 205, 81, 0);
  }
}

/* Stop pulse animation when button is hovered */
.pulse-glow-btn-wrap:hover .sol-cta {
  animation: none;
  box-shadow: 0 10px 34px rgba(250, 205, 81, 0.3);
}

/* ── CTA Button ── */
.sol-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 42px;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  background: var(--surface-glass);
  transition:
    color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.sol-cta .sol-cta-fill {
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-102%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.sol-cta:hover {
  color: #111C26;
  text-decoration: none;
  box-shadow: 0 10px 34px color-mix(in srgb, var(--color-accent) 30%, transparent);
}

.sol-cta:hover .sol-cta-fill {
  transform: translateX(0);
}

.sol-cta span,
.sol-cta i {
  position: relative;
  z-index: 1;
}

.sol-cta i {
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

.sol-cta:hover i {
  transform: translateX(6px);
}

/* ── Responsive Styling ── */
@media only screen and (max-width: 991px) {
  .charter-hero-section {
    min-height: auto;
  }
  .charter-hero-section .container {
    padding-top: 130px;
    padding-bottom: 100px;
  }
  .editorial-lead-card {
    font-size: 16px;
    line-height: 1.6;
    padding: 18px 24px;
    margin: 24px 0 20px 0;
  }
  .editorial-desc-text {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .charter-hero-section .container {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .charter-hero-subtitle {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .charter-hero-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .editorial-lead-card {
    font-size: 15px;
    line-height: 1.6;
    padding: 15px 18px;
    margin: 20px 0 15px 0;
    border-radius: 0 12px 12px 0;
  }

  .editorial-desc-text {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 25px;
  }
}

/* Maintain fixed width for the quick form button so it remains properly aligned on the screen edge */
.call-widget-wrapper .call-widget-btn {
  width: 244px !important;
  overflow: hidden !important;
}

.call-widget-wrapper .call-widget-btn .num {
  flex-grow: 1;
  justify-content: center;
  padding: 10px 15px !important;
  z-index: 3; /* Keep text/icon above the shimmer */
  position: relative;
}

.call-widget-wrapper .call-widget-btn .arrow {
  z-index: 3; /* Keep arrow above the shimmer */
}

/* Premium Gold/White Shimmer sweep effect on the button when closed/partially-open */
.call-widget-wrapper:not(.open) .call-widget-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(250, 205, 81, 0) 0%,
    rgba(255, 216, 102, 0.8) 50%,
    rgba(250, 205, 81, 0) 100%
  );
  transform: skewX(-25deg);
  animation: gold-shimmer 4.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes gold-shimmer {
  0% {
    left: -150%;
  }
  30% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Smooth transition curves for premium feel */
.call-widget-wrapper {
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transform: translateY(-50%) translateX(100%) !important; /* Dynamic off-screen closed position */
}

.call-widget-wrapper.open {
  transform: translateY(-50%) translateX(0) !important;
}

/* Partially open states on page load (showing From & To inputs) */
.call-widget-wrapper.partially-open {
  transform: translateY(-50%) translateX(50%) !important; /* 50% translation (450px of 900px) */
}

/* Expose more width for the 3-column layout in index.php */
.call-widget-wrapper.partially-open.three-col {
  transform: translateY(-50%) translateX(38.89%) !important; /* 38.89% translation (350px of 900px) */
}

/* ── Responsive breakpoints for Quick Booking Widget ── */
@media only screen and (max-width: 991px) {
  .scrollToTop {
    display: none !important;
  }

  .close-widget-btn {
    display: block !important;
  }

  .call-widget-wrapper {
    width: 550px !important;
    max-width: 100% !important;
    padding: 45px 24px 24px !important;
    border-radius: 12px 0 0 12px !important;
  }

  .call-widget-wrapper.open .call-widget-btn {
    display: none !important;
  }
  /* Hide the desktop quick booking button on mobile screens */
  .call-widget-wrapper .call-widget-btn {
    display: none !important;
  }

  .call-widget-wrapper.partially-open {
    transform: translateY(-50%) translateX(100%) !important; /* Hide peek state on tablet */
  }
}

@media only screen and (max-width: 768px) {
  .call-widget-wrapper {
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    top: 0 !important;
    transform: translateX(100%) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow-y: auto !important;
  }

  .call-widget-wrapper.open {
    transform: translateX(0) !important;
  }

  .call-widget-wrapper.partially-open {
    transform: translateX(100%) !important; /* Hide peek state on mobile */
  }

  .call-widget-wrapper .call-widget-btn {
    top: 30% !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-widget-wrapper {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    transform: translateX(100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .call-widget-wrapper.open {
    transform: translateX(0) !important;
    background: rgba(6, 20, 34, 0.55) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .call-widget-wrapper .call-widget-form-area {
    width: 70vw !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    position: relative !important;
    padding: 24px 35px 24px !important;
    background: var(--color-card, #082B45) !important;
    border: 1px solid rgba(220, 187, 135, 0.18) !important;
    border-radius: 20px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .taxiway-network { display: none !important; }
}

/* Note: The FLOATING PILL-SHAPED NAVBAR DESIGN SYSTEM has been moved to header.css */

/* =====================================================
   REUSABLE CINEMATIC GLOW BACKDROP UTILITY CLASS
   ===================================================== */
.cinematic-glow-backdrop {
  position: relative !important;
  background-color: transparent !important;
  background-image: none !important;
  z-index: 10 !important;
}

.cinematic-glow-backdrop::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(
    circle at var(--backdrop-x, 50%) var(--backdrop-y, 50%),
    rgba(12, 10, 8, 0.55) 0%,
    transparent 70%
  ) !important;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  ) !important;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Ensure all direct children inside the backdrop are stacked above the pseudo-element overlay */
.cinematic-glow-backdrop > * {
  position: relative !important;
  z-index: 2 !important;
}

/* =====================================================
   MOBILE QUICK BOOKING FLOATING ACTION BUTTON (FAB)
   ===================================================== */
@media only screen and (max-width: 991px) {
  .mobile-fab-btn {
    position: fixed !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    right: 16px !important;
    background: rgba(25, 35, 45, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid var(--color-accent) !important;
    color: var(--color-accent) !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: "Mulish", sans-serif !important;
    font-weight: 800 !important;
    font-size: 13.5px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    animation: fabPulse 2.4s infinite ease-in-out !important;
  }
  
  .mobile-fab-btn:hover, .mobile-fab-btn:focus, .mobile-fab-btn:active {
    background: var(--color-accent) !important;
    color: #111C26 !important;
    transform: scale(1.05) translateY(-2px) !important;
    border-color: var(--color-text) !important;
    box-shadow: 0 12px 40px rgba(250, 205, 81, 0.4) !important;
    animation: none !important;
  }
  
  .mobile-fab-btn i {
    font-size: 14px !important;
    transition: transform 0.4s ease !important;
  }
  
  .mobile-fab-btn:hover i {
    transform: rotate(15deg) scale(1.1) !important;
  }
}

@media only screen and (min-width: 992px) {
  .mobile-fab-btn {
    display: none !important;
  }
}

@media only screen and (max-width: 375px) {
  .mobile-fab-btn {
    padding: 12px 18px !important;
    font-size: 12px !important;
    gap: 6px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    right: 12px !important;
  }
  .mobile-fab-btn i {
    font-size: 12px !important;
  }
}

@keyframes fabPulse {
  0% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(250, 205, 81, 0.5);
  }
  70% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 15px rgba(250, 205, 81, 0);
  }
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(250, 205, 81, 0);
  }
}

/* --------------------------------------------------------------
   Premium Stacked Cards – New Design (Concept 7)
   -------------------------------------------------------------- */
.fleet-premium-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-premium-item {
    position: relative;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(250, 205, 81, 0.10) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.30) !important;
    padding: 2.5rem 2rem;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fleet-premium-item:hover {
    border-color: rgba(250, 205, 81, 0.45) !important;
    background: rgba(0, 0, 0, 0.65) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 24px rgba(250, 205, 81, 0.15) !important;
}

.fleet-premium-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.fleet-premium-number {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.fleet-premium-title {
    font-family: "Inter", sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.fleet-premium-image {
    width: 100%;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.fleet-premium-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.55s ease;
}

.fleet-premium-item:hover .fleet-premium-image img {
    transform: scale(1.02);
}

.fleet-premium-description {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.fleet-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.fleet-premium-cta:hover {
    color: #111C26;
    border-bottom-color: var(--color-cyan);
}

.fleet-premium-item.active {
    border-color: rgba(250, 205, 81, 0.65) !important;
    background: rgba(0, 0, 0, 0.75) !important;
}

/* Aircraft Showcase Gallery Styles */
.gallery-eyebrow {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.gallery-heading {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-bg);
  margin-top: 0.4rem;
}
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.category-btn {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--color-accent);
  color: var(--color-bg);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-btn.active,
.category-btn:hover {
  background: var(--color-accent);
  color: #111C26;
}
.gallery-recommendation {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gallery-hero-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.45s ease;
}
.gallery-hero-image img:hover { transform: scale(1.02); }
.gallery-title { margin-top: 1.2rem; font-size: 1.9rem; color: var(--color-bg); }
.gallery-description { margin: 0.8rem 0; color: #555; font-size: 1rem; }
.gallery-specs {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
}
.gallery-specs li { color: #333; }
.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.gallery-cta:hover { background: #9c6d12; color: #111C26; }

/* =====================================================
   CONCEPT 3: FLOATING FLEET CARDS STYLING
   ===================================================== */
.aircraft-gallery-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px 0;
  background-color: #030306;
  z-index: 2;
}

/* Background slides container */
.fleet-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.fleet-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fleet-bg-slide.active {
  opacity: 1;
}

/* Rich vignette overlay over the background image to ensure readability of card texts */
.fleet-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(3, 3, 6, 0.4) 0%, rgba(3, 3, 6, 0.85) 100%),
              linear-gradient(180deg, rgba(3, 3, 6, 0.7) 0%, rgba(3, 3, 6, 0.95) 100%);
  z-index: 2;
}

/* Align container contents above background layers */
.fleet-content-container {
  position: relative;
  z-index: 3;
}

/* Floating Card Styles */
.floating-fleet-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.floating-fleet-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

/* Radial light glow effect on the card */
.floating-fleet-card-glow {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(250, 205, 81, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.floating-fleet-card-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 40px;
  z-index: 1;
}

.floating-fleet-card-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 40px;
}

.fleet-card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  transition: color 0.4s ease;
}

.fleet-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
}

.spec-tag i {
  color: var(--color-accent);
  font-size: 13px;
}

.fleet-card-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  transition: color 0.4s ease;
}

.fleet-card-cta {
  display: flex;
  align-items: center;
}

/* Horizontal Indicator bar on the right side of the card */
.floating-fleet-card-indicator {
  width: 4px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.indicator-bar {
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-accent);
  border-radius: 2px;
  transition: height 0.4s ease;
}

/* Hover and Active Interactions */
.floating-fleet-card:hover,
.floating-fleet-card.active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(250, 205, 81, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(250, 205, 81, 0.05);
}

.floating-fleet-card:hover .fleet-card-title,
.floating-fleet-card.active .fleet-card-title {
  color: var(--color-text);
}

.floating-fleet-card:hover .fleet-card-desc,
.floating-fleet-card.active .fleet-card-desc {
  color: rgba(255, 255, 255, 0.75);
}

.floating-fleet-card:hover .spec-tag,
.floating-fleet-card.active .spec-tag {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(250, 205, 81, 0.06);
  border-color: rgba(250, 205, 81, 0.15);
}

.floating-fleet-card:hover .floating-fleet-card-indicator,
.floating-fleet-card.active .floating-fleet-card-indicator {
  background: rgba(250, 205, 81, 0.2);
}

.floating-fleet-card:hover .indicator-bar,
.floating-fleet-card.active .indicator-bar {
  height: 100%;
}

.floating-fleet-card:hover .floating-fleet-card-glow,
.floating-fleet-card.active .floating-fleet-card-glow {
  background: radial-gradient(circle at 0% 0%, rgba(250, 205, 81, 0.08) 0%, transparent 60%);
}

/* Custom design for section headers */
.gallery-eyebrow {
  color: var(--color-accent) !important;
  font-family: 'Mulish', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

.gallery-heading {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-top: 10px !important;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .floating-fleet-card-inner {
    padding: 30px;
  }
  .floating-fleet-card-content {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .floating-fleet-card-inner {
    padding: 24px 30px;
  }
  .floating-fleet-card-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fleet-card-cta {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .aircraft-gallery-section {
    padding: 80px 0 100px 0;
  }
  .floating-fleet-card-inner {
    padding: 20px 24px;
    gap: 15px;
  }
  .fleet-card-title {
    font-size: 22px;
  }
  .floating-fleet-card-indicator {
    display: none;
  }
}

/* ── Golden radar instrument — more visible ─────────────────── */
html body .hero-radar-svg circle[fill="none"],
html body .hero-radar-svg line {
  stroke: rgba(250, 205, 81, 0.30);
  opacity: 1;
}
html body .hero-radar-svg circle[fill="#FACD51"] {
  fill: rgba(250, 205, 81, 0.55);
}
html body .hero-radar-svg #radar-sweep-group path {
  fill: rgba(250, 205, 81, 0.45);
  opacity: 1;
}
html body .hero-radar-svg #radar-sweep-group line {
  stroke: rgba(250, 205, 81, 0.85);
  opacity: 1;
}

/* Curved flight-path map — more visible golden lines */
html body .ce-decor-map svg path {
  stroke: rgba(250, 205, 81, 0.55);
  stroke-width: 0.6;
}
html body .ce-decor-map svg path[stroke-dasharray] {
  stroke: rgba(250, 205, 81, 0.6);
  stroke-width: 0.45;
}
html body .ce-decor-map svg circle {
  fill: rgba(250, 205, 81, 0.65);
  opacity: 1;
}

/* Dot pulse animation — dims and brightens sequentially along the curve */
@keyframes ce-dot-pulse {
  0%, 100% { opacity: 0.12; filter: drop-shadow(0 0 0 transparent); }
  50% { opacity: 1; filter: drop-shadow(0 0 4px rgba(250, 205, 81, 0.7)); }
}

html body .ce-decor-map svg circle:nth-child(4) {
  animation: ce-dot-pulse 2.8s ease-in-out 0s infinite;
}
html body .ce-decor-map svg circle:nth-child(5) {
  animation: ce-dot-pulse 2.8s ease-in-out 0.4s infinite;
}
html body .ce-decor-map svg circle:nth-child(6) {
  animation: ce-dot-pulse 2.8s ease-in-out 0.8s infinite;
}
html body .ce-decor-map svg circle:nth-child(7) {
  animation: ce-dot-pulse 2.8s ease-in-out 1.2s infinite;
}
html body .ce-decor-map svg circle:nth-child(8) {
  animation: ce-dot-pulse 2.8s ease-in-out 1.6s infinite;
}
html body .ce-decor-map svg circle:nth-child(9) {
  animation: ce-dot-pulse 2.8s ease-in-out 2.0s infinite;
}

/* ==========================================================================
   SHARED SECTION HEADERS / EYEBROWS — Across All Pages
   Enhanced prominence, Oswald luxury typography, responsive scaling
   ========================================================================== */
.about-eyebrow,
.ab-about-eyebrow,
.ab-fleet-eyebrow,
.ab-sol-eyebrow,
.sol-eyebrow,
.fleet-eyebrow,
.advantage-eyebrow,
.cx-eyebrow,
.cs-eyebrow,
.cs-index-label,
.ce-eyebrow,
.ce-label-tag,
.etf-cat-band-eyebrow,
.etf-class-label,
.etf-helimedia-label,
.chd-eyebrow,
.journey-eyebrow,
.ab-journey-eyebrow {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: clamp(14px, 0.9vw + 5px, 18px);
  font-weight: 700;
  letter-spacing: clamp(2.5px, 0.25vw, 4px);
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.3;
}

@media (max-width: 480px) {
  .about-eyebrow,
  .ab-about-eyebrow,
  .ab-fleet-eyebrow,
  .ab-sol-eyebrow,
  .sol-eyebrow,
  .fleet-eyebrow,
  .advantage-eyebrow,
  .cx-eyebrow,
  .cs-eyebrow,
  .cs-index-label,
  .ce-eyebrow,
  .ce-label-tag,
  .etf-cat-band-eyebrow,
  .etf-class-label,
  .etf-helimedia-label,
  .chd-eyebrow,
  .journey-eyebrow,
  .ab-journey-eyebrow {
    font-size: 13.5px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 360px) {
  .about-eyebrow,
  .ab-about-eyebrow,
  .ab-fleet-eyebrow,
  .ab-sol-eyebrow,
  .sol-eyebrow,
  .fleet-eyebrow,
  .advantage-eyebrow,
  .cx-eyebrow,
  .cs-eyebrow,
  .cs-index-label,
  .ce-eyebrow,
  .ce-label-tag,
  .etf-cat-band-eyebrow,
  .etf-class-label,
  .etf-helimedia-label,
  .chd-eyebrow,
  .journey-eyebrow,
  .ab-journey-eyebrow {
    font-size: 12.5px;
    letter-spacing: 2px;
  }
}

