/* ============================================================
   Coral Bay Charters — Horizontal Storytelling Layout
   Color Scheme:
     Primary:  #1B4965  (deep ocean blue)
     Accent:   #E07A5F  (coral / sunset)
     Light BG: #F7F3EE
     Dark:     #0D2137
   Font: Inter (Google Fonts)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

.badge {
  display: inline-block;
  background: rgba(224, 122, 95, 0.12);
  color: #E07A5F;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #E07A5F;
  color: #fff;
}
.btn-primary:hover {
  background: #c9664b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.35);
}

.btn-secondary {
  background: #1B4965;
  color: #fff;
}
.btn-secondary:hover {
  background: #153a52;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 73, 101, 0.35);
}

.btn-outline {
  background: transparent;
  color: #1B4965;
  border: 2px solid #1B4965;
}
.btn-outline:hover {
  background: #1B4965;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ---------- Fixed Nav ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 73, 101, 0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1B4965;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
  fill: #E07A5F;
}

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

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: #444;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E07A5F;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1B4965;
}

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

.nav-book {
  margin-left: 8px;
}

.nav-book a::after {
  display: none;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1B4965;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================================================
   INDEX PAGE — HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0D2137 0%, #1B4965 50%, #2a6f97 100%);
  padding: 120px 24px 140px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(224, 122, 95, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(42, 111, 151, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-inner .badge {
  background: rgba(224, 122, 95, 0.2);
  color: #E07A5F;
}

.hero-inner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}

.hero-inner h1 span {
  color: #E07A5F;
}

.hero-inner p {
  font-size: 1.15rem;
  color: #b0c4d8;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

/* Quick-book floating cards */
.quick-book-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -60px;
  padding: 0 24px;
}

.quick-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.quick-card .qc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.quick-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 4px;
}

.quick-card .qc-price {
  font-size: 0.88rem;
  color: #E07A5F;
  font-weight: 600;
  margin-bottom: 14px;
}

.quick-card .btn {
  width: 100%;
}

/* ======================================================
   FULL-BLEED & PADDED SECTIONS
   ====================================================== */
.section-full {
  padding: 96px 0;
}

.section-padded {
  padding: 96px 0;
}

.section-bg-dark {
  background: #0D2137;
  color: #fff;
}

.section-bg-warm {
  background: #F7F3EE;
}

.section-bg-blue {
  background: linear-gradient(135deg, #1B4965, #2a6f97);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 12px;
}

.section-bg-dark .section-header h2,
.section-bg-blue .section-header h2 {
  color: #fff;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-bg-dark .section-header p,
.section-bg-blue .section-header p {
  color: #b0c4d8;
}

/* ======================================================
   HORIZONTAL TRIP CARDS (index.html)
   ====================================================== */
.horizontal-trips {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.h-trip-card {
  display: grid;
  grid-template-columns: 40% 60%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.h-trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.h-trip-img {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
}

.h-trip-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
}

.h-trip-img .ph-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px;
}

.h-trip-img .ph-label svg {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  opacity: 0.4;
}

.h-trip-img .card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #E07A5F;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.h-trip-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-trip-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 10px;
}

.h-trip-body > p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.h-trip-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}

.h-trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h-trip-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #E07A5F;
}

.h-trip-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: #999;
}

/* ======================================================
   FEATURES 2x3 GRID
   ====================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  max-width: 900px;
  margin: 0 auto;
}

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

.feature-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.section-bg-blue .feature-icon {
  filter: brightness(1.2);
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-bg-blue .feature-item h3 {
  color: #fff;
}

.feature-item p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.section-bg-blue .feature-item p {
  color: #b0c4d8;
}

/* ======================================================
   TESTIMONIALS — CARD CAROUSEL LOOK
   ====================================================== */
.testimonials-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  perspective: 1000px;
}

