/* =====================================================
   VOKKOAGENCY — contacto.css
   ===================================================== */

/* ── Hero ── */
.contact-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.0;
  color: #FFFFFF;
  margin-bottom: 24px;
  margin-top: 16px;
}

.contact-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #E2DDF0;
  max-width: 520px;
}

/* ── Main Section ── */
.contact-section {
  background: var(--c-bg);
  padding: 80px 0 120px;
  border-top: 1px solid var(--c-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

/* ── Form Column ── */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  padding: 48px;
}

.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 15px;
  color: #E2DDF0;
  line-height: 1.6;
}

/* Form Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
}

.form-required {
  color: #A58BFF;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: rgba(139, 123, 170, 0.5);
}

.form-input:focus {
  border-color: rgba(108, 59, 255, 0.5);
  background: rgba(108, 59, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(108, 59, 255, 0.12);
}

.form-input.input-error {
  border-color: rgba(255, 80, 80, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.1);
}

/* Select */
.select-wrap {
  position: relative;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
}

.form-select option {
  background: #0F0D1C;
  color: #FFFFFF;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-muted);
  pointer-events: none;
  font-size: 14px;
  transition: transform 0.2s;
}

.form-select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Error message */
.form-error {
  font-size: 12px;
  color: #FF7070;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

/* Form actions */
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: #1ebe5b;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.form-note {
  font-size: 12px;
  color: rgba(139, 123, 170, 0.6);
  line-height: 1.5;
  margin-top: 4px;
}

/* Success state */
.contact-form.hidden,
.contact-form-header.hidden {
  display: none;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success[hidden] {
  display: none !important;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #25D366;
  font-weight: 700;
}

.success-title {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.success-desc {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 380px;
}

/* ── Info Column ── */
.contact-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Status badge */
.info-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 10px 18px;
  width: fit-content;
}

/* Direct channels */
.info-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.info-channel:hover {
  transform: translateY(-2px);
}

.info-channel-wa {
  border-color: rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.04);
}

.info-channel-wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.08);
}

.info-channel-email:hover {
  border-color: rgba(108, 59, 255, 0.3);
  background: rgba(108, 59, 255, 0.05);
}

.info-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.info-icon-email {
  background: rgba(108, 59, 255, 0.1);
  color: #A58BFF;
  border: 1px solid rgba(108, 59, 255, 0.18);
}

.info-channel-body {
  flex: 1;
}

.info-channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C6BFD9;
  margin-bottom: 3px;
}

.info-channel-value {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.info-channel-arrow {
  font-size: 16px;
  color: var(--c-muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.info-channel:hover .info-channel-arrow {
  transform: translateX(3px);
  color: #FFFFFF;
}

/* Location */
.info-location {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.02);
}

.info-loc-icon {
  color: #A58BFF;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-loc-name {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.info-loc-sub {
  font-size: 13px;
  line-height: 1.5;
  color: #D6D0E6;
}

/* Trust list */
.info-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  background: rgba(108, 59, 255, 0.04);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.trust-check {
  font-size: 12px;
  font-weight: 800;
  color: #A58BFF;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(108, 59, 255, 0.12);
  border: 1px solid rgba(108, 59, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social */
.info-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-social-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C6BFD9;
}

.info-social-links {
  display: flex;
  gap: 8px;
}

.info-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #C6BFD9;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.info-social-link:hover {
  color: #FFFFFF;
  border-color: rgba(108, 59, 255, 0.3);
  background: rgba(108, 59, 255, 0.06);
}

/* ── Nav active state on Hablemos button ── */
.nav-active-btn {
  box-shadow: 0 0 0 2px rgba(108, 59, 255, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 680px;
  }

  .contact-info {
    position: relative;
    top: auto;
  }

  .info-social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 100px 0 56px;
  }

  .contact-hero-title {
    font-size: 38px;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-section {
    padding: 56px 0 80px;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 32px;
  }

  .info-social-links {
    flex-direction: column;
  }

  .info-social-link {
    justify-content: center;
  }
}
