/* ==========================================================================
   Homecoming Movers - Get A Quote Page Stylesheet (get_quote.css)
   ========================================================================== */

/* Banner Section */
.quote-banner {
  position: relative;
  background-image: url('../images/contact_banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 150px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.quote-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 27, 61, 0.75) 0%,
    rgba(11, 27, 61, 0.85) 100%
  );
  z-index: 1;
}

.quote-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
}

.quote-breadcrumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.quote-breadcrumbs .breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.quote-breadcrumbs .breadcrumb-link:hover {
  color: var(--accent-orange, #FF6600);
}

.quote-breadcrumbs .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
}

.quote-breadcrumbs .breadcrumb-current {
  color: var(--accent-orange, #FF6600);
  font-weight: 600;
}

.quote-banner-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.quote-banner-divider {
  width: 60px;
  height: 3.5px;
  background-color: var(--accent-orange, #FF6600);
  margin: 15px auto;
  border-radius: 5px;
}

.quote-banner-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Quote Section Background & Container */
.quote-section {
  position: relative;
  background-image: url('../images/truck_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0 90px 0;
}

.quote-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.quote-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11, 27, 61, 0.08);
  border: 1px solid rgba(203, 213, 225, 0.6);
  padding: 40px 45px;
  transition: all 0.3s ease;
}

.quote-header-title {
  color: var(--primary-navy, #0B1B3D);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.quote-header-sub {
  color: var(--text-muted, #64748B);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* Form Group & Control Styles matching prompt images */
.quote-form-group {
  margin-bottom: 22px;
}

.quote-form-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1D2A68; /* Distinct navy color matching the prompt images */
  margin-bottom: 8px;
}

.quote-form-label .required-star {
  color: #DC2626;
  margin-left: 3px;
}

.quote-form-control,
.quote-form-select {
  width: 100%;
  height: 50px;
  padding: 10px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1E293B;
  background-color: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

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

/* Radio Group for Preferred Contact Method */
.quote-radio-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 50px;
}

.quote-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1E293B;
  cursor: pointer;
  user-select: none;
}

.quote-radio-input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-orange, #FF6600);
  cursor: pointer;
}

.quote-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C%231D2A68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
  padding-right: 42px;
}

.quote-form-control:focus,
.quote-form-select:focus {
  outline: none;
  border-color: #1D2A68;
  box-shadow: 0 0 0 3px rgba(29, 42, 104, 0.15);
}

.quote-form-control::placeholder {
  color: #9CA3AF;
}

/* Date picker customization */
input[type="date"].quote-form-control {
  color: #1E293B;
}

/* Submit Button Styling */
.quote-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  height: 54px;
  background-color: var(--accent-orange, #FF6600);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
}

.quote-submit-btn:hover {
  background-color: var(--accent-orange-hover, #E55C00);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 102, 0, 0.35);
  color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .quote-card {
    padding: 24px 20px;
  }
  
  .quote-form-group {
    margin-bottom: 18px;
  }

  .quote-form-control,
  .quote-form-select {
    height: 46px;
    font-size: 0.95rem;
  }

  .quote-submit-btn {
    max-width: 100%;
  }
}

/* Google Place Autocomplete Dropdown Styling */
.pac-container {
  border-radius: 8px;
  border: 1.5px solid #D1D5DB;
  box-shadow: 0 10px 25px rgba(11, 27, 61, 0.1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 4px;
  background-color: #FFFFFF;
  z-index: 9999;
}

.pac-item {
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #4B5563;
  cursor: pointer;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
}

.pac-item:hover {
  background-color: #F8FAFC;
}

.pac-item-query {
  font-size: 0.95rem;
  color: #1E293B;
  font-weight: 600;
}

.pac-matched {
  color: #FF6600; /* Theme Orange color */
  font-weight: 700;
}

.pac-icon {
  margin-right: 8px;
}