.testimonial-card {
  flex: 0 0 340px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.testimonial-card:nth-child(1) {
  transform: rotate(-2deg);
}

.testimonial-card:nth-child(2) {
  transform: translateY(-12px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.14);
}

.testimonial-card:nth-child(3) {
  transform: rotate(2deg);
}

.testimonial-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.testimonial-card .stars {
  color: #f0a500;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.88rem;
  color: #1B4965;
}

.author-info span {
  font-size: 0.78rem;
  color: #999;
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0D2137 0%, #1B4965 100%);
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #b0c4d8;
  max-width: 560px;
  margin: 0 auto 32px;
}

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

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: #0D2137;
  color: #a0b4c4;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  fill: #E07A5F;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.88rem;
  color: #8fa8bc;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: #E07A5F;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact-info svg {
  width: 18px;
  height: 18px;
  fill: #E07A5F;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

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

.footer-social a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(224, 122, 95, 0.2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #8fa8bc;
}

/* ======================================================
   CHARTERS PAGE — STICKY SECTION HEADERS
   ====================================================== */
.charters-page-header {
  background: linear-gradient(135deg, #0D2137, #1B4965);
  color: #fff;
  text-align: center;
  padding: 130px 24px 70px;
}

.charters-page-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.charters-page-header p {
  font-size: 1.1rem;
  color: #b0c4d8;
  max-width: 550px;
  margin: 0 auto;
}

.charter-type-section {
  padding: 80px 0;
}

.charter-type-section:nth-child(even) {
  background: #F7F3EE;
}

.sticky-type-header {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: #1B4965;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(27, 73, 101, 0.3);
}

.sticky-type-header .type-icon {
  font-size: 1.5rem;
}

.sticky-type-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.sticky-type-header p {
  font-size: 0.88rem;
  color: #b0c4d8;
  margin-left: auto;
}

/* Detailed horizontal charter cards */
.charter-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.charter-h-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.charter-h-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
}

.charter-type-section:nth-child(even) .charter-h-card {
  background: #fff;
}

.charter-h-img {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
}

.charter-h-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
}

.charter-h-img .ph-label {
  position: relative;
  z-index: 1;
}

.charter-h-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.charter-h-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 10px;
}

.charter-h-body > p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}

.charter-inclusions {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.charter-inclusions li {
  font-size: 0.84rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.charter-inclusions li::before {
  content: "\2713";
  color: #2aa8a0;
  font-weight: 700;
  font-size: 0.8rem;
}

.charter-h-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E07A5F, #c9664b);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
}

.price-badge small {
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.85;
}

.charter-meta-tag {
  font-size: 0.84rem;
  color: #888;
}

/* Gear Rentals on charters page */
.rentals-section {
  padding: 96px 0;
  background: #fff;
}

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

.rental-card {
  background: #F7F3EE;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.rental-card:hover {
  transform: translateY(-4px);
}

.rental-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.rental-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 8px;
}

.rental-card p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.rental-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #E07A5F;
}

.rental-price small {
  font-weight: 500;
  font-size: 0.8rem;
  color: #999;
}

/* What to bring — icon chips/pills */
.bring-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.bring-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 12px 24px 12px 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bring-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bring-pill .pill-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bring-pill .pill-text strong {
  display: block;
  font-size: 0.88rem;
  color: #1B4965;
}

.bring-pill .pill-text span {
  font-size: 0.78rem;
  color: #888;
}

/* ======================================================
   ABOUT PAGE — SPLIT SCREEN
   ====================================================== */
.about-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
}

.about-stats-panel {
  background: linear-gradient(180deg, #1B4965 0%, #0D2137 100%);
  color: #fff;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
}

.about-stats-panel .badge {
  background: rgba(224, 122, 95, 0.2);
}

.about-stats-panel h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
}

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

.stat-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.stat-block .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #E07A5F;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-block .stat-label {
  font-size: 0.78rem;
  color: #8fa8bc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-story-scroll {
  padding: 80px 60px;
  overflow-y: auto;
}

.about-story-scroll h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 20px;
}

.about-story-scroll p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 640px;
}

.about-story-scroll .signature {
  font-weight: 600;
  color: #1B4965;
  font-style: italic;
  margin-top: 12px;
}

/* Fleet grid cards with boat silhouettes */
.fleet-section {
  padding: 96px 0;
  background: #F7F3EE;
}

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

.fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.fleet-card:hover {
  transform: translateY(-4px);
}

