/* ==========================================================================
   Get In Touch Panel (1303) — scoped styles
   Prefix: ow-git-  |  Layout via Bootstrap .container/.row/.col-md-6
   ========================================================================== */

.ow-git-section {
  --ow-git-navy: #0b2545;
  --ow-git-navy-2: #123a6b;
  --ow-git-ink: #0f1b2d;
  --ow-git-muted: #63748c;
  --ow-git-red: #e11d48;
  --ow-git-green: #22c55e;
  --ow-git-radius: 14px;
  padding: 40px 0;
}
.ow-git-section *,
.ow-git-section *::before,
.ow-git-section *::after { box-sizing: border-box; }

/* -------------------------------- LEFT --------------------------------- */
.ow-git-left { padding-top: 20px; padding-bottom: 20px; }

.ow-git-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ow-git-navy);
  margin-bottom: 18px;
}
.ow-git-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ow-git-red);
  display: inline-block;
}

.ow-git-h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ow-git-ink);
}
.ow-git-h2 .ow-git-accent { color: var(--ow-git-navy); }

.ow-git-sub {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ow-git-muted);
  max-width: 34em;
}

/* Buttons: 2 x 2 grid */
.ow-git-btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin-bottom: 38px;
}
.ow-git-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--ow-git-radius);
  background: var(--ow-git-navy);
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.ow-git-btn:hover {
  background: var(--ow-git-navy-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 37, 69, .22);
  color: #fff;
  text-decoration: none;
}
.ow-git-btn-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
}
.ow-git-btn-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}
.ow-git-btn-label { line-height: 1.1; }

/* Help / consultation line */
.ow-git-help {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ow-git-help-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef1f6;
  color: var(--ow-git-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ow-git-help-icon svg { width: 22px; height: 22px; display: block; }
.ow-git-help-body { display: flex; flex-direction: column; line-height: 1.35; }
.ow-git-help-q { font-size: 17px; color: var(--ow-git-muted); }
.ow-git-help-link {
  font-size: 18px;
  font-weight: 800;
  color: var(--ow-git-red);
  text-decoration: none;
}
.ow-git-help-link:hover { text-decoration: underline; color: var(--ow-git-red); }

/* -------------------------------- RIGHT -------------------------------- */
.ow-git-media {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
}
.ow-git-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ow-git-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(11, 37, 69, .55), rgba(18, 58, 107, .32));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ow-git-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(11, 37, 69, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.ow-git-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ow-git-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
}

/* ------------------------------ RESPONSIVE ----------------------------- */
@media (max-width: 991px) {
  .ow-git-media { min-height: 420px; margin-top: 30px; }
}

@media (max-width: 767px) {
  .ow-git-section { padding: 28px 0; }
  .ow-git-h2 { font-size: 32px; }
  .ow-git-sub { font-size: 16px; margin-bottom: 26px; }
  .ow-git-btns { gap: 14px; margin-bottom: 30px; }
  .ow-git-btn { padding: 16px; font-size: 17px; gap: 12px; }
  .ow-git-btn-icon { width: 36px; height: 36px; }
  .ow-git-media { min-height: 340px; }
  .ow-git-badge { left: 16px; bottom: 16px; font-size: 14px; padding: 10px 16px; }
}
