/* ===================================================
   SEA STAR TOUR – Main Stylesheet
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --blue-dark:   #0a2540;
  --blue-mid:    #0e5fa8;
  --blue-bright: #1a9fe0;
  --teal:        #00c9b1;
  --gold:        #f0a500;
  --white:       #ffffff;
  --off-white:   #f4f8fc;
  --text:        #1a2b3c;
  --text-muted:  #5a7080;
  --border:      #d8e8f0;

  --font-body:   'Montserrat', sans-serif;
  --font-head:   'Playfair Display', serif;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 30px rgba(10,37,64,.12);
  --shadow-lg:   0 20px 60px rgba(10,37,64,.18);

  --transition:  .3s ease;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
}
.section-label--light { color: var(--teal); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-title em { font-style: italic; color: var(--blue-bright); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-desc {
  color: var(--text-muted);
  font-size: .97rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26,159,224,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,159,224,.45);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,37,64,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-logo i { color: var(--teal); font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal); }

.btn-nav {
  background: linear-gradient(135deg, var(--blue-mid), var(--teal)) !important;
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,201,177,.3);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,177,.4) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: url('https://images.unsplash.com/photo-1599571234909-29ed5d1321d6?w=1600&q=85') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,37,64,.75) 0%,
    rgba(10,37,64,.45) 60%,
    rgba(0,100,160,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp .9s ease both;
}
.hero-tagline {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: #7ee8fa;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 1.2s ease .6s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- HIGHLIGHTS STRIP ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue-dark);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,.04); }
.highlight-item i {
  font-size: 1.8rem;
  color: var(--teal);
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
}
.highlight-item span {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

/* ---------- DESTINATION SPLIT SHOWCASE ---------- */
.dest-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 440px;
}
.dest-panel {
  position: relative;
  overflow: hidden;
  background: var(--bg) center/cover no-repeat;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.dest-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,37,64,.85) 0%,
    rgba(10,37,64,.25) 55%,
    rgba(10,37,64,.1) 100%
  );
  transition: background .4s ease;
}
.dest-panel:hover .dest-panel-overlay {
  background: linear-gradient(
    to top,
    rgba(10,37,64,.92) 0%,
    rgba(10,37,64,.45) 55%,
    rgba(10,37,64,.2) 100%
  );
}
.dest-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.dest-panel:hover img { transform: scale(1.07); }
.dest-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  color: var(--white);
  transform: translateY(12px);
  transition: transform .4s ease;
}
.dest-panel:hover .dest-panel-content { transform: translateY(0); }
.dest-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.dest-panel-content h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.dest-panel-content p {
  font-size: .85rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 16px;
  line-height: 1.5;
}
.dest-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0;
  transition: opacity .35s ease .05s;
}
.dest-panel:hover .dest-arrow { opacity: 1; }

/* dividers between panels */
.dest-panel:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,.15);
  z-index: 2;
}

@media (max-width: 768px) {
  .dest-split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .dest-panel { height: 260px; }
  .dest-panel::after { display: none; }
}

/* ---------- ABOUT ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images {
  position: relative;
}
.img-card { border-radius: var(--radius-lg); overflow: hidden; }
.img-card img { height: 100%; }
.img-card--large { height: 420px; }
.img-card--small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: visible;
}
.img-card--small img { border-radius: var(--radius); height: 100%; }
.years-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: var(--shadow);
}
.years-num { font-size: 1.4rem; }
.years-text { font-size: .55rem; letter-spacing: .04em; }

.about-text { padding-right: 20px; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .97rem;
}
.about-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.about-features li i { color: var(--teal); font-size: 1rem; }

/* ---------- TOURS ---------- */
.tours { background: var(--off-white); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-img img {
  height: 100%;
  transition: transform .5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.06); }
.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.tour-body { padding: 28px; }
.tour-meta {
  display: flex;
  gap: 16px;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.tour-meta i { color: var(--blue-bright); margin-right: 4px; }
.tour-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.tour-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.tour-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.tour-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--text);
  font-weight: 500;
}
.tour-includes li i { color: var(--teal); font-size: .85rem; }

/* ---------- GROUP / PRIVATE TOUR SECTIONS ---------- */
.tour-type { background: var(--white); }
.tour-type--alt { background: var(--off-white); }

.tour-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.tour-type-grid--reversed .tour-type-img { order: 2; }
.tour-type-grid--reversed .tour-type-text { order: 1; }

.tour-type-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.tour-type-img img { height: 100%; transition: transform .6s ease; }
.tour-type-img:hover img { transform: scale(1.04); }

.tour-type-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  color: var(--white);
}
.tour-type-badge--group {
  background: linear-gradient(135deg, rgba(14,95,168,.85), rgba(0,201,177,.85));
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.tour-type-badge--private {
  background: linear-gradient(135deg, rgba(240,165,0,.9), rgba(230,100,30,.85));
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.tour-type-badge i { font-size: 1rem; }

.tour-type-text p {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 14px;
}
.tour-type-features {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-type-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.tour-type-features li i { color: var(--teal); font-size: 1rem; }

/* ---------- BOAT ---------- */
.boat {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.boat-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0d3a6e 60%, #0a5a8a 100%);
}
.boat-bg::after {
  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='%23ffffff' fill-opacity='0.03'%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");
}
.boat .container { position: relative; z-index: 2; }
.boat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.boat-text p {
  color: rgba(255,255,255,.72);
  font-size: .97rem;
  margin-bottom: 36px;
}
.boat-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.spec i { color: var(--teal); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.spec-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.spec-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.boat-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
}
.testi-author span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---------- CONTACT ---------- */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info p {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 32px;
}
.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-item i {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.info-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.info-item span {
  font-size: .85rem;
  color: var(--text-muted);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
}
.social-links--footer a { background: rgba(255,255,255,.1); }
.social-links--footer a:hover { background: var(--teal); }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(26,159,224,.15);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05050;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  font-size: .95rem;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
  box-shadow: 0 8px 28px rgba(10,37,64,.3);
}
.btn-submit:hover {
  box-shadow: 0 12px 36px rgba(10,37,64,.4);
}

.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: #eafaf6;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 18px 22px;
  animation: fadeUp .4s ease;
}
.form-success.show { display: flex; }
.form-success i { color: var(--teal); font-size: 1.8rem; flex-shrink: 0; }
.form-success strong { display: block; font-size: .9rem; color: var(--text); }
.form-success span { font-size: .82rem; color: var(--text-muted); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }

.footer h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-tours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-tours a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-tours a:hover { color: var(--teal); }

.footer-contact p {
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-contact i { color: var(--teal); width: 16px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom i { color: #e05050; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .boat-grid,
  .tour-type-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-images { order: -1; }
  .img-card--small { right: 20px; }
  .about-text { padding-right: 0; }
  .tour-type-grid--reversed .tour-type-img { order: -1; }
  .tour-type-grid--reversed .tour-type-text { order: 0; }
  .tour-type-img { height: 320px; }
  .boat-grid { text-align: center; }
  .boat-specs { justify-content: center; }
  .boat-img-wrap { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .tours-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .hero-cta { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
  .boat-specs { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .highlights { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .highlight-item:last-child { border-bottom: none; }
  .img-card--small { display: none; }
  .img-card--large { height: 300px; }
}
