:root{
  --navy:#062a4a;
  --navy2:#041f36;
  --blue:#0b4b83;
  --yellow:#f7c600;
  --text:#0b1220;
  --muted:#5c6b7a;
  --line:#e7eef6;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --shadow2: 0 10px 25px rgba(0,0,0,.10);
  --radius:18px;
  --radius2:22px;
  --container: 1200px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  min-height: 100vh;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
a{color:inherit}
.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Utility strip */
.utility-strip{
  background: var(--navy2);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.utility-strip-inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
}
.utility-left{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.utility-left a{color:rgba(255,255,255,.92); text-decoration:none}
.utility-left a:hover{text-decoration:underline}
.dot{opacity:.45}
.utility-right{
  display:flex;
  gap:10px;
  align-items:center;
}
.pill{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

/* Header */
.site-header{
  background:#fff;
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{
  height: 44px;
  width:auto;
  display:block;
}
.brand-text{line-height:1.05}
.brand-name{font-weight:900; letter-spacing:.5px}
.brand-sub{font-size:12px; color:var(--muted); margin-top:4px}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-link{
  text-decoration:none;
  font-weight:700;
  color:#1b2a3a;
  padding: 10px 8px;
  border-radius: 12px;
}
.nav-link:hover{background:#f3f7fb}
.nav-link.active{
  box-shadow: inset 0 -3px 0 var(--yellow);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
}
.phone{
  text-decoration:none;
  text-align:right;
}
.phone-number{
  font-weight:900;
  color: var(--blue);
  letter-spacing:.2px;
}
.phone-sub{
  font-size:12px;
  color: var(--muted);
  margin-top:4px;
}

/* Info strip */
.info-strip{
  background:#f7f9fc;
  border-top: 1px solid var(--line);
}
.info-strip-inner{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:space-between;
  padding: 10px 0;
  color:#17324a;
  font-size:13px;
}
.info-item strong{font-weight:900}

/* HERO (bigger + show more of van shadow) */
.hero{
  min-height: 620px;                 /* BIGGER than before */
  padding: 54px 0 64px;
  position: relative;
  overflow:hidden;

  background-image: var(--hero-image);
  background-size: cover;
  background-repeat: no-repeat;

  /* move the image down a bit so the bottom/shadow is more visible */
  background-position: right 65%;
}

/* Dark overlay more to the LEFT */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 520px at 10% 40%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(90deg,
      rgba(3,19,35,.92) 0%,
      rgba(3,19,35,.86) 28%,
      rgba(3,19,35,.55) 46%,
      rgba(3,19,35,.18) 62%,
      rgba(3,19,35,0) 75%
    );
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,0));
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items:center;
}

.hero-copy{
  color:#fff;
  max-width: 620px;
}

.hero-kicker{
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-title{
  margin:0 0 14px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero-title .accent{
  color: var(--yellow);
}

.hero-lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  font-size: 15px;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 16px 0 20px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 12px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 2px solid transparent;
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
}
.btn-primary{
  background: var(--yellow);
  color:#0b1220;
}
.btn-primary:hover{filter:brightness(.98)}
.btn-secondary{
  background: #fff;
  color: #0b2f55;
}
.btn-secondary:hover{filter:brightness(.98)}

.hero-footnote{
  margin-top: 14px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.hero-footnote a{
  color: var(--yellow);
  text-decoration:none;
  font-weight: 900;
}
.hero-footnote a:hover{text-decoration:underline}

/* Sections */
.section{
  padding: 42px 0;
}
.section-head h2{
  margin:0 0 6px;
  font-size: 26px;
  letter-spacing: -.01em;
}
.section-head p{
  margin:0 0 22px;
  color: var(--muted);
}

/* Popular categories (keep the colour filter/tint) */
.category-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card{
  text-decoration:none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cat-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  border-color: #d6e3f1;
}
.cat-img{
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
}
.cat-img::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(7,52,94,.50), rgba(7,52,94,.08) 55%, rgba(247,198,0,.10));
  mix-blend-mode: multiply;
  opacity: .85;
}
.cat-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,0) 50%, rgba(0,0,0,.12));
  opacity:.9;
}
.cat-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  background:#fff;
}
.cat-title{
  font-weight: 900;
  color:#0b2a46;
}
.cat-arrow{
  color:#8aa0b7;
  font-weight:900;
  font-size: 18px;
}

