:root {
  --bg: #07111f;
  --bg-soft: #0f1d31;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.12);
  --text: #e8f1fb;
  --muted: #b3c1d6;
  --primary: #38bdf8;
  --primary-2: #22d3ee;
  --accent: #f97316;
  --success: #34d399;
  --shadow: 0 20px 60px rgba(0,0,0,0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34,211,238,0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(56,189,248,0.16), transparent 28%),
    linear-gradient(180deg, #081120 0%, #0b1627 55%, #09101c 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,17,31,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #04111d;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(56,189,248,0.12);
  color: white;
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.26), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52,211,153,0.12);
  color: #b7ffe0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.page-intro h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 18px 0 16px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #03121f;
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.hero-side {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-card h3,
.section-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.info-card p,
.card p,
.copy p,
.copy li,
.page-intro p,
.contact-list li {
  color: var(--muted);
  line-height: 1.75;
}

.emergency {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(249,115,22,0.16), rgba(239,68,68,0.12));
  border: 1px solid rgba(249,115,22,0.25);
}

.emergency strong {
  display: block;
  font-size: 2rem;
  margin-top: 4px;
}

.stats {
  padding: 28px 0 10px;
}

.stats-grid,
.cards-grid,
.feature-grid,
.contact-grid,
.gallery-grid,
.don-grid,
.two-col {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat,
.card,
.feature,
.gallery-item,
.contact-card,
.don-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}

.stat-label {
  color: var(--muted);
  margin-top: 6px;
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head p { color: var(--muted); max-width: 64ch; }

.cards-grid { grid-template-columns: repeat(2, 1fr); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 1fr 1fr; }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.don-grid { grid-template-columns: 1.15fr 0.85fr; }
.two-col { grid-template-columns: 1.2fr 0.8fr; }

.card h3,
.feature h3,
.contact-card h3,
.don-card h3,
.gallery-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.kicker {
  color: var(--primary-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.page-intro {
  padding: 54px 0 12px;
}

.page-intro .panel,
.content-panel {
  padding: 32px;
}

.list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.highlight-box {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.15);
}

.contact-list,
.bank-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li,
.bank-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-list li:last-child,
.bank-list li:last-child { border-bottom: 0; }

.map-embed {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.gallery-item {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.08), rgba(7,17,31,0.9)),
    linear-gradient(135deg, rgba(56,189,248,0.22), rgba(34,211,238,0.12));
}

.footer {
  padding: 34px 0 50px;
  color: var(--muted);
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.small { font-size: 0.92rem; }

@media (max-width: 980px) {
  .hero-grid,
  .stats-grid,
  .cards-grid,
  .feature-grid,
  .contact-grid,
  .gallery-grid,
  .don-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .footer-box,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-intro {
    padding-top: 34px;
  }

  .hero-copy,
  .hero-side,
  .page-intro .panel,
  .content-panel,
  .stat,
  .card,
  .feature,
  .gallery-item,
  .contact-card,
  .don-card {
    padding: 22px;
  }

  .container {
    width: min(var(--max), calc(100% - 20px));
  }
}

.logo-section{width:50px;height:50px;border-radius:12px}
.logo-sisl{width:120px;margin-left:20px}


.page-intro-boat {
  padding-top: 54px;
}

.boat-hero-panel {
  padding: 0;
  overflow: hidden;
}

.boat-hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.boat-hero-copy {
  padding: 30px 32px 34px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.18);
  color: #d9fbff;
  font-size: 0.88rem;
  font-weight: 700;
}

.spec-list {
  display: grid;
  gap: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spec-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec-row strong {
  color: var(--text);
}

.spec-row span {
  color: var(--muted);
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.highlight-box-wide {
  padding: 26px 28px;
}

.highlight-box-wide strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.highlight-box-wide p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .boat-hero-media img {
    height: 260px;
  }

  .boat-hero-copy {
    padding: 22px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* Burger menu mobile */
.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-links {
  transition: all .25s ease;
}

@media (max-width: 820px) {
  .navbar {
    position: relative;
  }

  .burger-btn {
    display: inline-flex;
    order: 3;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }

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

  .nav-links a {
    flex: 1 1 100%;
  }

  .burger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 420px) {
  .burger-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 820px) {
  .logo-sisl {
    display: none !important;
  }
}


.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}

.qr-section img {
  max-width: 320px;
  width: 100%;
  margin-top: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: white;
  padding: 12px;
}



/* Fix final: burger aligned on the right of the header on mobile */
@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 12px 0 !important;
    position: relative !important;
    flex-wrap: nowrap !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .brand-text {
    min-width: 0 !important;
  }

  .burger-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    order: 2 !important;
    position: relative !important;
    z-index: 120 !important;
  }

  .logo-sisl {
    display: none !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 12px !important;
    border-radius: 18px !important;
    background: rgba(7,17,31,0.98) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.28) !important;
    flex-direction: column !important;
    gap: 8px !important;
    order: 3 !important;
  }

  .nav-links.is-open {
    display: flex !important;
  }

  .nav-links a {
    width: 100% !important;
    flex: 1 1 100% !important;
    text-align: center !important;
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .logo-section {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

  .brand-text strong {
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
  }

  .brand-text span {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
  }

  .burger-btn {
    width: 42px !important;
    height: 42px !important;
  }
}



/* Final mobile header + burger alignment */
.logo-section {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.logo-sisl {
  width: 120px;
  margin-left: 20px;
}

.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 auto;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 12px 0 !important;
    position: relative !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .brand-text {
    min-width: 0 !important;
  }

  .brand-text strong,
  .brand-text span {
    overflow-wrap: anywhere;
  }

  .burger-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    order: 2 !important;
    position: relative !important;
    z-index: 120 !important;
  }

  .logo-sisl {
    display: none !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 12px !important;
    border-radius: 18px !important;
    background: rgba(7,17,31,0.98) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.28) !important;
    flex-direction: column !important;
    gap: 8px !important;
    order: 3 !important;
  }

  .nav-links.is-open {
    display: flex !important;
  }

  .nav-links a {
    width: 100% !important;
    flex: 1 1 100% !important;
    text-align: center !important;
    min-width: 0 !important;
  }

  .burger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .logo-section {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
  }

  .brand-text strong {
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
  }

  .brand-text span {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
  }

  .burger-btn {
    width: 42px !important;
    height: 42px !important;
  }
}
