.photo-estimate-cta {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.photo-estimate-cta .photo-estimate-cta-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.photo-estimate-cta .photo-estimate-cta-card {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.photo-estimate-cta .photo-estimate-cta-title {
  margin: 0 0 12px 0;
  color: #fff;
}

.photo-estimate-cta .photo-estimate-cta-text {
  margin: 0 auto 24px auto;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.95);
}

.photo-estimate-cta .photo-estimate-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.photo-estimate-cta .photo-estimate-cta-button {
  width: 100%;
  max-width: 420px;
}

@media (min-width: 640px) {
  .photo-estimate-cta .photo-estimate-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .photo-estimate-cta .photo-estimate-cta-button {
    width: auto;
    max-width: none;
  }
}

