/* ============================
   GET IN TOUCH — Taller Form + Better Spacing
   Scoped with 'git-' prefix
   ============================ */

:root{
  --git-bg-a: #0f1724;
  --git-bg-b: #6a52b7;
  --git-accentA: #7f67e6;
  --git-accentB: #6750d8;
  --git-glass: rgba(255,255,255,0.05);
  --git-muted: rgba(255,255,255,0.92);
  --git-card-shadow: 0 22px 80px rgba(8,10,30,0.46);
  --git-ease: cubic-bezier(.16,.9,.3,1);
}

/* Full viewport height section */
.git-section {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--git-bg-a) 0%, #222a5a 26%, var(--git-bg-b) 100%);
  color: var(--git-muted);
  padding: 64px 20px;
}

/* container grid */
.git-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 700px; /* form slightly wider */
  gap: 72px;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Left side */
.git-left { padding: 6px; }

.git-heading {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 900;
  margin: 0 0 14px;
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.6px;
  max-width: 560px;
  text-shadow: 0 18px 48px rgba(8,12,30,0.36);
}

.git-sub {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  font-size: 1.02rem;
}

/* Cards Row */
.git-cards {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  column-gap: 26px;
  justify-content: start;
  margin-top: 22px;
}

.git-card-square {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--git-card-shadow);
  backdrop-filter: blur(10px) saturate(120%);
  transition: transform 320ms var(--git-ease), box-shadow 320ms var(--git-ease), opacity 320ms var(--git-ease);
  opacity: 0;
  transform: translateY(14px) scale(.995);
  text-align: center;
  position: relative;
}

.git-card-square:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 34px 120px rgba(30,18,90,0.36);
}

.git-card-square .git-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  margin-bottom: 10px;
}

.git-card__title { font-weight: 800; color: #fff; font-size: 0.95rem; }
.git-card__link { margin-top: 6px; color: #cfc0ff; font-weight: 600; font-size: 0.86rem; }

/* Card color glow */
.git-card-square.email::after,
.git-card-square.whatsapp::after,
.git-card-square.call::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms var(--git-ease), transform 320ms var(--git-ease);
  transform: scale(0.98);
  border-radius: inherit;
  mix-blend-mode: screen;
}
.git-card-square.email::after { background: radial-gradient(80px 60px at 20% 20%, rgba(110,165,255,0.07), transparent 28%); }
.git-card-square.whatsapp::after { background: radial-gradient(90px 60px at 80% 25%, rgba(120,255,175,0.05), transparent 28%); }
.git-card-square.call::after { background: radial-gradient(90px 60px at 60% 80%, rgba(255,135,180,0.045), transparent 28%); }
.git-card-square:hover::after { opacity: 1; transform: scale(1); }
.git-card-square.in-view { opacity: 1; transform: translateY(0) scale(1); }

/* Right Form Area */
.git-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}

/* Taller form box */
.git-form-card {
  width: 100%;
  max-width: 700px;
  min-height: 520px; /* <-- increased height */
  padding: 50px 40px; /* <-- more internal space */
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 48px 140px rgba(7,8,30,0.6);
  backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  transform: translateY(16px) scale(.995);
  transition: transform 420ms var(--git-ease), opacity 420ms var(--git-ease);
}
.git-form-card.in-view { opacity: 1; transform: translateY(0) scale(1); }

.git-form-head h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.git-form-sub {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
}

/* Input fields */
/* Input fields */
.git-field {
  margin-bottom: 30px !important; /* guaranteed visible spacing */
  display: block !important;
  width: 100% !important;
}

.git-field input,
.git-field textarea {
  display: block !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  padding: 16px 18px !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  outline: none !important;
  transition: all 250ms var(--git-ease) !important;
}

.git-field input::placeholder,
.git-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.85) !important;
  opacity: 1 !important;
}

.git-field textarea {
  min-height: 180px !important;
  resize: vertical !important;
}

/* Focus effect */
.git-field input:focus,
.git-field textarea:focus {
  border-color: rgba(127, 103, 230, 0.95) !important;
  box-shadow: 0 0 0 3px rgba(127, 103, 230, 0.15) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-2px) !important;
}

.git-field input:focus, .git-field textarea:focus {
  border-color: rgba(127,103,230,0.95);
  box-shadow: 0 14px 48px rgba(127,103,230,0.12);
  transform: translateY(-2px);
}

/* Button */
.git-btn {
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--git-accentA), var(--git-accentB));
  border: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(110,80,220,0.14);
  transition: transform 200ms var(--git-ease), box-shadow 200ms var(--git-ease);
}
.git-btn:hover { transform: translateY(-3px); box-shadow: 0 30px 80px rgba(110,80,220,0.18); }

/* Divider line */
.git-container::after {
  content: "";
  position: absolute;
  right: calc(700px + 28px);
  top: 64px;
  bottom: 64px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius: 2px;
  z-index: 1;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 980px) {
  .git-section { padding: 36px 16px; align-items: start; }
  .git-container { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .git-right { justify-content: center; }
  .git-heading { font-size: clamp(44px, 10vw, 72px); max-width: 100%; }
  .git-cards { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); justify-items: center; gap: 16px; }
  .git-form-card { max-width: 820px; padding: 32px 24px; min-height: auto; }
  .git-container::after { display: none; }
}
