/* ============================================
   Marine Plaisance Service — Premium Nautical Website
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #0a2342;
  --navy-light: #122d4f;
  --navy-dark: #061729;
  --white: #ffffff;
  --accent: #e8e0d0;
  --accent-light: #f5f0e8;
  --accent-dark: #c8bfb0;
  --grey-light: #f5f7fa;
  --grey: #e2e6ec;
  --grey-medium: #8a94a6;
  --grey-dark: #4a5568;
  --text: #1a202c;
  --text-light: #718096;
  --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 35, 66, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 35, 66, 0.16);
  --shadow-xl: 0 16px 48px rgba(10, 35, 66, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes wave {
  0% { transform: translateX(0) translateZ(0) scaleY(1); }
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.55); }
  100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 35, 66, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 197, 169, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 35, 66, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4c5a9, #c8bfb0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
  box-shadow: 0 2px 12px rgba(212, 197, 169, 0.2);
}

.logo-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.nav-highlight {
  color: #d4c5a9;
  background: transparent;
  border: 2px solid #d4c5a9;
  font-weight: 600;
  padding: 8px 20px;
}

.nav-links a.nav-highlight:hover {
  background: rgba(212, 197, 169, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 197, 169, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Nav --- */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 16px;
    padding: 14px 16px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold-outline {
  background: transparent;
  color: #d4c5a9;
  border: 2px solid #d4c5a9;
}

.btn-gold-outline:hover {
  background: rgba(212, 197, 169, 0.15);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 197, 169, 0.2);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero background with real photo */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10,35,66,0.65), rgba(10,35,66,0.65)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&q=80&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
}

/* Overlay for text readability */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 35, 66, 0.85) 0%,
    rgba(10, 35, 66, 0.5) 40%,
    rgba(10, 35, 66, 0.3) 70%,
    rgba(10, 35, 66, 0.6) 100%
  );
}

/* Sun/horizon glow */
.hero-sun {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 197, 169, 0.3) 0%, rgba(212, 197, 169, 0.05) 50%, transparent 70%);
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

/* Boat silhouette */
.hero-boat {
  position: absolute;
  bottom: 18%;
  right: 8%;
  z-index: 2;
  opacity: 0.15;
}

.hero-boat svg {
  width: 400px;
  height: auto;
}

/* Wave decoration */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 197, 169, 0.15);
  border: 1px solid rgba(212, 197, 169, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .gold {
  color: var(--accent);
}

.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* --- Section Styles --- */
.section {
  padding: 100px 0;
}

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

.section-grey {
  background: var(--grey-light);
}

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

.section-header .overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=800&q=80&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(10, 35, 66, 0.4) 0%, transparent 100%);
}

.about-image .marina-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15%;
}

.about-image .marina-illustration svg {
  width: 80%;
  height: auto;
  opacity: 0.6;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4c5a9, #c8bfb0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--grey);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4c5a9, #e8e0d0);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Dark variant service card */
.section-dark .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 197, 169, 0.3);
}

.section-dark .service-card h3 {
  color: var(--white);
}

.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark .service-icon {
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .service-card:hover .service-icon {
  background: linear-gradient(135deg, #d4c5a9, #c8bfb0);
  color: var(--navy-dark);
}

/* --- Boat Cards --- */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.boat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--grey);
  position: relative;
}

.boat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.boat-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.boat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.boat-image .gradient-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.boat-card:hover .gradient-placeholder {
  transform: scale(1.05);
}

.boat-image .gradient-placeholder .boat-emoji {
  font-size: 48px;
  opacity: 0.8;
}

.boat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-neuf {
  background: rgba(10, 35, 66, 0.9);
  color: #ffffff;
}

.badge-occasion {
  background: var(--navy);
  color: var(--white);
}

.badge-prestige {
  background: rgba(10, 35, 66, 0.9);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(10, 35, 66, 0.4);
}

.boat-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 16px;
  background: rgba(10, 35, 66, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  z-index: 2;
}

.boat-price span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

.boat-info {
  padding: 24px;
}

.boat-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.boat-info .boat-type {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.boat-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.boat-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--grey-dark);
}

.boat-spec .spec-icon {
  font-size: 14px;
  color: var(--accent);
}

.boat-actions {
  display: flex;
  gap: 12px;
}

