/* ============================================================
   DIGITAL DADI — Get in Touch section (Orisa-inspired)
   Full-viewport dark section; sits above the footer curtain
   ============================================================ */

.gt-section {
  min-height: 100vh;
  background: #050a14;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* AI-generated background image */
.gt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('/assets/images/bg-contact.webp') center center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Overlay to darken + tint image */
.gt-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(74,75,113,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(253,187,17,.06) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,10,20,.6) 0%, rgba(5,10,20,.4) 50%, rgba(5,10,20,.75) 100%);
}

/* All direct children above the bg layers */
.gt-top-bar,
.gt-inner { position: relative; z-index: 1; }

/* ── Top bar ─────────────────────────────────────────────── */
.gt-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.25rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.gt-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
}
.gt-label-line {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
.gt-star {
  color: rgba(255,255,255,0.12);
  animation: gt-spin 18s linear infinite;
  flex-shrink: 0;
}
@keyframes gt-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Two-column layout ───────────────────────────────────── */
.gt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── Left: headline + contact + social ───────────────────── */
.gt-left {
  padding: 5rem 4rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gt-headline { display: flex; flex-direction: column; margin: 0 0 3rem; }
.gt-hl-line {
  display: block;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
}
.gt-hl-accent {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--dadi-yellow);
}
.gt-subtext {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 3rem;
}
.gt-contact-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.gt-contact-item  { display: flex; align-items: flex-start; gap: 1.25rem; }
.gt-contact-icon  { color: var(--dadi-yellow); flex-shrink: 0; margin-top: 2px; }
.gt-contact-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 0.25rem;
}
.gt-contact-val {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.gt-contact-val:hover { color: var(--dadi-yellow); }

/* Social */
.gt-social { display: flex; flex-direction: column; }
.gt-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.gt-social-link:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.gt-social-link:hover { color: #fff; }
.gt-social-link-name { flex: 1; }
.gt-social-arrow { opacity: 0.3; transition: opacity 0.2s, transform 0.2s; }
.gt-social-link:hover .gt-social-arrow { opacity: 1; transform: translate(2px,-2px); }

/* ── Right: form ─────────────────────────────────────────── */
.gt-right {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Orisa-style borderless bottom inputs */
.gt-field { margin-bottom: 0; }
.gt-input {
  display: block;
  width: 100%;
  padding: 1.125rem 0;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.gt-input::placeholder { color: rgba(255,255,255,0.3); }
.gt-input:focus { border-bottom-color: var(--dadi-yellow); }
.gt-select { cursor: pointer; }
.gt-select option { background: #0f172a; color: #fff; }
.gt-textarea { min-height: 90px; resize: none; }
.gt-error { color: #f87171; font-size: 0.875rem; margin-top: 0.5rem; }

/* Submit button */
.gt-actions { margin-top: 2.5rem; margin-bottom: 1rem; }
.gt-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.gt-btn:hover { background: var(--dadi-yellow); border-color: var(--dadi-yellow); color: #0a0f1e; }
.gt-btn:disabled { opacity: 0.5; pointer-events: none; }
.gt-btn-text-wrap {
  position: relative;
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
}
.gt-btn-text-1,
.gt-btn-text-2 { display: block; transition: transform 0.3s ease; white-space: nowrap; }
.gt-btn-text-2 { position: absolute; left: 0; top: 0; transform: translateY(100%); }
.gt-btn:hover .gt-btn-text-1 { transform: translateY(-100%); }
.gt-btn:hover .gt-btn-text-2 { transform: translateY(0); }

.gt-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.25); line-height: 1.5; margin: 0; }
.gt-disclaimer a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.gt-disclaimer a:hover { color: var(--dadi-yellow); }

/* Success state */
.gt-success-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.gt-success-icon {
  width: 3.5rem; height: 3.5rem;
  border: 1.5px solid var(--dadi-yellow);
  display: flex; align-items: center; justify-content: center;
  color: var(--dadi-yellow);
}
.gt-success-icon svg { width: 1.5rem; height: 1.5rem; }
.gt-success-wrap h3 { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.03em; color: #fff; margin: 0; }
.gt-success-wrap p  { color: rgba(255,255,255,0.5); margin: 0; line-height: 1.65; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1023px) {
  .gt-top-bar { padding: 1.75rem 2rem; }
  .gt-inner   { grid-template-columns: 1fr; }
  .gt-left    { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .gt-right   { padding: 4rem 2rem; }
  .gt-hl-line { font-size: clamp(3rem, 10vw, 6rem); }
}
@media (max-width: 639px) {
  .gt-top-bar { padding: 1.5rem 1.25rem; }
  .gt-left    { padding: 3rem 1.25rem; }
  .gt-right   { padding: 3rem 1.25rem; }
}
