:root {
  --navy: #0B1F3B;
  --gold: #B89B5E;
  --bg: #F6F8FB;
  --text: #101828;
  --muted: #556070;
  --radius: 16px;
}

/* Base */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  font-family: Arial, sans-serif;
  color: var(--text);
}

/* Layout */
.container {
  width: min(1100px, calc(100% - 60px));
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 59, 0.10);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}


.logo {
  display: grid;
  line-height: 1.1;
}

.logo-mark {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-size: 16px;
}

.logo-sub {
  color: rgba(11, 31, 59, 0.75);
  font-weight: 600;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  font-weight: 800;
  color: rgba(11, 31, 59, 0.85);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(184, 155, 94, 0.12);
  color: var(--navy);
}


.nav a:hover {
  color: var(--navy);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 54px;   /* change to 46px if you want smaller */
  width: auto;
  display: block;
}

/* Hero base styles */
.hero {
  padding: 70px 0;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
}

h1 {
  margin: 18px 0 12px;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.accent {
  color: var(--gold);
}

/* ===============================
   HERO (Video Background Version)
================================= */

.hero-video {
  position: relative;
  padding: 110px 0 95px;
  overflow: hidden;
}

/* Background video */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* focus water on right */
  z-index: 0;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 18% 25%, rgba(184, 155, 94, 0.20), transparent 60%),
    linear-gradient(
      90deg,
      rgba(11, 31, 59, 0.88) 0%,
      rgba(11, 31, 59, 0.68) 45%,
      rgba(11, 31, 59, 0.35) 75%,
      rgba(11, 31, 59, 0.18) 100%
    );
}

/* Hero text container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

/* Heading styling */
.hero-video h1 {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Supporting text */
.hero-video .lead {
  color: rgba(255,255,255,0.86);
}

/* Eyebrow pill */
.hero-video .eyebrow {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.90);
}

/* Buttons */
.buttons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--gold);
  color: #011344;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(11, 31, 59, 0.15);
}

.btn:hover {
  opacity: 0.92;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 31, 59, 0.20);
}

.btn-ghost-on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.btn-ghost-on-dark:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(184, 155, 94, 0.60);
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .hero-video {
    padding: 80px 0 65px;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: 34px;
  }
}

/* Services section */
.services {
  padding: 60px 0 90px;
}

.services h2 {
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 8px;
}

.section-intro {
  color: rgba(11, 31, 59, 0.75);
  font-size: 17px;
  margin-top: 0;
  max-width: 860px;
}

.service-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(11, 31, 59, 0.10);
}

.service-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 18px;
}

.service-card p {
  margin: 8px 0 14px;
  color: rgba(11, 31, 59, 0.72);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 31, 59, 0.75);
  font-weight: 600;
}

.service-card li {
  margin: 6px 0;
}

.service-card:hover {
  border-color: rgba(184, 155, 94, 0.35);
}

/* Mobile */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================= */
/* Subtle Logo Ticker Banner */
/* ========================================= */

.logo-ticker {
  background: var(--navy); /* #0B1F3B */
  padding: 2px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Outer frame */
.ticker {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Fade edges for professional look */
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11,31,59,0) 100%);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy) 0%, rgba(11,31,59,0) 100%);
}

/* Moving track */
.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 4px 12px;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

/* Individual logo container */
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.ticker-item:hover {
  transform: scale(1.05);
}

/* Default logo size */
.ticker-item img {
  height: 28px;
  width: auto;
  display: block;
}

/* Ark logo specific size */
.logo-ark {
  height: 52px !important;
}

.logo-xero {
  height: 52px !important;
  width: auto !important;
}

/* Animation */
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-66.666%); }
}

/* Respect reduced motion setting */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* Mobile adjustments */
@media (max-width: 700px) {

  .ticker-track {
    gap: 20px;
    padding: 8px 14px;
  }

  /* Default logos shrink proportionally */
  .ticker-item img {
    height: 22px;
  }

  /* Larger logos shrink proportionally */
  .logo-ark,
  .logo-xero {
    height: 36px;
  }
}

/* Why section */
.why {
  background: white;
  border-top: 1px solid rgba(11, 31, 59, 0.10);
  padding: 70px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.why h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: 32px;
}