.boat-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid var(--grey);
  background: var(--white);
  color: var(--grey-dark);
  transition: var(--transition);
}

.filter-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

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

/* --- Testimonials --- */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 360px;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--grey-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: middle;
  margin-right: 4px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--grey);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  color: var(--navy);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-nav button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3158 50%, #0f4070 100%);
}

.cta-banner .cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212, 197, 169, 0.15) 0%, transparent 50%);
}

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

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .gold-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* --- Location Prestige Page Styles --- */
.prestige-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.prestige-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(5,20,45,0.75), rgba(5,20,45,0.75)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&q=80&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
}

.prestige-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(212, 197, 169, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 197, 169, 0.05) 0%, transparent 40%);
}

.prestige-hero .gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4c5a9, transparent);
}

.prestige-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.prestige-hero h1 {
  text-align: center;
}

.prestige-hero .subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.prestige-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(212, 197, 169, 0.1);
  border: 1px solid rgba(212, 197, 169, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Prestige Boat Cards */
.prestige-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.prestige-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--grey);
  position: relative;
}

.prestige-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10, 35, 66, 0.2);
  border-color: #d4c5a9;
}

.prestige-card .boat-image {
  aspect-ratio: 16/9;
}

.prestige-card .boat-info {
  padding: 28px;
}

.prestige-card .boat-info h3 {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.prestige-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 16px;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
}

.prestige-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-dark);
}

.prestige-spec .spec-icon {
  color: var(--accent);
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.prestige-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.prestige-pricing .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.prestige-pricing .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.prestige-rating {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

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

/* --- Advantages Grid --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 197, 169, 0.3);
  transform: translateY(-5px);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 197, 169, 0.15), rgba(212, 197, 169, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.advantage-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Click & Boat Banner --- */
.clickandboat-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  overflow: hidden;
}

.clickandboat-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(212, 197, 169, 0.03) 0px, rgba(212, 197, 169, 0.03) 1px, transparent 1px, transparent 100px),
    repeating-linear-gradient(0deg, rgba(212, 197, 169, 0.03) 0px, rgba(212, 197, 169, 0.03) 1px, transparent 1px, transparent 100px);
}

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

.clickandboat-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.clickandboat-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.clickandboat-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.clickandboat-feature .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 197, 169, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font);
  border: 2px solid var(--grey);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

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

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

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info-card .subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 197, 169, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .detail-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-detail .detail-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.map-placeholder {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d3158, #1a5c9e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.map-placeholder:hover {
  opacity: 0.9;
}

.map-placeholder .map-pin {
  font-size: 32px;
  margin-bottom: 8px;
}

.map-placeholder .map-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10,35,66,0.8), rgba(10,35,66,0.8)), url('https://images.unsplash.com/photo-1534956716799-4a2cda0ff44c?w=1920&q=80&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(212, 197, 169, 0.1) 0%, transparent 50%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.page-hero .breadcrumb a {
  color: var(--accent);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent-light);
}

/* --- Services Page Detail --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--grey);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-icon {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.service-detail-content .overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-detail-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-detail-content ul li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--grey-dark);
  font-size: 0.95rem;
}

.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text-footer {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-brand .logo-text-footer span {
  color: var(--accent);
}

.footer-brand .tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: #d4c5a9;
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-col .contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-col .contact-item .icon {
  color: var(--accent);
  font-size: 14px;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* --- Salon Banner --- */
.salon-banner {
  background: linear-gradient(135deg, rgba(212, 197, 169, 0.1), rgba(212, 197, 169, 0.05));
  border: 1px solid rgba(212, 197, 169, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.salon-banner .salon-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.salon-banner h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.salon-banner p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hero-content { padding: 40px 0; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

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

  .testimonial-card { min-width: 300px; }

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

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

  .about-features { grid-template-columns: 1fr; }

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

  .salon-banner { flex-direction: column; text-align: center; }

  .clickandboat-features { flex-direction: column; align-items: center; }

  .prestige-hero { min-height: 60vh; }

  .page-hero { padding: 120px 0 60px; }

  .service-detail-icon { font-size: 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 4px; }
  .filter-tab { padding: 10px 16px; font-size: 13px; }
  .prestige-specs { grid-template-columns: 1fr; }
}

/* --- Utility --- */
.text-gold, .text-accent { color: var(--accent); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-4 { margin-bottom: 32px; }