/* Simple panel */
.simple-panel{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background:#fff;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.simple-panel h2{margin:0 0 10px}
.simple-panel p{margin:0 0 10px; color:#2b3b4b}
.simple-panel a{color: var(--blue); font-weight:900; text-decoration:none}
.simple-panel a:hover{text-decoration:underline}

/* CONTACT SECTION */
.contact-section{
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
}
.contact-card, .form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  padding: 22px;
}
.contact-card h3, .form-card h3{
  margin:0 0 14px;
  font-size: 18px;
  letter-spacing: -.01em;
}
.contact-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f4f9;
}
.contact-row:last-of-type{border-bottom:none}
.contact-label{
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}
.contact-value{
  font-weight:700;
  color:#10263b;
}
.contact-value a{
  color: var(--blue);
  text-decoration:none;
  font-weight:900;
}
.contact-value a:hover{text-decoration:underline}
.contact-notes{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.contact-pill{
  display:inline-flex;
  margin-left: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(247,198,0,.22);
  border: 1px solid rgba(247,198,0,.35);
  color:#0b2a46;
  font-weight:900;
  text-decoration:none;
}
.contact-pill:hover{filter:brightness(.98)}

/* FORM */
.contact-form label{
  display:block;
  font-weight:800;
  font-size: 13px;
  color:#193149;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid #dbe6f2;
  outline:none;
  font-family: inherit;
  font-weight: 600;
  color:#0b1220;
  background:#fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: rgba(11,75,131,.55);
  box-shadow: 0 0 0 4px rgba(11,75,131,.12);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 6px;
}
.form-small{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.form-small a{
  color: var(--blue);
  font-weight:900;
  text-decoration:none;
}
.form-small a:hover{text-decoration:underline}

/* FOOTER */
.site-footer{
  background:#071f36;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0 18px;
  position: relative;
  bottom: 0;
}
.footer-inner{display:block}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col{min-width:0}
.footer-brand{
  display:flex;
  gap: 12px;
  align-items:center;
}
.footer-brand img{
  height: 42px;
  width:auto;
  background:#fff;
  border-radius: 10px;
  padding: 6px;
}
.footer-title{
  font-weight: 900;
  color:#fff;
}
.footer-sub{
  font-size: 12px;
  opacity: .8;
  margin-top: 3px;
}
.footer-head{
  font-weight: 900;
  color:#fff;
  margin-bottom: 10px;
}
.footer-link{
  display:block;
  text-decoration:none;
  padding: 6px 0;
  opacity: .9;
}
.footer-link:hover{text-decoration:underline}
.footer-text{
  margin: 10px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 13px;
  line-height: 1.5;
}
.footer-text a{
  color: var(--yellow);
  text-decoration:none;
  font-weight:900;
}
.footer-text a:hover{text-decoration:underline}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 14px;
  font-size: 12px;
  opacity: .88;
}
.footer-bottom-right{
  display:flex;
  gap: 10px;
  align-items:center;
}
.footer-dot{opacity:.5}

/* Responsive */
@media (max-width: 1100px){
  .hero-inner{grid-template-columns: 1fr}
  .hero{background-position: center 65%}
  .category-grid{grid-template-columns: repeat(2,1fr)}
  .contact-grid{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
}
@media (max-width: 620px){
  .header-inner{flex-wrap:wrap}
  .main-nav{flex-wrap:wrap; justify-content:center}
  .hero-title{font-size: 36px}
  .category-grid{grid-template-columns: 1fr}
  .form-row{grid-template-columns: 1fr}
  .footer-bottom{flex-direction:column; align-items:flex-start}
}
.mobile-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;

  display: flex;
  flex-direction: column;
  gap: 2px;

  padding: 12px 14px;
  border-radius: 16px;

  background: #0b1f3a;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
}

.mobile-float:hover{
  transform: translateY(-1px);
}

.mobile-float-label{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}

.mobile-float-number{
  font-weight: 600;
  font-size: 13px;
  opacity: .9;
  line-height: 1.1;
}
