/* Breadcrumb Section */
.breadcrumb-section {
  position: relative;
  height: 287px;
  background-image: url('../assets/18.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
  opacity: 0.3;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1400px;
  width: 100%;
  padding: 0 24px;
}

.page-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  font-size: 34px;
  color: #0c121d;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px;
}

.breadcrumb-nav li {
  color: #5e5e5e;
}

.breadcrumb-nav li a {
  color: #5e5e5e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav li a:hover {
  color: #2dc457;
}

.breadcrumb-nav li.active {
  color: #5e5e5e;
}

.breadcrumb-nav .separator img {
  width: 6px;
  height: 9px;
}

/* Quote Main Section */
.quote-main-section {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

/* Form Container */
.quote-form-container {
  background: #fbfbfb;
  border-top: 6px solid #2dc457;
  border-radius: 5px;
  padding: 60px 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-header {
  margin-bottom: 50px;
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #323c45;
  margin-bottom: 15px;
  line-height: 1.2;
}

.form-title span {
  color: #38c760;
}

.form-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #323c45;
  margin: 0;
  line-height: 1.6;
}

/* Form Section */
.form-section {
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #323c45;
  margin-bottom: 8px;
  line-height: 1.7;
}

.title-underline {
  width: 100%;
  max-width: 160px;
  height: 2px;
  background: #2dc457;
  margin-bottom: 30px;
}

/* Form Labels */
.form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0c121d;
  margin-bottom: 10px;
  display: block;
}

.form-label .required {
  color: #2dc457;
  margin-left: 2px;
}

/* Form Inputs */
.quote-input {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid rgba(98, 94, 88, 0.2);
  border-radius: 5px;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #323c45;
  transition: all 0.3s ease;
}

.quote-input:focus {
  outline: none;
  border-color: #2dc457;
  box-shadow: 0 0 0 3px rgba(45, 196, 87, 0.1);
  background: #ffffff;
}

.quote-input::placeholder {
  color: #999999;
}

/* Select Dropdown Arrow */
.form-select.quote-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  appearance: none;
  padding-right: 45px;
}

.form-select.quote-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232dc457' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-check-input {
  width: 15px;
  height: 15px;
  border: 1px solid #767676;
  border-radius: 5px;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #2dc457;
  border-color: #2dc457;
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 196, 87, 0.1);
}

.form-check-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0c121d;
  cursor: pointer;
  margin: 0;
  user-select: none;
}

/* Submit Button */
.btn-submit-quote {
  width: 174px;
  height: 55px;
  background: #2dc457;
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.btn-submit-quote:hover {
  background: #26a849;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 196, 87, 0.3);
}

.btn-submit-quote:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .quote-form-container {
    padding: 40px 30px;
  }

  .form-title {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .page-title {
    font-size: 28px;
  }

  .breadcrumb-section {
    height: 220px;
  }

  .btn-submit-quote {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .quote-form-container {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .quote-main-section {
    padding: 50px 0 70px;
  }
}
