/* ============================================
   GET IN TOUCH v5 — clean light design
   ============================================ */

#git-section {
  background: #f7f7f8;
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

#git-section::before {
  content: 'CONTACT';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(70px, 13vw, 160px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #ececec;
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.git-container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.git-header {
  text-align: center;
  margin-bottom: 60px;
}

.git-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e55400;
  margin-bottom: 16px;
}

.git-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0 0 14px;
}

.git-title span { color: #e55400; }

.git-desc {
  font-size: 15.5px;
  color: #999;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.git-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 0;
}

/* ---- Left column ---- */
.git-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.git-info-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s, transform 0.22s;
  flex-shrink: 0;
}

.git-info-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.git-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #e55400;
  flex-shrink: 0;
}

.git-info-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.git-info-body span {
  font-size: 13px;
  color: #999;
}

/* Social card — light orange tint, no dark */
.git-social-row {
  background: #fff5f0;
  border: 1px solid #fde0d0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  overflow: hidden;
}

.git-social-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e55400;
  opacity: 0.7;
}

.git-social-links {
  display: flex;
  gap: 10px;
}

.git-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #fde0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #e55400;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.git-social-links a:hover {
  background: #e55400;
  color: #fff;
  border-color: #e55400;
  box-shadow: 0 4px 12px rgba(229,84,0,0.25);
}

/* Team image inside social card */
.git-social-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-height: 140px;
}

.git-social-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.git-social-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(229,84,0,0.75) 0%, transparent 100%);
  padding: 20px 14px 14px;
  border-radius: 0 0 14px 14px;
}

.git-social-img-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
}

/* ---- Right form card ---- */
.git-form-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.git-form-head {
  margin-bottom: 28px;
}

.git-form-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 5px;
}

.git-form-head p {
  font-size: 13.5px;
  color: #bbb;
  margin: 0;
}

.git-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.git-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.git-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.git-field label {
  font-size: 12px;
  font-weight: 650;
  color: #555;
  letter-spacing: 0.2px;
}

.git-field label span { color: #e55400; }

.git-field input,
.git-field textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid #efefef;
  border-radius: 11px;
  font-size: 13.5px;
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
  resize: none;
  -webkit-appearance: none;
}

.git-field input:focus,
.git-field textarea:focus {
  border-color: #e55400;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(229,84,0,0.07);
}

.git-field input::placeholder,
.git-field textarea::placeholder { color: #ccc; }

.git-form-footer {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.git-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #e55400;
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.git-btn:hover {
  background: #c94a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229,84,0,0.25);
}

.git-btn i { font-size: 14px; transition: transform 0.2s; }
.git-btn:hover i { transform: translateX(3px); }

.git-form .form-sent-message {
  color: #1a7a4a;
  background: #edfaf3;
  border: 1px solid #b6ecd4;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 13.5px;
}

.git-form .form-error-message {
  color: #c0392b;
  background: #fdf0ef;
  border: 1px solid #f5c6c2;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 13.5px;
}

/* Responsive */
@media (max-width: 960px) {
  .git-grid { grid-template-columns: 1fr; }
  .git-info  { display: grid; grid-template-columns: 1fr 1fr; }
  .git-social-row { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .git-social-img { min-height: 120px; width: 200px; flex: 0 0 200px; }
}

@media (max-width: 600px) {
  .git-form-card { padding: 30px 22px; }
  .git-row { grid-template-columns: 1fr; }
  .git-info { grid-template-columns: 1fr; }
  #git-section { padding: 64px 0; }
  .git-social-row { flex-direction: column; align-items: flex-start; }
  .git-social-img { display: none; }
}
