/* ─────────────────────────────────────────
   SELL.CSS — Valuation page specific styles
───────────────────────────────────────── */

.sell-hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sell-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(92,64,51,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 30%, rgba(107,140,107,0.1) 0%, transparent 60%),
    var(--cream);
  z-index: 0;
}

.sell-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}

.sell-hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--brown);
  margin: 16px 0 20px;
  line-height: 1.15;
}

.sell-hero-text h1 em { font-style: italic; color: var(--sage-dark); }

.sell-hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 28px;
}

.sell-trust-row { display: flex; flex-direction: column; gap: 10px; }

.sell-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.sell-trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FORM CARD ── */
.sell-form-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(92,64,51,0.14);
  overflow: hidden;
  position: sticky;
  top: 88px;
}

.sell-form-header {
  background: var(--sage-dark);
  padding: 24px 28px;
}

.sell-form-header h2 { font-size: 1.25rem; color: var(--white); margin-bottom: 4px; }
.sell-form-header p { font-size: 13px; color: rgba(255,255,255,0.7); }

.sell-form {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

label { font-size: 12px; font-weight: 500; color: var(--text-mid); letter-spacing: 0.02em; }

.optional { font-weight: 400; color: var(--text-light); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--text-light); }

input:focus, select:focus, textarea:focus {
  border-color: var(--sage-dark);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7B74' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

.form-submit { width: 100%; padding: 14px; font-size: 15px; border-radius: var(--radius-sm); margin-top: 4px; }

.form-disclaimer { font-size: 11px; color: var(--text-light); text-align: center; line-height: 1.5; }

/* ── SUCCESS STATE ── */
.form-success {
  padding: 40px 28px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage-dark);
  font-size: 22px; display: flex; align-items: center; justify-content: center;
}

.form-success h3 { font-size: 1.3rem; color: var(--brown); }
.form-success p { font-size: 14px; color: var(--text-mid); line-height: 1.6; max-width: 300px; }

/* ── DIRECT CONTACT ── */
.direct-contact {
  background: var(--cream-dark);
  padding: 28px 0;
  border-top: 1px solid var(--brown-pale);
  border-bottom: 1px solid var(--brown-pale);
}

.direct-contact-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.direct-label { font-size: 13px; color: var(--text-light); white-space: nowrap; font-style: italic; }

.direct-options { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.direct-option {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; transition: opacity 0.15s;
}
.direct-option:hover { opacity: 0.75; }

.direct-icon { font-size: 18px; line-height: 1; }
.direct-option strong { display: block; font-size: 13px; font-weight: 500; color: var(--text-dark); }
.direct-option span { display: block; font-size: 14px; color: var(--sage-dark); font-weight: 500; }

.direct-divider { width: 1px; height: 36px; background: var(--brown-pale); }

/* ── WHY US ── */
.why-us { padding: 100px 0; background: var(--cream); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.6rem; line-height: 1; }
.why-card h4 { font-size: 1rem; color: var(--brown); }
.why-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--white); }

.faq-inner { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }

.faq-text h2 { font-size: 1.7rem; color: var(--brown); margin-top: 12px; line-height: 1.3; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--cream-dark); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--sage-dark); }

.faq-arrow { font-size: 16px; color: var(--text-light); transition: transform 0.25s; flex-shrink: 0; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.7; padding-bottom: 18px; }

.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; }

.nav-links .active { color: var(--sage-dark) !important; font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .sell-hero-inner { grid-template-columns: 1fr; }
  .sell-form-wrap { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .direct-contact-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
