.contact-page{
  padding: 100px 8%;
  background: var(--bg, #f8fafc);
}

.contact-wrapper{
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info{
  flex: 4;
}

.contact-info h1{
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.2;
}

.lead{
  color: #64748b;
  margin-bottom: 40px;
  max-width: 420px;
}

.contact-block{
  margin-bottom: 40px;
}

.contact-block h3,
.social h3{
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-block p{
  margin: 4px 0;
  color: #475569;
}

.social-icons{
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a{
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: 0.2s;
}

.social-icons a:hover{
  background: #4f46e5;
  color: white;
}

.contact-form{
  flex: 6;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.row.two{
  display: flex;
  gap: 15px;
}

.row.two .field{
  flex: 1;
  min-width: 0;
}

.field{
  display: flex;
  flex-direction: column;
}

input, textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
}

textarea{
  height: 160px;
  resize: none;
}

input:focus,
textarea:focus{
  border-color: #4f46e5;
}

.submit-btn{
  width: 100%;
  padding: 14px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s;
}

.submit-btn:hover{
  background: #4338ca;
}

.submit-btn span{
  font-size: 18px;
}

.contact-map{
  margin-top: 70px;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px){
  .contact-wrapper{
    flex-direction: column;
  }

  .row.two{
    flex-direction: column;
  }
}