.estimate-page {
  padding: 0 0 5rem;
  background: #ffffff;
}

.estimate-header-wrap {
  background: #f3f4f6;
  background-image: url("/static/home/assets/img/portfolio/1.jpg");
  background-size: cover;
  background-position: center;
}



.estimate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 5.2rem 0;
}

.estimate-header__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.estimate-header__rule {
  display: inline-block;
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.35);
  margin-bottom: 0.7rem;
}

.estimate-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
}

.estimate-header__crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(107, 114, 128, 0.9);
  white-space: nowrap;
}

.estimate-header__crumb .crumb-link {
  color: inherit;
  text-decoration: none;
}

.estimate-header__crumb .crumb-link:hover {
  color: #111827;
}

.estimate-header__crumb .crumb-current {
  color: rgba(17, 24, 39, 0.8);
}

.estimate-meta {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(107, 114, 128, 0.85);
  margin-bottom: 0.45rem;
}

.estimate-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.4rem 0;
}

.estimate-subtitle {
  margin: 0;
  color: #6b7280;
}

.estimate-form {
  border-top: 1px solid #e5e7eb;
}

.estimate-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #e5e7eb;
  min-height: 72px;
}

.estimate-row:last-child {
  border-bottom: none;
}

.estimate-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111827;
  background: #ffffff;
}

.estimate-field {
  padding: 16px 20px;
  display: flex;
  align-items: center;
}

.estimate-input,
.estimate-textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.estimate-textarea {
  min-height: 200px;
  resize: vertical;
}

.estimate-row--message .estimate-field {
  align-items: stretch;
}

.estimate-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.estimate-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(12px);
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1050;
  font-size: 0.95rem;
}

.estimate-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.estimate-toast.is-error {
  background: #b91c1c;
}

.estimate-submit {
  background: #1f2937;
  color: #fff;
  padding: 0.7rem 2.4rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
}

.estimate-submit:hover {
  background: #111827;
  color: #fff;
}


@media (max-width: 768px) {
  .estimate-row {
    grid-template-columns: 1fr;
  }

  .estimate-label {
    justify-content: flex-start;
    padding: 12px 16px;
    background: #f9fafb;
  }

  .estimate-field {
    padding: 12px 16px 18px;
  }
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:14px 22px;
  border-radius:999px;

  background:#111827;
  color:#fff;
  text-decoration:none;
  font-weight:700;

  box-shadow:0 10px 22px rgba(0,0,0,.14);
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.cta-btn i{ font-size:18px; }
.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}
