/* =====================================================
   Auckland Water Taxis — Main Stylesheet
   Design: Deep Navy + Taxi Yellow + Clean White
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #1a3358;
  --yellow:       #f8e60f;
  --yellow-dark:  #d4c40a;
  --yellow-light: #fef7a3;
  --white:      #ffffff;
  --off-white:  #f0f6fa;
  --grey-light: #e2eaf2;
  --grey:       #7a90a8;
  --text:       #1e2d3d;
  --gold:       #f8e60f;

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 20px rgba(10,22,40,0.15);
  --shadow-lg:  0 8px 40px rgba(10,22,40,0.25);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

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

.section--offwhite {
  background: var(--off-white);
}

.text-center { text-align: center; }
.text-yellow   { color: var(--yellow); }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248,230,15,0.4);
}

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

.btn--yellow {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--yellow:hover {
  background: #d4c40a;
  border-color: #d4c40a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248,230,15,0.4);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.section--dark .section-label { color: var(--yellow-light); }

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 650px;
}
.section--dark .section-intro { color: var(--grey-light); }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: var(--grey-light);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--navy-light);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--yellow-light);
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--white); }

.top-bar__contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar__badge {
  background: var(--yellow);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,22,40,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10,22,40,0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header__logo img {
  height: 52px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
}
.header__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__item { position: relative; }

.nav__link {
  display: block;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--yellow);
  background: rgba(248,230,15,0.15);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-light);
  transition: all var(--transition);
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover {
  background: var(--off-white);
  color: var(--yellow);
  padding-left: 1.5rem;
}

.nav__cta {
  margin-left: 0.75rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 550px;
  max-height: 800px;
  overflow: hidden;
  background: var(--navy);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.1) 0%,
    rgba(10,22,40,0.5) 60%,
    rgba(10,22,40,0.75) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--white);
}

.hero__tagline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-light);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Slider dots */
.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero__dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy-mid);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--yellow);
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--white);
}
.stat__number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--grey-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ---------- Services Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img {
  transform: scale(1.04);
}
.service-card__img-wrap {
  overflow: hidden;
  height: 220px;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.7rem; }
.service-card__link::after { content: '→'; }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--transition), background var(--transition);
}
.why-card:hover {
  border-color: var(--yellow);
  background: rgba(248,230,15,0.15);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.why-card__title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.why-card__text {
  color: var(--grey-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- Split Sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.split--reverse { direction: rtl; }
.split.split--reverse > * { direction: ltr; }

.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split__img:hover img { transform: scale(1.03); }

.split__content { padding: 1rem 0; }

.split__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 380px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
}

.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: var(--yellow-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero__breadcrumb a { color: var(--yellow-light); }
.page-hero__breadcrumb a:hover { color: var(--white); }

.page-hero__title {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.page-hero__subtitle {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ---------- Destinations ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dest-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow-light);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.25rem;
  transition: all var(--transition);
}
.dest-tag:hover {
  background: var(--yellow);
  color: var(--white);
}

.dest-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.2rem;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover, .lightbox__next:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img-wrap {
  height: 200px;
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }

.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.blog-card__tag {
  background: rgba(248,230,15,0.2);
  color: var(--yellow-dark);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: 0.7rem; }
.blog-card__link::after { content: '→'; }

/* Blog Post */
.blog-post {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.blog-post h2 { margin: 2rem 0 1rem; color: var(--navy); }
.blog-post h3 { margin: 1.5rem 0 0.75rem; color: var(--navy); }
.blog-post p  { color: var(--text); line-height: 1.8; }
.blog-post ul, .blog-post ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.blog-post li { margin-bottom: 0.4rem; color: var(--text); }
.blog-post img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}
.blog-post .blog-cta {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 2.5rem 0;
}
.blog-post .blog-cta h3 { color: var(--white); margin-bottom: 0.75rem; }
.blog-post .blog-cta p { color: var(--grey-light); margin-bottom: 1.25rem; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.2rem;
}

.form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.form__group {
  margin-bottom: 1.25rem;
}
.form__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form__textarea { min-height: 130px; resize: vertical; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8e60f' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: var(--grey-light); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--grey-light);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo img { height: 44px; }
.footer__logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--yellow-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--grey);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--yellow);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--yellow-light); }

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  align-items: flex-start;
}
.footer__contact-item span:first-child {
  color: var(--yellow);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.footer__contact-item a { color: var(--grey); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--yellow-light); }

.footer__dest {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
}

.footer__bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--navy-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom p { font-size: 0.8rem; color: var(--grey); }
.footer__bottom a { color: var(--yellow-light); }
.footer__bottom a:hover { color: var(--white); }

/* ---------- Boats Gallery Slider ---------- */
.boats-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.boats-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.boats-slider__slide {
  min-width: 100%;
}
.boats-slider__slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.boats-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,22,40,0.7);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.boats-slider__btn:hover { background: var(--yellow); }
.boats-slider__btn--prev { left: 1rem; }
.boats-slider__btn--next { right: 1rem; }

/* ---------- Map embed ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .gallery-grid { columns: 3; }
}

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

  /* Nav */
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    gap: 0;
    padding: 2rem;
  }
  .site-nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: 0.5rem; width: 100%; }
  .nav__link { font-size: 1.1rem; color: var(--white); text-align: center; padding: 0.75rem; }
  .nav__link:hover { background: rgba(255,255,255,0.08); }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    border: none;
    box-shadow: none;
    margin-top: 0.25rem;
  }
  .nav__dropdown a { color: var(--grey-light); text-align: center; }
  .nav__cta { margin: 1.5rem 0 0; }

  /* Splits */
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.split--reverse { direction: ltr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Form */
  .form__row { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Top bar */
  .top-bar__contact { flex-wrap: wrap; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero { height: 70vh; min-height: 460px; }
  .stats-bar__inner { gap: 1.5rem; }
  .hero__btns { flex-direction: column; }
  .gallery-grid { columns: 1; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}
