.contact-g{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
}

@media(max-width:768px){
  .contact-g{
    grid-template-columns:1fr;
    gap:30px;
  }
}
.c-info-list{
  margin-top:20px;
}

.c-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(8px);
  margin-bottom:12px;
  transition:.3s ease;
}

.c-item:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.c-ico{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(255,140,0,0.1);
  color:var(--am);
}

.c-lbl{
  font-size:13px;
  color:#888;
}

.c-val a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.c-val a:hover{
  color:var(--am);
}
.c-info-list{
  margin-top:20px;
}

.c-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(8px);
  margin-bottom:12px;
  transition:.3s ease;
}

.c-item:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.c-ico{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(255,140,0,0.1);
  color:var(--am);
}

.c-lbl{
  font-size:13px;
  color:#888;
}

.c-val a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.c-val a:hover{
  color:var(--am);
}
.cf-wrap{
  padding:24px;
  border-radius:18px;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.cf-head{
  font-size:20px;
  font-weight:600;
}

.cf-sub{
  font-size:13px;
  color:#777;
  margin-bottom:15px;
}
.cf-g{
  margin-bottom:14px;
}

.cf-g label{
  font-size:13px;
  margin-bottom:5px;
  display:block;
  color:#555;
}

.cf-g input,
.cf-g textarea,
.cf-g select{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.9);
  outline:none;
  transition:.3s ease;
}

.cf-g input:focus,
.cf-g textarea:focus,
.cf-g select:focus{
  border-color:var(--am);
  box-shadow:0 0 0 3px rgba(255,140,0,0.1);
}

.cf-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

@media(max-width:600px){
  .cf-row{
    grid-template-columns:1fr;
  }
}
.cf-g textarea{
  min-height:110px;
  resize:none;
}
.cf-submit{
  width:100%;
  padding:12px;
  border:none;
  border-radius:12px;
  background:var(--am);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.cf-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(255,140,0,0.3);
}
.cf-ok{
  margin-top:10px;
  font-size:14px;
  color:green;
  display:none;
}
.hero-l .hstats .hst{
  transition:.3s ease;
}

.hero-l .hst:hover{
  transform:translateY(-3px);
}