/* Book A Boat — Premium Luxury Styles */
/* Color palette: Deep Navy, Platinum, Gold, White */

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

:root {
  --navy: #0A1628;
  --navy-deep: #060D18;
  --navy-light: #152238;
  --ocean: #1E4976;
  --ocean-light: #2A6099;
  --platinum: #E8E6E1;
  --platinum-dark: #D4D2CC;
  --gold: #B8956E;
  --gold-bright: #D4AF6A;
  --gold-dark: #8B6F4E;
  --gold-muted: #9A8B7A;
  --sand: #FAF9F7;
  --sand-dark: #F0EEEA;
  --white: #FFFFFF;
  --text: #1A2332;
  --text-light: #4A5568;
  --text-lighter: #718096;
  --text-muted: #94A3B8;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.16);
  --shadow-xl: 0 24px 64px rgba(10,22,40,0.20);
  --radius: 2px;
  --radius-sm: 4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-weight: 300; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(10,22,40,0.06);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav.scrolled .nav-logo {
  color: var(--navy);
}

.nav-logo svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav.scrolled .nav-links a {
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold-bright) !important;
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

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

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,0.65) 0%,
    rgba(10,22,40,0.35) 35%,
    rgba(10,22,40,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,149,110,0.12);
  border: 1px solid rgba(184,149,110,0.25);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 300;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.25);
  animation: float 4s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 12px 32px rgba(184,149,110,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 12px;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 11px;
}

/* === SECTION STYLES === */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
}

.section-sand {
  background: var(--sand);
}

.section-navy {
  background: var(--navy);
}

.section-navy .section-title,
.section-navy .section-label {
  color: var(--white);
}

.section-navy .section-subtitle {
  color: rgba(255,255,255,0.6);
}

/* === DESTINATIONS === */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  group: true;
  background: var(--navy);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  opacity: 0.85;
}

.destination-card:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(0deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.2) 50%, transparent 100%);
}

.destination-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 8px;
}

.destination-count {
  color: var(--gold-muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.destination-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.destination-card:hover .destination-link {
  opacity: 1;
  transform: translateY(0);
}

/* === BOAT CARDS === */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.boat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}

.boat-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,22,40,0.1);
}

.boat-card-image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.boat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.boat-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.boat-card-location {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10,22,40,0.85);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.boat-card-body {
  padding: 28px;
}

.boat-card-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ocean);
  margin-bottom: 8px;
}

.boat-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.boat-card-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.boat-card-specs {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--platinum-dark);
}

.boat-card-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-lighter);
  letter-spacing: 0.02em;
}

.boat-card-spec svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

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

.boat-card-price {
  display: flex;
  flex-direction: column;
}

.boat-card-price .amount {
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.boat-card-price .period {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 2px;
}

.boat-card-cta {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.boat-card-cta:hover {
  background: var(--ocean);
}

.boat-card-cta svg {
  width: 14px;
  height: 14px;
}

/* === FILTERS === */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-btn:hover {
  border-color: var(--gold-muted);
  color: var(--text);
}

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

/* === DETAIL PAGE === */
.detail-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.2) 50%);
  display: flex;
  align-items: flex-end;
  padding: 64px 0;
}

.detail-breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.detail-breadcrumb a:hover {
  color: var(--gold);
}

.detail-hero-title {
  font-size: clamp(40px, 5vw, 58px);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 12px;
}

.detail-hero-meta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.detail-hero-meta span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.detail-hero-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  padding: 72px 0;
}

.detail-main h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
}

.detail-main p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 16px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.spec-card {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(10,22,40,0.04);
}

.spec-card-value {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.spec-card-label {
  font-size: 11px;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.feature-tag {
  background: var(--white);
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(10,22,40,0.06);
}

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

/* Gallery */
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}

.detail-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.85;
}

.detail-gallery img:hover {
  opacity: 1;
}

/* === BOOKING SIDEBAR === */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-sm);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.booking-price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--platinum-dark);
}

.booking-price-display .amount {
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.booking-price-display .period {
  font-size: 14px;
  color: var(--text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(30,73,118,0.08);
}

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

.booking-summary {
  padding: 24px 0;
  border-top: 1px solid var(--platinum-dark);
  margin-top: 8px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--platinum-dark);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}

.booking-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-submit:hover {
  background: var(--gold-bright);
  box-shadow: 0 12px 28px rgba(184,149,110,0.3);
}

.booking-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* === WHY SECTION === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(10,22,40,0.04);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.why-title {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 400;
}

.why-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 120px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(36px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 300;
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand svg {
  width: 16px;
  height: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.45);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a:hover svg {
  color: var(--navy);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.5);
}

/* === CONFIRMATION PAGE === */
.confirmation {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
}

.confirmation-card {
  max-width: 600px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #48BB78, #38A169);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.confirmation h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.confirmation p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.confirmation-details {
  text-align: left;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.confirmation-details dt {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 4px;
  margin-top: 16px;
}

.confirmation-details dt:first-child {
  margin-top: 0;
}

.confirmation-details dd {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

/* === LOCATION PAGE === */
.location-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,29,58,0.7) 0%, rgba(11,29,58,0.4) 100%);
}

.location-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.location-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 12px;
}

.location-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
  .detail-content {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

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

  .nav-links a {
    color: var(--white) !important;
    font-size: 20px;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
  }

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

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 60px 0;
  }

  .detail-hero {
    height: 40vh;
  }

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

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

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

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

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

  .destination-name {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .booking-card {
    padding: 24px;
  }

  .boat-card-body {
    padding: 20px;
  }

  .boat-card-specs {
    gap: 12px;
  }
}

/* === UTILITY === */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-ocean { color: var(--ocean); }
.bg-sand { background: var(--sand); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(11,29,58,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
