:root{
  --blue1:#0e3a6d;
  --blue2:#1a4f8b;
  --blue3:#2d6fb2;
  --gold:#d9a441;
  --gold2:#c8922f;
  --text:#17324d;
  --muted:#5f7287;
  --bg:#f4f7fb;
  --card:#ffffff;
  --border:#e6edf5;
  --shadow:0 10px 22px rgba(16, 42, 67, 0.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1140px; margin:0 auto; padding:0 16px}

/* Top bar */
.topbar{
  /*background: linear-gradient(180deg, #0c3564 0%, #134b86 60%, #1c5fa4 100%);*/
  background: #252654;
  color:#fff;
  box-shadow: 0 6px 18px rgba(11, 36, 66, 0.22);
  position:sticky; top:0; z-index:50;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}

.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:42px; height:42px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.25);
  font-weight:900;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__text strong{font-size:14px; letter-spacing:0.2px}
.brand__text span{font-size:11px; opacity:0.9; margin-top:2px; max-width:420px}

.nav{display:flex; align-items:center; gap:18px}
.nav__link{
  color:#fff; opacity:0.95;
  font-size:14px;
}
.nav__link:hover{opacity:1; text-decoration:underline}
.nav__cta{margin-left:10px}

.navToggle{
  display:none;
  border:0; background:rgba(255,255,255,0.15);
  color:#fff; font-size:18px;
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:6px;
  padding:11px 16px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.btn--gold{
  /*background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);*/
  background: #f8bf12;
  /*color:#12283e;*/
  color: #ffffff;
  box-shadow: 0 5px 0 rgba(113, 76, 14, 0.18);
}
.btn--gold:hover{filter:brightness(1.03)}
.btn--blue{
  /*background: linear-gradient(180deg, #244f7c 0%, #163e6a 100%);*/
  background: #252654;
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
}
.btn--blue:hover{filter:brightness(1.03)}
.btn--ghost{
  background:#fff;
  border:1px solid var(--border);
  color:var(--text);
}

/* Hero */
/* HERO (Screenshot-style) */
.hero{
  background:
    linear-gradient(90deg, rgba(12,34,58,0.78) 0%, rgba(12,34,58,0.52) 55%, rgba(12,34,58,0.20) 100%),
    url("../img/hero-banner.png") top/cover no-repeat;
  color:#fff;
  padding:42px 0 44px;
  min-height: 480px;
  display:flex;
  align-items:center;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}

.hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.15;
  font-weight:1000;
  text-shadow:0 2px 16px rgba(0,0,0,0.35);
  max-width: 740px;
}

.hero p{
  margin:0 0 18px;
  color:rgba(255,255,255,0.88);
  font-size:15px;
  line-height:1.6;
  max-width:620px;
  text-shadow:0 2px 12px rgba(0,0,0,0.30);
}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap}

/* Sections */
.section{
  padding:60px 0;
}
.section__title{
  text-align:center;
  font-size:20px;
  margin:0 0 16px;
  color:#12395e;
  font-weight:900;
  position:relative;
  padding-bottom:12px; /* underline spacing */
}
.section__title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:180px;
  height:5px;
  background:linear-gradient(90deg,#caa64b,#ffd36a,#caa64b);
  border-radius:999px;
  box-shadow:0 2px 10px rgba(202,166,75,0.25);
}

.section__title::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  background:#12395e;
  border:2px solid #ffd36a;
  border-radius:50%;
}
.hr{
  height:1px; background: var(--border);
  max-width:980px; margin:18px auto 0;
}