.why-points {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.why-point {
  background: var(--bg);
  border: 1px solid rgba(11, 31, 59, 0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.why-point h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.why-point p {
  margin: 0;
  color: rgba(11, 31, 59, 0.75);
  line-height: 1.55;
}

.why-panel {
  background: var(--bg);
  border: 1px solid rgba(184, 155, 94, 0.25);
  border-radius: var(--radius);
  padding: 22px;
}

.why-panel h3 {
  margin-top: 0;
  color: var(--navy);
}

.why-checklist {
  margin: 12px 0 18px;
  padding-left: 0;
  list-style: none;
  color: rgba(11, 31, 59, 0.78);
  font-weight: 600;
}

.why-checklist li {
  padding-left: 22px;
  margin: 10px 0;
  position: relative;
}

.why-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

/* Mobile */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Packages section (static) */
.packages {
  background: var(--navy); /* #0B1F3B */
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.packages-inner {
  position: relative;
}

.packages-header h2 {
  margin-top: 0;
  color: #fff;
  font-size: 32px;
}

.section-intro-on-dark {
  color: rgba(255,255,255,0.78);
}

.packages-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.packages-col-head {
  margin-bottom: 14px;
}

.packages-col-head h3 {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  letter-spacing: 0.01em;
}

.packages-sub {
  margin: 0;
  color: rgba(255,255,255,0.70);
  font-weight: 600;
}

/* Cards */
.package-card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.package-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.package-title {
  margin: 0;
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
}

.package-price {
  margin: 10px 0 4px;
  font-weight: 900;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: -0.01em;
}

.package-note {
  margin: 0;
  color: rgba(11, 31, 59, 0.65);
  font-weight: 700;
  font-size: 13px;
}

/* Gold button variant (still same .btn base) */
.btn.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: rgba(184, 155, 94, 0.45);
}

.btn.btn-gold:hover {
  opacity: 0.95;
}

/* List */
.package-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: rgba(11, 31, 59, 0.78);
  font-weight: 700;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

/* Footnote */
.packages-footnote {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact section */
.contact {
  padding: 70px 0 90px;
  background: var(--bg);
  border-top: 1px solid rgba(11, 31, 59, 0.10);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.contact h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: 32px;
}

.contact-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 59, 0.10);
  padding: 18px;
}

.contact-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}

.contact-card p {
  margin: 0;
  font-weight: 800;
  color: rgba(11, 31, 59, 0.80);
}

.contact-card a {
  color: rgba(11, 31, 59, 0.88);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(184, 155, 94, 0.7);
}

.muted-small {
  margin-top: 10px !important;
  font-weight: 600 !important;
  color: rgba(11, 31, 59, 0.65) !important;
  font-size: 14px;
}

/* Form */
.contact-form {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 59, 0.10);
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: rgba(11, 31, 59, 0.90);
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(11, 31, 59, 0.18);
  border-radius: 14px;
  padding: 12px 12px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(184, 155, 94, 0.8);
  box-shadow: 0 0 0 4px rgba(184, 155, 94, 0.18);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(11, 31, 59, 0.65);
  font-weight: 600;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
/* Footer */
.footer {
  background: white;
  border-top: 1px solid rgba(11, 31, 59, 0.10);
  padding: 50px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 24px;
  padding-bottom: 30px;
}

.footer-title {
  margin: 0;
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.footer-sub {
  margin-top: 10px;
  color: rgba(11, 31, 59, 0.70);
  font-weight: 600;
  max-width: 360px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  text-decoration: none;
  font-weight: 800;
  color: rgba(11, 31, 59, 0.80);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin: 0 0 10px;
  font-weight: 700;
  color: rgba(11, 31, 59, 0.75);
}

.footer-contact a {
  color: rgba(11, 31, 59, 0.85);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(184, 155, 94, 0.7);
}

/* Footer bottom strip */
.footer-bottom {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
}

html { scroll-behavior: smooth; }


.form-alert {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}

.form-alert.is-success { color: rgba(22, 163, 74, 0.95); }
.form-alert.is-error   { color: rgba(220, 38, 38, 0.95); }

/* Social row spans across all footer columns */
.footer-social {
  grid-column: 1 / -1;     /* <-- makes it full width of the grid */
  justify-self: center;    /* center the whole block */
  display: flex;
  justify-content: center; /* center the icons inside */
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

/* (Keep your existing icon styles below if you already have them) */
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 31, 59, 0.06);
  color: var(--navy);
}

.footer-socials{
  display:flex;
  gap:12px;
  margin-top:14px; /* puts it under phone numbers */
}

.social-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#EFF2F6;
  border:1px solid rgba(11,31,59,0.10);
  text-decoration:none;
}

.social-btn svg{
  width:18px;
  height:18px;
  fill: var(--navy);
  display:block;
}

/* Optional hover */
.social-btn:hover{
  transform: translateY(-1px);
  background:#E6EBF2;
}

