/* ============================================================
   JAZE DIGITAL — Contact Page Styles
   ============================================================ */

.contact-hero__content {
  max-width: 680px;
}

.contact-hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.contact-hero__content p {
  font-size: var(--text-xl);
  color: rgba(196,181,253,0.8);
  line-height: 1.7;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-inner {
  max-width: 860px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.booking-header h2 {
  margin-bottom: var(--space-4);
}

.booking-header p {
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}

/* Calendly placeholder */
.calendly-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.calendly-placeholder__inner {
  padding: var(--space-16) var(--space-12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.calendly-placeholder__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-deep);
}

.calendly-placeholder__icon svg {
  width: 36px;
  height: 36px;
}

.calendly-placeholder__inner h3 {
  font-size: 1.5rem;
  color: var(--text-body);
}

.calendly-placeholder__inner > p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

.calendly-placeholder__inner code {
  background: var(--gray-100);
  color: var(--purple-deep);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.calendly-placeholder__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 480px;
  text-align: left;
}

.calendly-placeholder__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.calendly-placeholder__step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.calendly-placeholder__step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.calendly-placeholder__step strong {
  color: var(--text-body);
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-form-col h2 {
  margin-bottom: var(--space-3);
}

.contact-form-col > div > p {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-top: var(--space-3);
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-required {
  color: var(--purple-light);
}

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

.form-disclaimer {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  text-align: center;
  line-height: 1.6;
}

/* Form success */
.form-success-msg {
  background: var(--lavender-soft);
  border: 1px solid rgba(76,29,149,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--white);
}

.form-success-icon svg {
  width: 26px;
  height: 26px;
}

.form-success-msg h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--text-body);
}

.form-success-msg p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

/* Info card */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.contact-info-card h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
}

a.contact-info-value:hover {
  color: var(--purple-deep);
}

/* Expect card */
.contact-expect-card {
  background: var(--near-black);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.contact-expect-card h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--dark-border);
}

.contact-expect-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.contact-expect-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-expect-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(196,181,253,0.15);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-expect-list li p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.contact-expect-footer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--lavender);
  padding-top: var(--space-4);
  border-top: 1px solid var(--dark-border);
}

.contact-expect-footer svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   MULTI-STEP FUNNEL
   ============================================================ */
.funnel-progress {
  margin-bottom: var(--space-8);
}

.funnel-progress__bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-2);
}

.funnel-progress__fill {
  height: 100%;
  background: var(--purple-deep);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.funnel-progress__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funnel-step h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-6);
  color: var(--text-body);
}

.funnel-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.funnel-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.funnel-option:hover {
  border-color: var(--purple-light);
  background: var(--lavender-soft);
  transform: translateY(-1px);
}

.funnel-option:active {
  transform: translateY(0);
}

.funnel-fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* ============================================================
   CONTACT RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .calendly-placeholder__inner {
    padding: var(--space-10) var(--space-6);
  }
}