/* Cards */
.grid4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__pad{padding:14px}
.card__center {
  display: flex;
  flex-direction: column; /* Vertical stacking */
  align-items: center;    /* Center horizontally */
  justify-content: center;
  gap: 10px;
  padding: 14px;
}
.chipIcon{
  width:28px; height:28px;
  display:grid; place-items:center;
  border-radius:8px;
  background:#eef5ff;
  border:1px solid #d8e7ff;
}
.card__title{font-weight:900; font-size:14px; color:#12395e}
.card__muted{color:var(--muted); font-size:12.8px; line-height:1.45; margin-top:6px; text-align: justify;}
.card__img{width:100%; display:block; background:#e9f1fb}

/* Service cards */
.serviceCard .card__pad{padding:12px 14px 14px}
.serviceCard .btn{width:100%; margin-top:10px}

/* Package strip cards */
.packageStrip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.package{
  border-radius:8px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background:#fff;
}
.package__head{
  height:54px;
  color:#fff;
  display:flex; align-items:flex-end;
  padding:10px 12px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.package__head::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(12,34,58,0.72), rgba(12,34,58,0.40));
}
.package__head h3{
  position:relative; z-index:1;
  margin:0;
  font-size:14px;
  font-weight:900;
}
.package__body{padding:12px}
.tick{display:flex; gap:8px; align-items:flex-start; margin:8px 0; color:#2b4d6b; font-size:13px}
.tick::before{content:"✔"; color:#1f8d50; font-weight:900}

/* How it works steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow: var(--shadow);
  padding:14px;
  display:grid;
  grid-template-columns: 52px 1fr;
  gap:12px;
  align-items:flex-start;
}
.step__num{
  width:44px; height:44px;
  border-radius:50%;
  display:grid; place-items:center;
  /*background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);*/
  background: #f8bf12;
  /*color:#12283e;*/
  color: #ffffff;
  font-weight:1000;
  font-size:18px;
  border:1px solid rgba(0,0,0,0.06);
}
.step h3{margin:0; font-size:14px; color:#12395e}
.step p{margin:6px 0 0; color:var(--muted); font-size:12.8px; line-height:1.5}

/* Forms */
.formWrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow: var(--shadow);
  padding:14px;
}
.formGrid{display:grid; gap:10px}
.row2{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius:6px;
  border:1px solid #dbe6f2;
  background:#fff;
  outline:none;
  font-size:14px;
}
textarea{min-height:110px; resize:vertical}
.smallMuted{font-size:12px; color:var(--muted); margin-top:8px}

/* Footer */
.footer{
  margin-top:26px;
  /*background:#0f3f73;*/
  background: #252654;
  color:#fff;
}
.footer__inner{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__title{font-weight:900}
.footer__muted{opacity:0.85; font-size:12.5px; margin-top:6px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{opacity:0.95}
.footer__links a:hover{opacity:1; text-decoration:underline}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr 1fr}
  .grid3{grid-template-columns:1fr}
  .packageStrip{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .brand__text span{display:none}
}

@media (max-width: 820px){
  .navToggle{display:inline-flex}
  .nav{
    position:absolute;
    left:0; right:0;
    top:64px;
    background: linear-gradient(180deg, #0c3564 0%, #134b86 100%);
    padding:12px 16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    border-top:1px solid rgba(255,255,255,0.18);
  }
  .nav.isOpen{display:flex}
  .nav__cta{margin-left:0; width:100%}
  .nav__cta.btn{width:100%}
}
/* Floating Buttons */
.float-left{
  position: fixed;
  left: 16px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(16, 42, 67, 0.18);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 900;
  font-size: 13px;
  transition: transform .12s ease, filter .12s ease;
}

.float-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.float-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.28);
}

.float-text{ color:#fff; letter-spacing:0.2px; }

/* WhatsApp */
.float-btn--wa{
  /*background: linear-gradient(180deg, #25D366 0%, #1aa84f 100%);*/
  background: #25d366;
  color:#fff;
}

/* Phone Call */
.float-btn--call{
  /*background: linear-gradient(180deg, #0e3a6d 0%, #134b86 100%);*/
  background: #252654;
  color:#fff;
}

/* Mobile: make smaller */
@media (max-width: 600px){
  .float-btn{ padding:10px 12px; font-size:12px; }
  .float-text{ display:none; } /* icons only */
}
