/* ================================================================
   Mon Salon — Contact Page Styles (Futuristic)
   ================================================================ */

/* ── Hero ──────────────────────────────────────────────────────── */
.contact-hero {
  position: relative; min-height: 45vh; display: flex; align-items: center;
  justify-content: center; padding: 140px 0 60px; overflow: hidden;
}
.contact-hero-content {
  position: relative; z-index: 2; text-align: center;
}
.contact-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--slate-900); margin-bottom: 16px;
}
.contact-hero-subtitle {
  font-size: 18px; color: var(--slate-500); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

/* ── Contact Section ──────────────────────────────────────────── */
.contact-section {
  padding: 80px 0 60px; margin-top: -40px; position: relative; z-index: 3;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 1000px; margin: 0 auto; align-items: start;
}

/* ── Contact Form Card ────────────────────────────────────────── */
.contact-form-card {
  background: white; border-radius: var(--radius-xl); padding: 44px 36px;
  border: 1px solid var(--slate-200); position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
}

.contact-form-title {
  font-family: 'Inter', sans-serif; font-size: 22px;
  color: var(--slate-900); margin-bottom: 8px;
}
.contact-form-desc {
  font-size: 14px; color: var(--slate-500); margin-bottom: 32px; line-height: 1.6;
}

/* ── Profile Selector (Pro / Client) ─────────────────────────── */
.contact-profile-selector {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.contact-profile-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 20px; border-radius: var(--radius-lg);
  border: 2px solid var(--slate-200); background: white;
  font-size: 14px; font-weight: 600; color: var(--slate-500);
  cursor: pointer; transition: all var(--transition); position: relative;
  overflow: hidden;
}
.contact-profile-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  opacity: 0; transition: opacity var(--transition);
}
.contact-profile-btn:hover {
  border-color: var(--brand-300); color: var(--brand-600);
}
.contact-profile-btn.active {
  border-color: var(--brand-500); color: var(--brand-600);
  background: var(--brand-50); box-shadow: 0 0 0 3px rgba(85,129,72,0.1);
}
.contact-profile-btn.active::before { opacity: 1; }
.contact-profile-btn svg,
.contact-profile-btn span,
.contact-profile-btn div { position: relative; z-index: 1; }

.contact-profile-icon {
  width: 40px; height: 40px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--transition);
}
.contact-profile-btn:not(.active) .contact-profile-icon {
  background: var(--slate-100);
}
.contact-profile-btn.active .contact-profile-icon {
  background: var(--brand-200);
}
.contact-profile-label {
  text-align: left;
}
.contact-profile-label strong {
  display: block; font-size: 14px; margin-bottom: 2px;
}
.contact-profile-label small {
  font-size: 11px; font-weight: 400; opacity: 0.7;
}

/* ── Form Fields ──────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { position: relative; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--slate-700); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-200); background: var(--slate-50);
  font-size: 14px; color: var(--slate-800); transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-400); background: white;
  box-shadow: 0 0 0 4px rgba(85,129,72,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ── Subject chips ────────────────────────────────────────────── */
.subject-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px;
}
.subject-chip {
  padding: 8px 16px; border-radius: var(--radius-full);
  border: 1.5px solid var(--slate-200); background: white;
  font-size: 13px; font-weight: 500; color: var(--slate-500);
  cursor: pointer; transition: all var(--transition);
}
.subject-chip:hover {
  border-color: var(--brand-300); color: var(--brand-600);
}
.subject-chip.active {
  border-color: var(--brand-500); background: var(--brand-50);
  color: var(--brand-600);
}

/* ── Submit Button ────────────────────────────────────────────── */
.contact-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white; font-weight: 600; font-size: 15px; border: none;
  cursor: pointer; transition: all var(--transition); width: 100%;
  box-shadow: 0 4px 24px rgba(85,129,72,0.3);
  position: relative; overflow: hidden;
}
.contact-submit::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  opacity: 0; transition: opacity var(--transition);
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(85,129,72,0.4);
}
.contact-submit:hover::after { opacity: 1; }
.contact-submit svg,
.contact-submit span { position: relative; z-index: 1; }

/* ── Success state ────────────────────────────────────────────── */
.contact-success {
  display: none; text-align: center; padding: 40px 20px;
}
.contact-success.show { display: block; }
.contact-success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green-500), #10B981);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(16,185,129,0.3);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
  0% { transform: scale(0); } 100% { transform: scale(1); }
}
.contact-success h3 {
  font-family: 'Inter', sans-serif; font-size: 22px;
  color: var(--slate-900); margin-bottom: 10px;
}
.contact-success p {
  font-size: 14px; color: var(--slate-500); line-height: 1.7;
}

/* ── Info Cards (right column) ────────────────────────────────── */
.contact-info {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-info-card {
  background: white; border-radius: var(--radius-xl); padding: 28px;
  border: 1px solid var(--slate-100); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.contact-info-card:hover {
  border-color: var(--brand-200);
  box-shadow: 0 8px 32px rgba(85,129,72,0.06);
  transform: translateY(-2px);
}
.contact-info-card-icon {
  width: 48px; height: 48px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.contact-info-card-icon.pink { background: var(--brand-100); }
.contact-info-card-icon.green { background: var(--green-50); }
.contact-info-card-icon.blue { background: #EFF6FF; }
.contact-info-card-icon.amber { background: var(--amber-50); }

.contact-info-card h3 {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 14px; color: var(--slate-500); line-height: 1.6;
}
.contact-info-card a {
  color: var(--brand-600); font-weight: 600; text-decoration: none;
  transition: color var(--transition);
}
.contact-info-card a:hover { color: var(--brand-700); }

/* ── Glow orbs (futuristic) ───────────────────────────────────── */
.contact-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.contact-orb-1 {
  width: 400px; height: 400px; background: rgba(85,129,72,0.06);
  top: 200px; left: -100px;
}
.contact-orb-2 {
  width: 300px; height: 300px; background: rgba(59,130,246,0.05);
  bottom: 100px; right: -50px;
}
.contact-orb-3 {
  width: 250px; height: 250px; background: rgba(16,185,129,0.05);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

/* ── FAQ Mini ─────────────────────────────────────────────────── */
.contact-faq {
  padding: 80px 0; background: white;
}
.contact-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 900px; margin: 40px auto 0;
}
.contact-faq-item {
  background: var(--slate-50); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--slate-100); transition: all var(--transition);
}
.contact-faq-item:hover {
  border-color: var(--brand-200);
  box-shadow: 0 4px 20px rgba(85,129,72,0.06);
}
.contact-faq-item h3 {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--slate-900); margin-bottom: 8px;
}
.contact-faq-item p {
  font-size: 13px; color: var(--slate-500); line-height: 1.7;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 520px; }
  .contact-form-card { padding: 32px 24px; }
  .contact-hero { padding: 120px 0 50px; min-height: auto; }
  .contact-hero-content h1 { font-size: 2rem; }
  .contact-profile-selector { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form-card { padding: 24px 18px; }
  .contact-hero-subtitle { font-size: 15px; padding: 0 24px; }
  .subject-chips { gap: 6px; }
  .subject-chip { padding: 6px 12px; font-size: 12px; }
}
