/* =========================================================
GO – R123-like header/hero (pixel-match based on screenshot)
- Single file HTML + CSS
- No external dependencies
- Replace the hero image URL in --hero-img
========================================================= */

:root{
  /* === BARIK CORE (Trust / Header / Footer) === */
  --barik-50:  #eaf5f0;
  --barik-100: #cfe8dd;
  --barik-200: #a6d6c1;
  --barik-300: #7dc3a5;
  --barik-400: #4faa84;
  --barik-500: #1f8a63;
  --barik-600: #135730; /* PRIMARY BRAND */
  --barik-700: #0f4627;
  --barik-800: #0b351e;
  --barik-900: #062115;

  --go-white:#ffffff;

  /* === UI NEUTRAL === */
  --go-bg:#f5f7fb;        /* page background */
  --go-line:#e6edf7;      /* divider / border */
  --go-text:#0b1220;      /* primary text */
  --go-muted:#7b8aa6;     /* secondary text */

  /* Radii/shadow */
  --r-lg:26px;
  --r-md:16px;
  --r-sm:10px;
  --shadow-1: 0 14px 28px rgba(16,24,40,.10);

  /* Layout */
  --container: 1180px;
  --hero-h: 420px;

  /* Replace with real banner */
  --hero-img: url("../image/hero.png");
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--go-text);
  background:#ffffff;
}
a{color:inherit; text-decoration:none}
button,input{font:inherit}

/* Container */
.go-container{
  width:min(var(--container), calc(100vw - 48px));
  margin-inline:auto;
}

/* =========================================================
HEADER (Top bar + Nav bar)
========================================================= */
.go-header{
  position:sticky;
  top:0;
  z-index:9999;
  box-shadow:0 1px 0 rgba(255,255,255,.08);
}

.go-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hero-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.go-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      1000px 420px at 15% 35%,
      rgba(19, 87, 48, 0.45),
      rgba(19, 87, 48, 0) 60%
    ),
    linear-gradient(
      90deg,
      rgba(19, 87, 48, 0.55) 0%,
      rgba(19, 87, 48, 0) 45%
    );

  z-index: 1;
  pointer-events: none;
}


/* Top bar */
.go-topbar{
/*  background: linear-gradient(0deg, var(--barik-800), var(--barik-900));*/
  background: var(--barik-600);
  height:74px;
  display:flex;
  align-items:center;
}
.go-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

/* Brand */
.go-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:500;
  letter-spacing:.2px;
  font-size:28px;
  user-select:none;
}
.go-brand__mark{
  width:38px;height:38px;
  border-radius:50%;
  background: rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
}
.go-brand__mark:before{
  /* Simple “home” glyph */
  content:"";
  width:16px;height:16px;
  border-radius:3px;
  background:#fff;
  clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0% 100%, 0% 40%);
  transform: translateY(1px);
  display:block;
}
.go-brand__text{
  line-height:1;
}

/* Actions right */
.go-actions{
  display:flex;
  align-items:center;
  gap:16px;
  color:#dbe6ff;
  font-weight: 500;
  font-size: 14px;
}

.go-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:42px;
  padding:0 16px;
  border-radius:10px;
  background:#fff;
  color:#1b3f82;
  font-weight:500;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  border:0;
  cursor:pointer;
  white-space:nowrap;
}
.go-cta:before{
  /* megaphone-ish icon */
  content:"📣";
  font-size:18px;
  transform: translateY(1px);
}

.go-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#dbe6ff;
  padding:10px 10px;
  border-radius:10px;
}
.go-pill .ico{
  opacity:.9;
  font-size:15px;
  transform: translateY(1px);
}

/* Nav bar */
.go-navbar{
  background: var(--barik-800);
  height:54px;
  display:flex;
  align-items:center;
}
.go-navbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  height:54px;
  color:#dbe6ff;
  font-weight: 300;
  font-size: 14px;
}
.go-nav{
  display:flex;
  align-items:center;
  gap:30px;
  overflow:hidden;
  white-space:nowrap;
}
.go-nav a{
  opacity:.92;
  padding:8px 0;
}
.go-nav a:hover{opacity:1; text-decoration:underline; text-underline-offset:6px}
.go-nav--right{gap:26px; justify-content:flex-end}

/* =========================================================
HERO + SEARCH CARD
========================================================= */
.go-page{
  background:#ffffff;
}

.go-hero-wrap{
  /*      padding:22px 0 26px;*/
  background: #ffffff;
}

.go-hero{
  position:relative;
  height:var(--hero-h);
  /*      border-radius:var(--r-lg);*/
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
  background:#0b1a33;
}

/* Banner background */
.go-hero__bg{
  position:absolute;
  inset:0;
  background: radial-gradient(1000px 420px at 15% 35%, rgba(0,160,90,.35), rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,120,70,0.45) -1%, rgba(0,0,0,0) 100%),
    var(--hero-img);
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  filter:saturate(1.05) contrast(1.05);
}

