/* Quote page styles for packman_moving_clone/quote.html */

/* Match existing pages: hide language dropdown elements that are present in markup */
.navbar__menu_lang {
  display: none;
}

.navbar__mid > .dropdown {
  display: none;
}

.quote-page {
  background: #fff;
}

.quote-hero {
  padding: 50px 0 40px;
  background: #ffe353;
}

.quote-hero__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.quote-hero__left {
  width: 48%;
}

.quote-hero__left h1 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  color: #1c1c57;
  margin: 0 0 12px;
}

.quote-hero__left p {
  margin: 0;
  color: #1c1c57;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55;
}

.quote-hero__cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quote-hero__cta a {
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quote-hero__cta a.quote-cta-primary {
  background: #1c1c57;
  color: #fff;
}

.quote-hero__cta a.quote-cta-secondary {
  background: #fcee21;
  color: #000;
}

.quote-hero__img {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(28, 28, 87, 0.12);
}

.quote-hero__img img {
  width: 100%;
  height: auto;
  display: block;
}

.quote-methods {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-method-chip {
  border: 1px solid rgba(28, 28, 87, 0.25);
  background: rgba(255, 255, 255, 0.65);
  color: #1c1c57;
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.quote-method-chip:hover {
  background: #fff;
  transform: translateY(-1px);
}

.quote-form-card {
  width: 52%;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.quote-form-card h2 {
  margin: 0 0 16px;
  color: #1c1c57;
  font-size: 28px;
  line-height: 1.15;
}

.quote-form {
  display: block;
}

.quote-form-step {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
}

.quote-form-step__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.quote-step-number {
  color: #1c1c57;
  font-weight: 900;
}

.quote-step-title {
  color: #1c1c57;
  font-weight: 700;
}

.quote-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-check {
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 999px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.quote-check input {
  width: 16px;
  height: 16px;
}

.quote-check span {
  font-weight: 800;
  color: #1c1c57;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field label {
  font-weight: 800;
  color: #1c1c57;
  font-size: 13px;
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  color: #111;
  outline: none;
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  border-color: #1c1c57;
  box-shadow: 0 0 0 3px rgba(28, 28, 87, 0.12);
}

.quote-textarea {
  min-height: 90px;
  resize: vertical;
}

.quote-inline-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-inline-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1c1c57;
  cursor: pointer;
}

.quote-inline-check input {
  margin-top: 3px;
}

.quote-consent {
  font-size: 12px;
  line-height: 1.45;
  color: #1c1c57;
  margin: 10px 0 0;
}

.quote-consent a {
  color: #1c1c57;
  text-decoration: underline;
}

.quote-submit {
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 900;
  background: #fcee21;
  cursor: pointer;
}

.quote-submit:hover {
  filter: brightness(0.98);
}

.quote-success {
  background: #1c1c57;
  color: #fff;
  border-radius: 18px;
  padding: 18px;
}

.quote-success h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.quote-success p {
  margin: 0;
  color: #e9e9ff;
  line-height: 1.45;
}

.quote-section {
  padding: 55px 0;
}

.quote-section h2 {
  color: #1c1c57;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.quote-section .quote-section__lead {
  margin: 0 0 18px;
  color: #1c1c57;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55;
}

.quote-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quote-card {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
}

.quote-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #1c1c57;
}

.quote-card p {
  margin: 0 0 12px;
  color: #1c1c57;
  font-weight: 600;
  line-height: 1.5;
}

.quote-card a {
  text-decoration: none;
  color: #1c1c57;
  font-weight: 900;
}

.quote-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.quote-panel {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
}

.quote-bullets {
  margin: 0;
  padding-left: 18px;
  color: #1c1c57;
  font-weight: 700;
  line-height: 1.6;
}

.estimate-options {
  background: #f5f5f5;
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.estimate-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.estimate-card .estimate-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffe353;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c1c57;
  font-size: 18px;
}

.estimate-card h3 {
  margin: 0;
  font-size: 18px;
  color: #1c1c57;
}

.estimate-card p {
  margin: 0;
  color: #1c1c57;
  font-weight: 600;
  line-height: 1.5;
}

.estimate-card button {
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  background: #1c1c57;
  color: #fff;
}

.diy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.diy-col {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
}

.diy-col h3 {
  margin: 0 0 10px;
  color: #1c1c57;
}

.diy-col p {
  margin: 0;
  color: #1c1c57;
  font-weight: 600;
  line-height: 1.6;
}

.quote-line {
  margin-top: 16px;
  font-weight: 900;
  color: #1c1c57;
}

/* FAQ icon support */
.faq__question .faq__icon {
  font-size: 18px;
  color: #1c1c57;
}

@media (max-width: 1100px) {
  .quote-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .quote-hero__body {
    flex-direction: column;
  }

  .quote-hero__left,
  .quote-form-card {
    width: 100%;
  }

  .quote-hero__left h1 {
    font-size: 36px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-split {
    grid-template-columns: 1fr;
  }

  .diy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .quote-form-card {
    padding: 18px;
  }

  .quote-form-card h2 {
    font-size: 22px;
  }

  .quote-section h2 {
    font-size: 26px;
  }

  .quote-cards {
    grid-template-columns: 1fr;
  }

  .estimate-grid {
    grid-template-columns: 1fr;
  }
}
