*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #091D4C;
  --navy-dark: #111e30;
  --teal: #7EDFE6;
  --teal-light: #5dd6d0;
  --teal-pale: #e6f9f8;
  --gold: #f5a623;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --gray: #6b7c93;
  --text: #254387;
  --border: #dde4ed;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  box-shadow: 0 2px 16px rgba(26,46,74,.07);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(26,46,74,.13); }

.logo { text-decoration: none; display: flex; align-items: center; }
.logo svg { display: block; height: 44px; width: auto; }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: "neulis-neue", sans-serif;
 font-weight: 600;
 font-style: normal;;
  letter-spacing: .2px;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-phone {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 11px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  letter-spacing: .2px;
  white-space: nowrap;
}
.btn-phone:hover {
  background: var(--teal-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(45,191,184,.38) !important;
}
.btn-phone::after { display: none !important; }
.btn-phone svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--gray-light); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 28px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 28px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 28px; }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  z-index: 199;
  padding: 0;
  box-shadow: 0 12px 40px rgba(26,46,74,.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
}
.mobile-menu.open {
  max-height: 600px;
  padding: 12px 0 24px;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s, background .2s;
  border-left: 3px solid transparent;
}
.mobile-menu ul li a:hover {
  color: var(--teal);
  background: var(--teal-pale);
  border-left-color: var(--teal);
}
.mobile-menu .mobile-phone {
  margin: 16px 28px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  justify-content: center;
  transition: background .2s;
}
.mobile-menu .mobile-phone:hover { background: var(--teal-light); }
.mobile-menu .mobile-phone svg { width: 16px; height: 16px; fill: white; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .3px;
  font-family: "neulis-neue", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,191,184,.35);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO ── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--white);
  overflow: hidden;
}
.hero-content {
  padding: 72px 60px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.bagde-hero {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  font-family: "neulis-neue", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -1.5px;
  margin: 0;
}

h2 {
  font-family: "neulis-neue", sans-serif;
 font-weight: 600;
 font-style: normal;;
}
.hero-content p {
  font-size: 16px;
  color: #254387;
  max-width: 700px;
  line-height: 1.75;
  margin: 0;
}
.hero-content p strong { color: var(--navy); font-weight: 700; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  width: fit-content;
  margin: 0;
}
.hero-badge::before { content: '⭐'; font-size: 16px; }
.hero-actions { margin: 4px 0 0; }

/* Hero image side */
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.hero-image:hover img { transform: scale(1.08); }

.wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
/* ── WHY SECTION ── */
#why {
  background: var(--navy);
}

#why .wrap {
  padding: 72px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

#why .why-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.why-title-underline {
  width: 40px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 28px;
}
#why .why-text p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.8;
}
#why .why-text p + p { margin-top: 20px; }
#why .why-text p strong { color: var(--white); font-weight: 700; }

/* Right side: icon features */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Top row: 2 icons side by side */
.why-features-row {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  justify-content: center;
  text-align: center;
}

.why-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
}

.why-icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.why-icon-circle.yellow { background: #f5e07a; }
.why-icon-circle.pink   { background: #f4a7b9; }
.why-icon-circle.green  { background: #6ecf85; }
.why-icon-item p {
  color: rgba(255,255,255,.9) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.why-icon-item p strong { color: var(--white) !important; font-weight: 700 !important; }

/* ── BOATS ── */
#boats {
  padding: 80px 80px;
  background: var(--white);
}
#boats h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.boats-title-underline {
  width: 40px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 28px;
}
#boats .section-sub {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}
#boats .section-sub strong { color: var(--navy); font-weight: 700; }

.boat-card {
  background: #FFFAE1;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 36px;
  border: none;
}
.boat-card img {
  width: 180px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(26,46,74,.15));
}
.boat-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.boat-info p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.boat-info p strong { color: var(--navy); font-weight: 700; }

/* ── PRICING ── */
#pricing {
  background: #0e1e3d;
  padding: 80px 60px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.pricing-title-underline {
  width: 40px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 44px;
  max-width: 680px;
  margin: 0 auto 36px;
}
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.pricing-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.price-row.highlighted { background: #fdf9e8; }
.price-row .amount {
  font-weight: 800;
  color: var(--navy);
  font-size: 16px;
  white-space: nowrap;
  margin-left: 16px;
  flex-shrink: 0;
}

.pricing-notes {
  max-width: 700px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}
.pricing-notes p + p { margin-top: 0; }
.pricing-notes .pricing-note-gap { margin-top: 16px; display: block; }

.pricing-cta { text-align: center; }

/* ── FAQ ── */
#faq {
  padding: 80px 60px;
  background: var(--white);
}
.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.faq-title-underline {
  width: 40px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0 auto;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #dde4ed;
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid #dde4ed; }

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  transition: all 0.4s;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "neulis-neue", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: var(--navy);
  text-align: left;
  gap: 20px;
}
.faq-toggle:hover { color: var(--teal); }
.footer-contact-row {transition: all 0.3s;}
.faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, transform .35s cubic-bezier(.4,0,.2,1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 56px 24px 0;
  font-size: 16px;
  color: #254387;
  line-height: 1.75;
}

/* ── CTA BANNER ── */
#cta {
  background: #091D4C;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
#cta .underline {
  width: 40px; height: 3px;
  background: var(--teal);
  margin: 0 auto 32px;
  border-radius: 3px;
  position: relative;
}
#cta p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
}
#cta p strong { color: var(--white); font-weight: 700; }
.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #1a3468;
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  padding: 22px 56px;
  font-family: "neulis-neue", sans-serif;
  font-weight: 600;
  font-style: normal;

  border-radius: 16px;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  letter-spacing: .3px;
}
.btn-cta-phone:hover {
  background: #243f7a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.btn-cta-phone svg {
  width: 26px; height: 26px;
  fill: var(--teal);
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  padding: 56px 80px 24px;
  border-top: 3px solid var(--teal);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  align-items: start;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.footer-col-underline {
  width: 28px; height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  text-decoration: none;
  font-size: 14px;
  color: var(--navy);
  transition: color .2s;
  font-weight: 400;
}
.footer-col ul a:hover { color: var(--teal); }

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
}
.footer-contact-row:hover { color: var(--teal); }
.footer-contact-icon {
  width: 20px; height: 20px;
  fill: var(--teal);
  flex-shrink: 0;
}

.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hours-row {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--navy);
}
.footer-hours-row strong { font-weight: 600; min-width: 60px; }

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0 8px;
}

/* ── SECTION TITLE STYLE ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 300px; order: -1; }
  .hero-content { padding: 44px 20px 52px; }
  .hero-content h1 { font-size: 38px; letter-spacing: -1px; }
  #why .wrap { grid-template-columns: 1fr; padding: 52px 20px; gap: 40px; }
  .why-features-row { grid-template-columns: 1fr 1fr; }
  #boats, #pricing, #faq, #cta { padding: 52px 28px; }
  .boat-card { flex-direction: column; padding: 28px; }
  .boat-card img { width: 140px; height: 80px; }
  footer { padding: 44px 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .why-features-row { flex-direction: column;}
  .boat-card { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 20px;
    max-width: 680px;
    margin: 0 auto 36px;
}

}
