:root{
  --blue:#0b66d6;
  --yellow:#ffcc00;

  /* Text */
  --ink:#0f172a;
  --muted:#475569;

  /* Surfaces */
  --cardTint: rgba(255,255,255,.86);
  --line:#e2e8f0;

  --shadow: 0 10px 25px rgba(2, 6, 23, .08);
  --radius: 18px;
  --max: 1100px;
}

/* =========================
   Base / Reset
   ========================= */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  line-height:1.5;

  /* Global animated pastel (site-wide) */
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 214, 0, .26) 0%, rgba(255, 214, 0, 0) 45%),
    radial-gradient(circle at 80% 40%, rgba(72, 173, 255, .28) 0%, rgba(72, 173, 255, 0) 55%),
    linear-gradient(120deg, rgba(72, 173, 255, .92) 0%, rgba(255, 214, 0, .82) 50%, rgba(72, 173, 255, .88) 100%);
  background-size: 140% 140%;
  animation: pastelShift 12s ease-in-out infinite;
}

@keyframes pastelShift{
  0%   { background-position: 0% 40%; }
  50%  { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Brand selection + caret */
::selection { background: rgba(255, 204, 0, .35); }
input, textarea { caret-color: var(--blue); }

/* Scrollbar (avoid grey/black) */
/* Firefox */
* { scrollbar-width: thin; scrollbar-color: rgba(11,102,214,.55) rgba(217,239,255,.75); }
/* Chromium / Safari */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: rgba(217,239,255,.75); border-radius: 999px; }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(11,102,214,.55), rgba(255,204,0,.55));
  border: 3px solid rgba(217,239,255,.75);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(11,102,214,.75), rgba(255,204,0,.75));
}

/* =========================
   Top band + Header / Nav
   ========================= */
.topband{
  height:10px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 65%, var(--yellow) 65%, var(--yellow) 100%);
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(2,6,23,.04);
}

/* Premium accent glow under header */
.header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:3px;
  background: linear-gradient(
    90deg,
    rgba(72,173,255,.85),
    rgba(255,214,0,.85),
    rgba(72,173,255,.75)
  );
  opacity:.65;
  pointer-events:none;
  border-radius: 999px;
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand img{width:80px; height:80px; object-fit:contain}
.brand .name{font-weight:900; letter-spacing:.2px}
.brand .tag{font-size:13px; color:var(--muted)}

.navlinks{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.navlinks a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
}
.navlinks a:hover{background:rgba(255,255,255,.7); color:var(--ink)}

.ctaRow{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

/* =========================
   Buttons + Badge
   ========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--cardTint);
  font-weight:800;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn.primary{
  background:var(--blue);
  color:#fff;
  border-color:transparent;
}
.btn.primary:hover{filter:brightness(.95)}
.btn.ghost:hover{background:rgba(255,255,255,.9)}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  color:var(--blue);
  font-weight:800; font-size:13px;
  border:1px solid rgba(11,102,214,.15);
}

/* =========================
   Sections / Typography
   ========================= */
.section{padding:26px 0}
.h2{font-size:26px; margin:0 0 10px}
.p{color:var(--muted); margin:0 0 14px}

/* =========================
   Cards / Layout blocks
   ========================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 900px){
  .cards{grid-template-columns:1fr}
}

.card{
  border:1px solid rgba(226,232,240,.9);
  background: var(--cardTint);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 6px 18px rgba(2,6,23,.05);
}

.card .title{font-weight:900; margin-bottom:6px}
.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 900px){
  .split{grid-template-columns:1fr}
}

/* =========================
   Forms (generic)
   ========================= */
.form{
  border:1px solid rgba(226,232,240,.9);
  background: var(--cardTint);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 720px){ .grid2{grid-template-columns:1fr} }

label{font-weight:800; font-size:13px}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  margin-top:6px;
  border-radius:12px;
  border:1px solid var(--line);
  font:inherit;
  background: rgba(255,255,255,.92);
}
textarea{min-height:110px; resize:vertical}

.note{
  font-size:13px;
  color:var(--muted);
  margin-top:10px;
}

/* =========================
   Scroll Reveal
   ========================= */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* =========================
   Loader
   ========================= */
#loader{
  position:fixed;
  inset:0;
  background: rgba(255,255,255,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  z-index:9999;
  transition: opacity .35s ease;
  backdrop-filter: blur(10px);
}

#loader .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--yellow);
  opacity:.7;
  animation: dotBounce .55s infinite alternate;
}
#loader .dot:nth-child(2){
  background: var(--blue);
  animation-delay:.12s;
}
#loader .dot:nth-child(3){
  background:#9fd3ff;
  animation-delay:.24s;
}

@keyframes dotBounce{
  from{ transform: translateY(0); opacity:.55; }
  to{ transform: translateY(-10px); opacity:1; }
}

/* =========================
   HOME PAGE HERO (Image 2)
   ========================= */
.hero{
  padding: 34px 0 18px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 900px){
  .heroGrid{
    grid-template-columns: 1fr;
  }
}

.h1{
  font-size: 52px;
  line-height: 1.04;
  margin: 12px 0 12px;
  letter-spacing: -1px;
}
@media (max-width: 520px){
  .h1{ font-size: 38px; }
}

.lede{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
}

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 520px){
  .kpis{ grid-template-columns: 1fr; }
}

