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

:root {
  --navy:        #0b1f3a;
  --navy-deep:   #071529;
  --navy-mid:    #122848;
  --navy-light:  #1a3a60;
  --navy-pale:   #e8eef5;
  --white:       #ffffff;
  --snow:        #f8f9fb;
  --gold:        #b8965a;
  --gold-light:  #d4b07a;
  --silver:      #8099b4;
  --text-dark:   #1a2e45;
  --text-mid:    #4a6280;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--snow); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: all 0.45s ease;
}
header.scrolled {
  background: var(--white);
  padding: 13px 60px;
  box-shadow: 0 2px 30px rgba(11,31,58,0.10);
}
header.hero-top { background: transparent; }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.logo-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.3s;
}
header.scrolled .logo-img { border-color: var(--navy-pale); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  transition: color 0.3s;
}
header.scrolled .logo-name { color: var(--navy); }
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
header.scrolled .logo-sub { color: var(--gold); }

nav { display: flex; align-items: center; gap: 34px; }
nav a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
header.scrolled nav a { color: var(--text-mid); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
nav a:hover::after { width: 100%; }
nav a:hover { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  letter-spacing: 0.18em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
header.scrolled .burger span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--navy) !important; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--navy) !important; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-line {
  width: 40px; height: 1px;
  background: var(--navy-pale);
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(7,21,41,0.65) 0%, rgba(11,31,58,0.45) 50%, rgba(7,21,41,0.72) 100%),
    url('img/banner.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: herozoom 22s ease-in-out infinite alternate;
}
@keyframes herozoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  animation: riseUp 1.2s cubic-bezier(0.22,0.61,0.36,1) both;
}
@keyframes riseUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-badge-line {
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.hero-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 8.5vw, 7.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em;
  max-width: 520px;
  margin: 0 auto 50px;
}
.hero-cta-group { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  padding: 17px 44px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(184,150,90,0.4);
}
.btn-secondary {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  padding: 16px 40px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 2s 1s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheelscroll 1.8s ease-in-out infinite;
}
@keyframes wheelscroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
}

/* SHARED */
section { padding: 110px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.title-line {
  width: 52px; height: 2px;
  background: var(--gold);
  margin: 28px 0;
  opacity: 0.6;
}

/* ABOUT */
#about { background: var(--snow); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-img-overlay {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 20px 60px rgba(11,31,58,0.15);
}
.about-badge {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(11,31,58,0.2);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.about-text p {
  font-size: 0.84rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.feat-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FLEET */
#fleet {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#fleet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
#fleet .section-title { color: var(--white); }
#fleet .eyebrow { color: var(--gold-light); }
#fleet .eyebrow::before { background: var(--gold-light); }

.fleet-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.fleet-card-left {
  width: 100%;
}
.fleet-card-left .fleet-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fleet-card-left .fleet-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.7);
}
.fleet-card-left .fleet-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.85);
}
.fleet-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 26px 26px;
  background: linear-gradient(to top, rgba(7,21,41,0.9) 0%, transparent 100%);
  transition: padding 0.3s;
}
.fleet-card-left .fleet-card:hover .fleet-info { padding-bottom: 32px; }
.fleet-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}
.fleet-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-main {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.thumb {
  width: calc(33.333% - 14px);
  min-width: 90px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.thumb:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* STATS */
.stats-banner {
  background: var(--gold);
  padding: 52px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

/* BOOKING */
#booking { background: var(--white); }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 80px;
  align-items: start;
}
.booking-info p {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 38px;
}
.booking-features { margin-bottom: 42px; }
.bfeat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--navy-pale);
}
.bfeat:last-child { border: none; }
.bfeat-icon {
  width: 46px; height: 46px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.bfeat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 4px;
}
.bfeat-desc {
  font-size: 0.74rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.discount-note {
  background: rgba(184, 150, 90, 0.12);
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  margin-bottom: 28px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-card {
  background: var(--snow);
  border: 1px solid var(--navy-pale);
  padding: 50px 46px;
  box-shadow: 0 20px 70px rgba(11,31,58,0.07);
}
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-card-sub {
  font-size: 0.72rem;
  color: var(--silver);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--navy-pale);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--navy-pale);
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver); }
.form-group textarea { resize: vertical; min-height: 88px; }

.dur-label-row {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.dur-card {
  border: 1.5px solid var(--navy-pale);
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  background: var(--white);
  border-radius: 2px;
  position: relative;
}
.dur-card:hover {
  border-color: var(--navy-light);
  background: var(--navy-pale);
}
.dur-card.selected {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(11,31,58,0.15);
}
.dur-card.selected .dur-hrs { color: var(--white); }
.dur-card.selected .dur-unit { color: rgba(255,255,255,0.6); }
.dur-card.selected .dur-price { color: var(--gold-light); }
.dur-hrs {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.dur-unit {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: 10px;
}
.dur-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.checkmark {
  position: absolute;
  top: 7px; right: 8px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.55rem;
}
.dur-card.selected .checkmark { display: flex; }

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy);
  padding: 22px 26px;
  margin-bottom: 24px;
}
.price-box-left .p-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.price-box-left .p-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.35s;
}
.price-dash { color: rgba(255,255,255,0.25); }

.btn-reserve {
  width: 100%;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.btn-reserve:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 35px rgba(11,31,58,0.2);
}

.err { color: #c0392b; font-size: 0.64rem; margin-top: 5px; display: none; }
.field-error input,
.field-error select,
.field-error textarea { border-color: #e74c3c !important; }
.field-error .err { display: block; }
.dur-error { color: #c0392b; font-size: 0.64rem; margin-bottom: 14px; display: none; }

.confirm-box {
  display: none;
  text-align: center;
  padding: 64px 24px;
}
.confirm-box.show { display: block; }
.confirm-ring {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: var(--gold);
  animation: ringpop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes ringpop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.confirm-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.confirm-box p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* CONTACT */
#contact { background: var(--snow); }
.contact-top {
  text-align: center;
  margin-bottom: 64px;
}
.contact-top .section-title { margin: 0 auto; }
.contact-top p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--navy-pale);
  padding: 46px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.contact-card:hover { box-shadow: 0 12px 48px rgba(11,31,58,0.09); transform: translateY(-3px); }
.contact-card:hover::before { transform: scaleX(1); }
.c-icon {
  width: 56px; height: 56px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 22px;
  transition: background 0.3s;
}
.contact-card:hover .c-icon { background: var(--navy); }
.c-type {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.c-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.5;
}
.c-val a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
.c-val a:hover { color: var(--gold); }

/* FOOTER */
footer {
  background: var(--navy-deep);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.85;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-copy {
  font-size: 0.62rem;
  color: var(--silver);
  letter-spacing: 0.1em;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* REVEAL ANIMATIONS (keep for visual, but no JS to trigger) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap { display: none; }
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .booking-info { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-showcase { grid-template-columns: 1fr; gap: 40px; }
  .gallery-thumbs { justify-content: center; }
  .thumb { width: 110px; }
}
@media (max-width: 768px) {
  header { padding: 16px 24px; }
  header.scrolled { padding: 12px 24px; }
  nav { display: none; }
  .burger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .duration-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 36px 24px; flex-direction: column; gap: 18px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .thumb { width: 90px; }
}
@media (max-width: 480px) {
  .duration-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.8rem; }
}

/* Mini description below the fleet card */
.fleet-mini-desc {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--silver);
  letter-spacing: 0.02em;
}

.fleet-mini-desc p {
  margin: 0;
}

/* Responsive adjustment */
@media (max-width: 1024px) {
  .fleet-mini-desc {
    margin-bottom: 20px;
  }
}