/* quote.css */

/* Base Styling */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e20074, #9e0051);
  min-height: 100vh;
  padding: 40px;
  background-image: url("../images/magenta-paw-pattern.png") !important;
  background-repeat: repeat;
  background-size: 1000px;
  background-attachment: fixed;
  color: #333;
}

/* Container */
.container-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 6px 32px rgba(226, 0, 116, 0.08);
  max-width: 1000px;
  margin: 30px auto 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .container-box {
    padding: 20px;
  }
  .guarantee-box {
    margin-top: 20px;
  }
  .calendar-options {
    flex-direction: column;
  }
}

/* Quote Form */
#quoteForm .form-label {
  font-weight: 500;
}
#quoteForm input[type="text"],
#quoteForm input[type="tel"],
#quoteForm input[type="email"] {
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
}

.slider-container {
  margin-bottom: 1rem;
}
.slider-steps {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.2rem;
}

/* Range (Dog Count) */
#dogsRange {
  width: 100%;
  accent-color: #e20074;
}
#dogEmoji {
  position: absolute;
  top: -28px;
  left: 0;
  font-size: 2rem;
  transition: left 0.25s;
  z-index: 10;
}

/* Frequency Buttons */
.calendar-options {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.calendar-btn {
  flex: 1;
  background: #f8f8fa;
  border-radius: 12px;
  border: 2px solid #eaeaea;
  padding: 8px 0;
  font-weight: 600;
  text-align: center;
  color: #e20074;
  cursor: pointer;
  transition: all 0.2s;
}
.calendar-btn.active,
.calendar-btn:hover {
  background: #e20074;
  color: #fff;
  border-color: #e20074;
}

/* CTA Button */
.btn-main,
.btn-cta {
  display: inline-block;
  background: #e20074;
  color: #fff !important;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 26px;
  border: none;
  box-shadow: 0 2px 10px rgba(226, 0, 116, 0.07);
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
}
.btn-main:hover,
.btn-cta:hover {
  background: #9e0051;
  color: #fff !important;
  text-decoration: none;
}

/* Success Card */
.success-card {
  background: #fff0f6;
  border-radius: 16px;
  box-shadow: 0 3px 24px rgba(226, 0, 116, 0.13);
  padding: 36px 24px;
  margin-top: 48px;
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.success-card h2 {
  color: #e20074;
  font-size: 2rem;
  margin-bottom: 10px;
}
.success-card .highlight {
  color: #e20074;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Result Box */
.result-box {
  background: linear-gradient(135deg, #e20074 60%, #fff 120%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(226, 0, 116, 0.11);
  padding: 32px 24px;
  margin-top: 24px;
  text-align: center;
}
.result-box h4 {
  font-weight: bold;
  color: #fff;
}
.result-box p {
  font-size: 1.18rem;
  margin: 1.1em 0 1em 0;
}

/* Guarantee Box */
.guarantee-box {
  background: #fff;
  border-radius: 20px;
  padding: 26px 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(150, 0, 80, 0.07);
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.icon-circle {
  width: 44px;
  height: 44px;
  background: #fff0f6;
  color: #e20074;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 1px 6px rgba(226, 0, 116, 0.07);
}

@media (max-width: 768px) {
  .success-card,
  .result-box,
  .guarantee-box {
    padding: 16px 8px;
  }
}

/* Checkbox, form, links */
.form-check-label a {
  color: #e20074;
  text-decoration: underline;
}
.form-check-input:checked {
  background-color: #e20074;
  border-color: #e20074;
}

/* Utilities */
.text-center {
  text-align: center;
}
.fw-bold {
  font-weight: bold;
}
.mt-3 {
  margin-top: 1rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.gap-3 {
  gap: 1rem;
}
.d-block {
  display: block;
}
.fst-italic {
  font-style: italic;
}