.kpi{
  border: 1px solid rgba(226,232,240,.9);
  background: var(--cardTint);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(2,6,23,.05);
}
.kpi .big{ font-weight: 900; font-size: 18px; }
.kpi .small{ color: var(--muted); font-size: 12px; margin-top: 2px; }

/* Right image card */
.heroCard{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,.08);
}

.heroCard img{
  display: block;
  width: 100%;
  height: 360px;      /* controls crop height */
  object-fit: cover;  /* ensures clean crop */
}

.heroCard .pad{
  padding: 14px;
}


/* =========================
   FOOTER (site-wide)
   ========================= */
.footer{
  border-top:1px solid rgba(226,232,240,.9);
  padding:18px 0 30px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}

.footerGrid{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer .mini{
  color:var(--muted);
  font-size:13px;
}

.footer .contact{
  font-weight:900;
  color:var(--blue);
}

.fhrsBadge{ display:inline-block; line-height:0; }
.fhrsBadge img{
  width:110px;
  max-width:110px;
  height:auto;
  display:block;
  border-radius:12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.20);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fhrsBadge img:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.30);
}

/* =========================
   CONTACT PAGE
   (supports your current HTML)
   ========================= */
.contactHero{
  padding: 18px 0 0;
  position: relative;
}

.contactHeroInner{
  min-height: 320px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding-bottom:40px;
}

.contactHeroTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.contactHeroLogo{
  width:72px;
  height:72px;
  object-fit:contain;
  background: rgba(255,255,255,.75);
  border-radius:20px;
  padding:10px;
  box-shadow: 0 14px 30px rgba(2,6,23,.18);
}

.contactHeroSocials{display:flex; gap:10px;}

.socBtn{
  width:44px; height:44px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  color:#fff;
  font-weight:1000;
  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .15s ease, filter .15s ease;
}
.socBtn:hover{ background: rgba(255,255,255,.28); transform: translateY(-1px); }
.socBtn svg{ width:20px; height:20px; display:block; }

.socBtn.facebook{
  background: rgba(24,119,242,.28);
  border-color: rgba(24,119,242,.35);
}
.socBtn.instagram{
  background: rgba(225,48,108,.22);
  border-color: rgba(225,48,108,.30);
}

.contactHeroTitle{
  text-align:center;
  color:#fff;
  font-weight:1000;
  opacity:.96;
  margin-top:16px;
  letter-spacing: .5px;
}

/* Curve */
.contactHeroCurve{
  height:120px;
  background:#fff;
  border-top-left-radius: 100% 90%;
  border-top-right-radius: 100% 90%;
  transform: translateY(60px);
}

/* 3-column quick contact */
.contactTri{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:0;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(226,232,240,.9);
  border-radius:22px;
  box-shadow: 0 10px 25px rgba(2,6,23,.06);
  overflow:hidden;
}
@media (max-width: 900px){
  .contactTri{ grid-template-columns:1fr; }
}

.triItem{
  padding:22px 18px;
  text-align:center;
}
.triSep{
  border-left:1px solid rgba(226,232,240,.9);
  border-right:1px solid rgba(226,232,240,.9);
}
@media (max-width: 900px){
  .triSep{ border:0; border-top:1px solid rgba(226,232,240,.9); border-bottom:1px solid rgba(226,232,240,.9); }
}

.triIcon{
  width:44px; height:44px;
  margin:0 auto 10px;
  border-radius:16px;
  background: rgba(11,102,214,.08);
  color: var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
}
.triIcon svg{ width:22px; height:22px; }

.triTitle{
  font-weight:1000;
  font-size:12px;
  letter-spacing:.8px;
  color: var(--muted);
  margin-bottom:6px;
}
.triValue{
  font-weight:1000;
  color: var(--ink);
}
.triValue:hover{ color: var(--blue); text-decoration: underline; }

/* Map section */
.mapSection{
  position:relative;
  padding: 46px 0 70px;
}

.mapBg{
  position:absolute;
  inset:0;
  z-index:0;
  opacity: .75;
  filter: saturate(1.05);
}
.mapBg iframe{
  width:100%;
  height:100%;
  border:0;
}

.mapOverlay{
  position:relative;
  z-index:1;
}

.mapTitle{
  text-align:center;
  font-weight:1000;
  letter-spacing:.5px;
  margin:0 0 14px;
}

.mapForm{
  max-width: 960px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 18px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.90);
  box-shadow: 0 16px 36px rgba(2,6,23,.10);
  backdrop-filter: blur(10px);
}

.formActions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

/* ======================
   GLOBAL FOOTER
====================== */

.footer{
  background: linear-gradient(180deg, #1f5fbf 0%, #1a4ea1 100%);
  color: #fff;
  padding: 50px 0 20px;
}

.footerInner{
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px){
  .footerInner{
    grid-template-columns: 1fr;
  }
}

.footer h4{
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: .5px;
}

.footer a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}

.footer a:hover{
  color: #fff;
  text-decoration: underline;
}

.footerCol p{
  margin: 6px 0;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

/* Right column (contact + badge aligned right) */
.footerRight{
  text-align: right;
}

.footerBadge{
  margin-top: 16px;
}

.footerBadge img{
  width: 110px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* Bottom copyright row */
.footerBottom{
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
/* CONTACT: remove the white arc so the contact strip isn't cropped */
.contactHeroCurve{
  display: none !important;
  height: 0 !important;
  transform: none !important;
}
.footerBottom a{ color:#fff; }
.footerBottom a:hover{ text-decoration: underline; }