/* Subtle top overlay to match screenshot tone */
.go-hero__shade{
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.12), rgba(0,0,0,.0) 60%);
  pointer-events:none;
}

/* Search card: centered, floating near bottom */
.go-search-card{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(820px, calc(100% - 48px));
/*  background: var(--barik-600);*/
  border-radius: 12px;
  padding:18px 18px 16px;
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(2px);
  opacity: 0.9;
}

.go-search-card__title{
  text-align:center;
  color:#fff;
  font-weight:500;
  font-size:30px;
  letter-spacing:.2px;
  margin:4px 0 14px;
}

/* Tabs */
.go-tabs{
  display:flex;
  justify-content:center;
  gap:54px;
  margin:0 auto 12px;
  color:rgb(255,255,255,0.9);
  font-weight:500;
  font-size:15px;
  position:relative;
}
.go-tab{
  position:relative;
  padding:10px 10px 8px;
  cursor:pointer;
  border:0;
  background:transparent;
  color:inherit;
  opacity:.85;
}
.go-tab.is-active{
  opacity:1;
  color:#fff;
}
.go-tab.is-active:after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  margin:auto;
  width:110px;
  height:1px;
  border-radius:999px;
  background:#ffffff;
  opacity:.95;
}

/* Search input row */
.go-searchrow{
  display:flex;
  align-items:center;
  gap:14px;
}
.go-searchbox{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border-radius: 10px;
  height:48px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}
.go-searchbox .mag{
  width:18px;height:18px;
  border:2px solid #9aa8c2;
  border-radius:50%;
  position:relative;
  margin-left:2px;
  opacity:.85;
  flex:0 0 auto;
}
.go-searchbox .mag:after{
  content:"";
  position:absolute;
  width:9px;height:2px;
  background:#9aa8c2;
  right:-7px;
  bottom:-4px;
  transform: rotate(45deg);
  border-radius:2px;
}
.go-searchbox input{
  border:0;
  outline:0;
  width:100%;
  font-size:15px;
  color:#24314a;
}
.go-searchbox input::placeholder{color:#94a3b8}

.go-btn-search{
  height:44px;
  padding:0 22px;
  border-radius:10px;
  border:0;
  background: var(--barik-900);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  box-shadow: 0 10px 18px rgba(18, 58, 130, .25);
  font-size: 15px;
}
.go-btn-search:hover{filter:brightness(.98)}
.go-btn-search:active{transform: translateY(1px)}

/* Recent search line */
.go-recent{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:12px;
  padding-left:6px;
  color:#fff;
  font-weight:500;
  font-size:14px;
}
.go-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  background:#eef4ff;
  border:1px solid #dbe6ff;
  border-radius:999px;
  color:#2d4f96;
  font-weight:500;
  box-shadow: 0 8px 16px rgba(16,24,40,.06);
}
.go-chip:after{
  content:"→";
  opacity:.9;
}

/* =========================================================
QUICK ACTIONS GRID (icons row under hero)
========================================================= */
.go-quick{
  padding:18px 0 34px;
  background:#ffffff;
}
.go-quick__grid{
  display:grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}
.go-tile{
  background:#fff;
  border:1px solid #eef2fb;
  border-radius:14px;
  box-shadow: 0 10px 20px rgba(16,24,40,.05);
  padding: 10px;
  text-align:center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.go-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(16,24,40,.08);
}
.go-icon{
  width:46px;height:46px;
  margin:0 auto 10px;
  border-radius:14px;
  background: linear-gradient(180deg, #eaf2ff, #f6f9ff);
  border:1px solid #e2ecff;
  display:grid;
  place-items:center;
  font-size:22px;
  color:#2d4f96;
}
.go-tile span{
  display:block;
  font-weight:500;
  font-size:14px;
  color:#22324e;
  line-height:1.45;
}

/* =========================================================
Responsive
========================================================= */
@media (max-width: 1200px){
  .go-nav{gap:22px}
  .go-nav--right{gap:18px}
}
@media (max-width: 1024px){
  .go-navbar{display:none} /* Same feel as screenshot: we can collapse nav on mobile */
  .go-topbar{height:70px}
  .go-brand{font-size:26px}
  .go-hero{height:420px}
  .go-search-card__title{font-size:26px}
  .go-quick__grid{grid-template-columns: repeat(4, minmax(0, 1fr));}
}
@media (max-width: 640px){
  .go-actions{gap:10px; font-size:14px}
  .go-cta{display:none} /* On small screens, usually hide the big CTA */
  .go-hero{height:460px}
  .go-search-card{
    width:calc(100% - 26px);
    bottom:16px;
    padding:14px 12px 12px;
  }
  .go-tabs{gap:26px; font-size:14px}
  .go-searchrow{gap:10px}
  .go-btn-search{padding:0 16px}
  .go-quick__grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
