/* ========================================================== */
/* CONTACT PAGE BASE                                          */
/* ========================================================== */

.ab-contact-page {
  padding-top: 0;
  position: relative;
  min-height: 80vh;
  
  /* Global Tech Grid */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ========================================================== */
/* HERO SECTION                                               */
/* ========================================================== */

.ab-contact-hero {
  position: relative;
  text-align: left;
  padding: 100px 0 40px;
  margin-bottom: 40px;
  border: none; 
}

.ab-contact-hero-inner {
  position: relative;
  z-index: 2;
  /* LEFT ALIGN UPDATE: Removed centering and max-width constraint */
  width: 100%;
  margin: 0;
}

.ab-contact-eyebrow {
  /* REPLACED FONT */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--ab-accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.ab-contact-title {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #ffffff;
}

.ab-text-accent {
  background-image: linear-gradient(90deg, #5c9cff 0%, #ffffff 50%, #5c9cff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
  display: inline-block;
}

@keyframes shine { to { background-position: 200% center; } }

.ab-contact-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ab-text-subtle);
  max-width: 600px;
  margin: 0; 
}

/* ========================================================== */
/* FORM LAYOUT                                                */
/* ========================================================== */

.ab-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  width: 100%;
  align-items: flex-start;
  padding-bottom: 100px; 
}

/* LEFT: THE FORM CONTAINER */
.ab-contact-terminal {
  position: relative;
  padding: 60px;
  background: rgba(10, 12, 20, 0.95); 
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FORM ELEMENTS */
.ab-form-group {
  margin-bottom: 24px;
}

.ab-form-label {
  display: block;
  /* REPLACED FONT */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.ab-input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 16px;
  /* REPLACED FONT */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  border-radius: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ab-input-field:focus {
  outline: none;
  border-color: var(--ab-accent);
  background: rgba(27, 138, 255, 0.05);
}

textarea.ab-input-field {
  min-height: 160px;
  resize: vertical;
}

/* SUBMIT BUTTON */
.ab-submit-btn {
  width: 100%;
  background: var(--ab-accent);
  color: #000;
  border: none;
  padding: 18px;
  /* REPLACED FONT */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 12px;
}

.ab-submit-btn:hover {
  background: #fff;
  color: #000;
}

.ab-submit-btn.is-loading {
  background: #333;
  color: #888;
  pointer-events: none;
}

/* SUCCESS MESSAGE */
.ab-success-message {
  display: none;
  text-align: center;
  padding: 40px;
}

.ab-success-icon {
  font-size: 48px;
  color: var(--ab-accent);
  margin-bottom: 24px;
}

.ab-success-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

/* RIGHT: INFO PANEL */
.ab-contact-info {
  padding-top: 20px;
}

.ab-info-block {
  margin-bottom: 60px;
}

.ab-info-label {
  /* REPLACED FONT */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ab-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.ab-email-link {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding-bottom: 4px;
}

.ab-email-link:hover {
  color: var(--ab-accent);
  border-color: var(--ab-accent);
}

.ab-info-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ab-text-subtle);
  max-width: 400px;
}

/* Corner Accents */
.ab-term-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--ab-accent);
  border-style: solid;
}
.tc-tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.tc-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.tc-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.tc-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .ab-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .ab-contact-terminal {
    padding: 32px 24px;
  }
  
  .ab-email-link { font-size: 20px; }
  
  .ab-contact-title { font-size: 36px; }
}