/* ===== 720 SCANNING - QUOTE REQUEST PAGE STYLES ===== */

/* quote-request part1: Page Hero */
.page-hero-quote .page-hero-content h1 {
  margin-bottom: 16px;
}
.page-hero-quote .page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}


/* quote-request part2: Quote Form Section */

.quote-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .quote-wrapper {
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
  }
}

/* Form */
.quote-form-visual {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.quote-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.quote-form-sub {
  font-size: 0.95rem;
  margin-bottom: 28px;
  color: var(--text-light);
}

.quote-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.quote-form-group {
  margin-bottom: 16px;
}

.quote-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 97, 31, 0.1);
}

.quote-form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 4px;
}

/* Info Panel */
.quote-info-visual {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.quote-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.quote-info-sub {
  font-size: 0.95rem;
  margin-bottom: 28px;
  color: var(--text-light);
}

.quote-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.quote-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(232, 97, 31, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.quote-contact-method h4 {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 3px;
}

.quote-contact-method a,
.quote-contact-method span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark);
}

.quote-contact-method a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .quote-section {
    padding: 100px 0;
  }
  .quote-form-row {
    grid-template-columns: 1fr 1fr;
  }
}



/* quote fix: page-hero overrides for quote page */
.page-hero-quote .page-hero-bg {
  background: linear-gradient(135deg, #1A1A2E 0%, #E8611F 60%, #FF8A50 100%);
}

.page-hero-quote .page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* quote fix: quote-form-wrapper and quote-info containers */
.quote-form-wrapper {
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.quote-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.quote-form-sub {
  font-size: 0.95rem;
  margin-bottom: 28px;
  color: var(--text-light);
}

.quote-info {
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.quote-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.quote-info-sub {
  font-size: 0.95rem;
  margin-bottom: 28px;
  color: var(--text-light);
}

/* quote fix: active-quote nav highlight */
.active-quote {
  color: var(--primary) !important;
}

/* quote fix: page-hero-quote overrides */
.page-hero-quote {
  position: relative;
}

.page-hero-quote .page-hero-bg {
  background: linear-gradient(135deg, #1A1A2E 0%, #E8611F 60%, #FF8A50 100%);
}

.page-hero-quote .page-hero-content h1 {
  margin-bottom: 16px;
}

.page-hero-quote .page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
