:root {
  --navy: #0A2547;
  --blue-deep: #0E3D8F;
  --blue-main: #1E6ADB;
  --blue-bright: #5AAAFF;
  --blue-pale: #EAF3FC;
  --white: #FFFFFF;
  --text: #16324F;
  --orange: #E8792B;
  --green: #3FA34D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', 'Quicksand', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Baloo 2', 'Quicksand', sans-serif;
  color: var(--navy);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }

/* ---------- TOP NAV (icon based, sits on navy hero) ---------- */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  position: relative;
  z-index: 5;
}

.topnav .logo {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.topnav .logo .dot { color: var(--blue-bright); }

.topnav ul {
  list-style: none;
  display: flex;
  gap: 26px;
}

.navlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.navlink:hover, .navlink.active { opacity: 1; transform: translateY(-2px); }
.navlink svg { width: 26px; height: 26px; }

/* ---------- HERO (navy gradient) ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 45%, var(--blue-main) 100%);
  padding: 10px 6% 50px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 640px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.hero p {
  color: #DCEBFF;
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 26px;
}

.hero-boat { max-width: 640px; margin: 10px auto 0; display: block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(232,121,43,0.4);
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn.outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
  margin-left: 12px;
}

.btn.solid {
  background: var(--blue-main);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(30,106,219,0.3);
}

.btn.white {
  background: var(--white);
  color: var(--blue-main);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* ---------- SECTIONS ---------- */
section {
  padding: 60px 6%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title { text-align: center; font-size: clamp(1.7rem, 4vw, 2.2rem); margin-bottom: 10px; }
.section-sub { text-align: center; max-width: 560px; margin: 0 auto 40px; font-size: 1.05rem; }

/* ---------- PROCESS STRIP ---------- */
.process {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px 5% 32px;
  margin: 0 auto;
  max-width: 1000px;
}
.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.process-item { text-align: center; }
.process-item span {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.process-item svg { width: 76px; height: 76px; }
.process-arrow { color: var(--blue-bright); font-size: 1.6rem; font-weight: 800; }

/* ---------- CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.card {
  background: var(--blue-pale);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }
.card .icon { width: 80px; height: 80px; margin: 0 auto 18px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: 0.98rem; }

/* ---------- TRUST / PARTNERS STRIP ---------- */
.trust {
  background: var(--blue-pale);
  padding: 30px 6%;
  text-align: center;
}
.trust .label { font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; color: var(--blue-main); margin-bottom: 18px; text-transform: uppercase; }
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  align-items: center;
}
.trust-logos span {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
  opacity: 0.6;
}

/* ---------- STRIP CTA ---------- */
.strip {
  background: var(--blue-main);
  color: var(--white);
  text-align: center;
  padding: 56px 6%;
}
.strip h2 { color: var(--white); margin-bottom: 14px; }
.strip p { color: var(--blue-pale); max-width: 500px; margin: 0 auto 26px; }
.strip .btn { background: var(--white); color: var(--blue-main); }

/* ---------- SMART CONTACT FORM ---------- */
.form-card {
  background: var(--blue-pale);
  border-radius: 24px;
  padding: 36px;
  max-width: 520px;
  margin: 0 auto;
}
.form-card label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
  margin: 16px 0 6px;
}
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid #CFE1FA;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
}
.form-card textarea { resize: vertical; min-height: 80px; }
.form-card .btn.solid { width: 100%; text-align: center; margin-top: 22px; border: none; cursor: pointer; }
.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- AI CHAT WIDGET ---------- */
#ai-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-main);
  box-shadow: 0 10px 26px rgba(10,37,71,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  border: none;
}
#ai-chat-bubble svg { width: 28px; height: 28px; }

#ai-chat-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 300px;
  max-height: 400px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(10,37,71,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
}
#ai-chat-window.open { display: flex; }
#ai-chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  font-weight: 800;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
#ai-chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
}
.chat-msg { padding: 9px 12px; border-radius: 12px; max-width: 85%; }
.chat-msg.bot { background: var(--blue-pale); color: var(--navy); align-self: flex-start; }
.chat-msg.user { background: var(--blue-main); color: var(--white); align-self: flex-end; }
#ai-chat-footer { display: flex; border-top: 1px solid #E5EEFA; padding: 8px; gap: 6px; }
#ai-chat-input { flex: 1; border: none; outline: none; font-family: 'Nunito', sans-serif; font-size: 0.85rem; padding: 8px; }
#ai-chat-send { background: var(--blue-main); color: var(--white); border: none; border-radius: 10px; padding: 0 14px; font-weight: 800; cursor: pointer; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: var(--blue-pale);
  padding: 44px 6% 28px;
  text-align: center;
}
footer .logo { color: var(--white); font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 14px; }
footer .logo .dot { color: var(--blue-bright); }
footer p { margin-bottom: 6px; font-size: 0.95rem; }
footer .copy { margin-top: 24px; font-size: 0.85rem; opacity: 0.7; }

@media (max-width: 720px) {
  .topnav ul { gap: 16px; }
  .navlink span { display: none; }
}
