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

/* ── Hero ── */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 8% 16%, rgba(123, 93, 255, 0.13), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(212, 255, 18, 0.20), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
}

.contact-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
}

.contact-hero-orb-purple {
  width: 160px;
  height: 160px;
  left: 5%;
  top: 20%;
  background: rgba(123, 93, 255, 0.2);
}

.contact-hero-orb-lime {
  width: 120px;
  height: 120px;
  right: 9%;
  top: 14%;
  background: rgba(212, 255, 18, 0.42);
}

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

.contact-hero-content h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.12;
  color: #000000;
  margin-top: 18px;
}

/* ── Main layout ── */
.contact-main {
  padding-top: 64px;
  padding-bottom: 96px;
}

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

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 420px;
    gap: 52px;
  }
}

/* ── Form block ── */
.contact-form-block {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.05);
}

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

.contact-form-header h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  color: #000;
  margin: 0 0 8px;
}

.contact-form-header p {
  color: var(--muted);
  font-size: var(--fs-body-sm);
  margin: 0;
}

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

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-block { padding: 28px 20px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
}

.form-group .req {
  color: var(--primary-purple);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.32);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123, 93, 255, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.select-wrap select {
  padding-right: 38px;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

/* Submit button */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(123, 93, 255, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  align-self: flex-start;
}

.contact-submit-btn .arrow-icon {
  color: var(--accent-lime);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(123, 93, 255, 0.32);
}

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(123, 93, 255, 0.07);
  border: 1.5px solid rgba(123, 93, 255, 0.22);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 4px;
}

.form-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-purple);
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.form-success strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #000;
}

.form-success p {
  margin: 3px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* ── Right aside ── */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Book a call card */
.book-call-card {
  background: #000000;
  border-radius: 16px;
  padding: 36px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.book-call-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 255, 18, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.book-call-badge {
  display: inline-flex;
  margin-bottom: 18px;
}

.book-call-badge span {
  background: var(--accent-lime);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.book-call-card h2 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.book-call-card > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Bullets */
.call-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.4;
}

.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(212, 255, 18, 0.15);
  border-radius: 50%;
  color: var(--accent-lime);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Book CTA button */
.book-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-lime);
  color: #000000;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 900;
  font-family: inherit;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 12px 32px rgba(212, 255, 18, 0.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.book-call-btn:hover {
  transform: translateY(-2px);
  background: #c8f000;
  box-shadow: 0 16px 40px rgba(212, 255, 18, 0.3);
}

.book-call-btn .arrow-icon {
  color: #000;
}

.book-call-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

/* Contact info card */
.contact-info-card {
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(123, 93, 255, 0.09);
  border-radius: 8px;
  color: var(--primary-purple);
  flex-shrink: 0;
}

.contact-info-row p {
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-row a,
.contact-info-row strong {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.contact-info-row a:hover {
  color: var(--primary-purple);
}