.fleet-silhouette {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fleet-silhouette svg {
  width: 120px;
  height: 60px;
  opacity: 0.3;
}

.fleet-silhouette .ph-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.fleet-specs {
  padding: 24px;
}

.fleet-specs h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 6px;
}

.fleet-specs p {
  font-size: 0.88rem;
  color: #666;
}

/* Team — minimal rows */
.team-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.team-row {
  display: grid;
  grid-template-columns: 60px 180px 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}

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

.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.team-row .team-name {
  font-weight: 700;
  color: #1B4965;
  font-size: 0.95rem;
}

.team-row .team-role {
  font-size: 0.82rem;
  color: #E07A5F;
  font-weight: 500;
}

.team-row .team-oneliner {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-hero {
  background: linear-gradient(135deg, #1B4965, #0D2137);
  color: #fff;
  text-align: center;
  padding: 130px 24px 80px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-hero .giant-phone {
  font-size: 3rem;
  font-weight: 800;
  color: #E07A5F;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-hero .giant-phone a {
  color: #E07A5F;
}

.contact-hero .giant-phone a:hover {
  color: #f09880;
}

.contact-hero .hero-email {
  font-size: 1.15rem;
  color: #b0c4d8;
}

.contact-hero .hero-email a {
  color: #b0c4d8;
}

.contact-hero .hero-email a:hover {
  color: #E07A5F;
}

/* 3-column contact layout */
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  padding: 80px 0;
}

.contact-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E07A5F;
  display: inline-block;
}

/* Hours column */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

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

.hours-row .day {
  font-weight: 600;
  color: #333;
  font-size: 0.92rem;
}

.hours-row .time {
  color: #666;
  font-size: 0.92rem;
}

.hours-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 16px;
  line-height: 1.6;
}

/* Contact form */
.contact-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E07A5F;
  display: inline-block;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B4965;
  box-shadow: 0 0 0 3px rgba(27, 73, 101, 0.1);
  background: #fff;
}

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

.form-submit-note {
  font-size: 0.78rem;
  color: #999;
  margin-top: 12px;
  text-align: center;
}

/* Location column */
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.location-detail svg {
  width: 20px;
  height: 20px;
  fill: #E07A5F;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 0.92rem;
  color: #1B4965;
  margin-bottom: 2px;
}

.location-detail span,
.location-detail a {
  font-size: 0.88rem;
  color: #666;
}

.location-detail a:hover {
  color: #E07A5F;
}

/* ======================================================
   PAGE HEADER (generic)
   ====================================================== */
.page-header {
  background: linear-gradient(135deg, #0D2137, #1B4965);
  color: #fff;
  text-align: center;
  padding: 130px 24px 70px;
}

.page-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: #b0c4d8;
  max-width: 550px;
  margin: 0 auto;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-stats-panel {
    position: relative;
    top: auto;
    height: auto;
    padding: 60px 32px;
  }

  .about-story-scroll {
    padding: 60px 32px;
  }

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

  .contact-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .charter-h-card {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

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

  .nav-book {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-book .btn {
    width: 100%;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 24px 100px;
  }

  .hero-inner h1 {
    font-size: 2.25rem;
  }

  .quick-book-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -40px;
  }

  /* Horizontal trips */
  .h-trip-card {
    grid-template-columns: 1fr;
  }

  .h-trip-img {
    min-height: 200px;
  }

  .h-trip-body {
    padding: 24px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Testimonials */
  .testimonials-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .testimonial-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    transform: none;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  /* Charters */
  .charter-h-card {
    grid-template-columns: 1fr;
  }

  .charter-h-img {
    min-height: 180px;
  }

  .charter-h-body {
    padding: 24px;
  }

  .sticky-type-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sticky-type-header p {
    margin-left: 0;
  }

  /* Rentals */
  .rentals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Team */
  .team-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .team-row .team-oneliner {
    grid-column: 1 / -1;
  }

  /* Contact hero */
  .contact-hero .giant-phone {
    font-size: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Page headers */
  .charters-page-header h1,
  .page-header h1 {
    font-size: 2rem;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stat-overlay-grid {
    grid-template-columns: 1fr;
  }

  .bring-pills {
    flex-direction: column;
    align-items: stretch;
  }
}
