/* Quote confirm page styles */
:root { --green-deep: #1B3A2D; --green-mid: #2D5240; --cream: #F5F2ED; --amber: #C4963E; --text-dark: #1A1A18; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); margin: 0; }

.qc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: var(--green-deep);
}

.qc-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 3rem;
}

.qc-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.qc-icon {
  width: 72px;
  height: 72px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--cream);
}

.qc-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.qc-sub {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.qc-body {
  font-size: 0.9rem;
  color: #4A4A46;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.qc-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.qc-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}

.qc-contact-link:hover { background: var(--green-mid); }

.qc-back {
  display: inline-block;
  font-size: 0.85rem;
  color: #7A7A72;
  text-decoration: none;
}

.qc-back:hover { color: var(--green-deep); }