:root{
  --main-bg:#364379;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --muted2:rgba(255,255,255,.65);
  --line:rgba(255,255,255,.14);
  --btn:#4c8dff;
  --btn-hover:#3b7bf0;

  --container:1220px;
  --r12:12px;
  --r16:16px;
  --pill:999px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Noto Sans Georgian', system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:#f2f2f2;
  line-height:1.5;
}
img{
  max-width:100%;
  height:auto;
}

/* nicer keyboard focus without ruining the look */
:focus-visible{
  outline:2px solid rgba(255,255,255,.6);
  outline-offset:3px;
  border-radius:10px;
}

/* ================= HEADER ================= */
.site-header{
  background:var(--main-bg);
  color:var(--text);
  border-bottom:1px solid rgba(255,255,255,.06);
  position:sticky;
  top:0;
  z-index:50;
}

.header-wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
  height:64px;
  display:flex;
  align-items:center;
  gap:18px;
}

.header-left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:260px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
}

.brand img{
  height:34px;
  width:auto;
  display:block;
}

.header-search{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--pill);
  padding:7px 12px;
  width:260px;
}

.header-search i{
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.header-search input{
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  width:100%;
  font-size:14px;
  font-family:inherit;
}

.header-search input::placeholder{
  color:rgba(255,255,255,.65);
}

.header-nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin:0 auto;
  height:100%;
}

.header-nav a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:14px;
  padding:8px 2px;
  position:relative;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

.header-nav a:hover{
  color:var(--btn);
  text-decoration:none;
}

.header-nav a.active{
  color:#fff;
}

.header-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-14px;
  height:2px;
  background:var(--btn);
  border-radius:2px;
}

.header-right{
  display:flex;
  align-items:center;
  gap:16px;
  margin-left:auto;
}

.header-right a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:14px;
  white-space:nowrap;
}

.header-right a:hover{ color:#fff; }

.cta{
  background:var(--btn);
  color:#fff !important;
  padding:9px 18px;
  border-radius:var(--pill);
  font-weight:700;
  text-decoration:none;
}
.cta:hover{ background:var(--btn-hover); }

.burger{
  display:none;
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

.mobile-panel{
  display:none;
  border-top:1px solid rgba(255,255,255,.10);
  background:var(--main-bg);
}
.mobile-panel.is-open{ display:block; }

.mobile-panel .inner{
  max-width:var(--container);
  margin:0 auto;
  padding:14px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mobile-panel nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mobile-panel nav a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
}
.mobile-panel nav a:hover{
  background:rgba(255,255,255,.14);
}

.mobile-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mobile-actions a{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
}
.mobile-actions a.cta{ background:var(--btn); }

@media (max-width: 1100px){
  .header-left{min-width:auto}
  .header-search{width:220px}
  .header-nav{gap:18px}
}

@media (max-width: 980px){
  .header-wrap{
    height:auto;
    flex-wrap:wrap;
    padding:10px 18px;
  }
  .header-nav{display:none}
  .header-search{
    width:100%;
    max-width:320px;
  }
  .header-right{
    width:100%;
    justify-content:flex-end;
  }
  .burger{display:flex}
}

@media (max-width: 640px){
  .header-wrap{gap:12px}
  .header-left{flex:1; min-width:0;}
  .header-search{width:100%; max-width:none;}
  .header-right a:not(.cta){display:none}
  .cta{padding:8px 14px}
}

/* ================= FOOTER ================= */
.site-footer{
  color:var(--text);
  background: var(--main-bg);
  margin-top:80px;
}

.footer-wrap{
  max-width:var(--container);
  margin:0 auto;
  padding: 0 18px;
}

.footer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 22px 0;
}

.brand-footer{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand-footer img{
  height:44px;
  width:auto;
  display:block;
}

.search{
  width: min(560px, 100%);
  display:flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r16);
  overflow:hidden;
}
.search input{
  flex:1;
  height:42px;
  border:0;
  outline:0;
  background: transparent;
  color: #fff;
  padding: 0 14px;
  font-size:14px;
  font-family:inherit;
}
.search input::placeholder{ color: rgba(255,255,255,.6); }
.search button{
  height:42px;
  border:0;
  padding: 0 18px;
  background: var(--btn);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.search button:hover{ background: var(--btn-hover); }

.divider{ border-top:1px solid var(--line); }

.footer-grid{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 22px;
  padding: 26px 0;
}
.box h4{
  margin:0 0 12px;
  font-size:13px;
  letter-spacing:.25px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.about p{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.6;
  max-width: 46ch;
}

.links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.links a{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-size:14px;
  transition: color .15s ease, transform .15s ease;
  width: fit-content;
}
.links a:hover{
  color: var(--btn);
  transform: translateX(2px);
  text-decoration:none;
}

.social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.social a{
  width:38px;
  height:38px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, background .15s ease;
}
.social a:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.footer-tail{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 16px 0 18px;
}
.contact{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r12);
  color: rgba(255,255,255,.92);
  font-size:13px;
  white-space:nowrap;
}
.pill i{ color:#fff; }

.copy{
  color: rgba(255,255,255,.65);
  font-size:12.5px;
  line-height:1.45;
  text-align:right;
  max-width: 46ch;
}

@media (max-width: 1024px){
  .footer-head{flex-direction:column;align-items:flex-start;}
  .search{width:100%;}
  .footer-grid{grid-template-columns: 1fr 1fr;}
  .copy{text-align:left;max-width:none;}
}
@media (max-width: 640px){
  .footer-head{gap:12px}
  .search{
    flex-direction:column;
    border-radius:14px;
  }
  .search input{
    height:44px;
  }
  .search button{
    width:100%;
    height:44px;
  }
  .footer-grid{grid-template-columns: 1fr;}
  .footer-tail{flex-direction:column;align-items:flex-start;}
  .pill{width:100%;}
  .copy{width:100%;}
}


/* news section */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.news-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

.news-img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}

.news-body{ padding:14px; }

.news-title{ font-weight:800; font-size:16px; margin-bottom:6px; }
.news-date{ font-size:12px; opacity:.65; margin-bottom:8px; }
.news-text{ font-size:13px; line-height:1.45; opacity:.85; }
.news-link{ display:inline-block; margin-top:10px; font-weight:800; color:#2563eb; }

.news-empty{
  background:#fff;
  border-radius:12px;
  padding:16px;
  border:1px solid rgba(0,0,0,.06);
}

@media (max-width: 980px){
  .news-grid{ grid-template-columns:1fr; }
}
