/* Teklif Al Sayfası CSS */

.quote-page {
  padding: 60px 0;
  background: linear-gradient(180deg, #f9fafd 0%, #ffffff 100%);
}

.quote-page .section-header {
  margin-bottom: 10px;
}

.quote-page .section-desc {
  text-align: center;
  color: #666666;
  margin: 0 auto 40px;
}

/* Form Container */
.quote-form-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
  overflow: visible;
}

.quote-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f35444, #ff7b6b);
}

/* Form Steps */
.form-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.step {
  display: flex;
  align-items: center;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, #f35444, #ff7b6b);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(243, 84, 68, 0.35);
}

.step.completed .step-number {
  background: #00ac00;
  color: #ffffff;
}

.step-label {
  margin-left: 10px;
  font-weight: 500;
  color: #666666;
  font-size: 14px;
}

.step.active .step-label { color: #f35444; }
.step.completed .step-label { color: #00ac00; }

.step-line {
  width: 60px;
  height: 3px;
  background: #e9ecef;
  margin: 0 15px;
  position: relative;
}

.step-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #00ac00;
  transition: width 0.3s ease;
}

.step-line.completed::after { width: 100%; }

/* Form Sections */
.form-section { display: none; }
.form-section.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Title */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 20px;
  text-align: center;
}

.section-title .icon {
  color: #f35444;
  margin-right: 8px;
}

/* Form Groups */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.form-group label small {
  color: #718096;
  font-weight: 400;
  margin-left: 4px;
}

.form-group .required { 
  color: #f35444; 
  font-weight: 700;
}

/* Form Controls */
.form-control {
  width: 100%;
  height: 48px;
  border: 2px solid #dce0e5;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}

.form-control::placeholder {
  color: #999;
}

.form-control:hover {
  border-color: #c5cad1;
}

.form-control:focus {
  border-color: #f35444;
  box-shadow: 0 0 0 3px rgba(243, 84, 68, 0.12), inset 0 1px 3px rgba(0,0,0,0.04);
  outline: none;
  background: #ffffff;
}

textarea.form-control {
  height: auto;
  min-height: 80px;
  resize: vertical;
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
}

.select-wrapper select.form-control {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
  color: #333333;
}

.select-wrapper .select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 12px;
}

/* Select Styling */
select.form-control {
  background-color: #ffffff;
  color: #333333;
  cursor: pointer;
}

select.form-control option {
  padding: 12px;
  color: #333333;
  background: #ffffff;
}

select.form-control optgroup {
  font-weight: 600;
  color: #222222;
  background: #f5f5f5;
}

/* Package Options */
.package-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.package-option {
  cursor: pointer;
}

.package-option input {
  position: absolute;
  opacity: 0;
}

.package-card {
  background: #fafafa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: #f35444;
  transform: translateY(-3px);
}

.package-option input:checked + .package-card {
  border-color: #f35444;
  background: linear-gradient(135deg, rgba(243, 84, 68, 0.03), rgba(255, 123, 107, 0.03));
  box-shadow: 0 8px 25px rgba(243, 84, 68, 0.15);
}

.package-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f35444, #ff7b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.package-card .icon-box i {
  font-size: 20px;
  color: #ffffff;
}

.package-card .name {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 6px;
}

.package-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #00ac00;
}

.package-card .price-from {
  display: block;
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

/* Feature Options */
.feature-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.feature-option {
  cursor: pointer;
}

.feature-option input {
  position: absolute;
  opacity: 0;
}

.feature-card {
  background: #fafafa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-card:hover { border-color: #f35444; }

.feature-option input:checked + .feature-card {
  border-color: #f35444;
  background: rgba(243, 84, 68, 0.03);
}

.feature-card .check-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-option input:checked + .feature-card .check-box {
  background: #f35444;
  border-color: #f35444;
}

.feature-card .check-box i {
  color: #ffffff;
  font-size: 11px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.feature-option input:checked + .feature-card .check-box i {
  opacity: 1;
  transform: scale(1);
}

.feature-card .feature-info {
  display: flex;
  flex-direction: column;
}

.feature-card .feature-name {
  font-weight: 500;
  color: #333333;
  font-size: 14px;
}

.feature-card .feature-info small {
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}

/* Extra Price */
.extra-price {
  background: #00ac00;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}

/* Budget Section */
.budget-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f6f8 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #eaedf0;
}

.budget-section label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.budget-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.budget-input {
  width: 130px !important;
  min-width: 130px;
  max-width: 130px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: #f35444 !important;
  border: 2px solid #f35444 !important;
  background: #fff !important;
}

.budget-input:focus {
  box-shadow: 0 0 0 3px rgba(243, 84, 68, 0.15) !important;
}

.budget-bar-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.budget-bar {
  height: 12px;
  background: #e5e8eb;
  border-radius: 6px;
  position: relative;
  overflow: visible;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.budget-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f35444 0%, #ff7b6b 50%, #00ac00 100%);
  border-radius: 6px;
  transition: width 0.35s ease;
  box-shadow: 0 2px 6px rgba(243, 84, 68, 0.3);
}

.budget-marker {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid #f35444;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: left 0.35s ease;
  z-index: 2;
  cursor: help;
}

.budget-marker::after {
  content: '★';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #f35444;
}

.budget-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #888;
  font-size: 11px;
}

.budget-label-min,
.budget-label-max {
  font-weight: 600;
  color: #666;
}

/* Example Sites */
.example-sites-section {
  margin-bottom: 15px;
}

.example-sites-section label {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.example-site-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.example-site-row input { flex: 1; }

.btn-remove-site {
  width: 48px;
  border: none;
  background: #ff4444;
  color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-remove-site:hover { background: #cc0000; }

.btn-add-site {
  background: transparent;
  border: 2px dashed #ddd;
  color: #888;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
}

.btn-add-site:hover {
  border-color: #f35444;
  color: #f35444;
}

.btn-add-site i { margin-right: 6px; }

/* Request Textarea */
.request-textarea {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

/* Contact Preference */
.contact-preference {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.preference-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff9f7;
  border: 1px solid #ffe2dc;
  border-radius: 10px;
  padding: 10px 12px;
  transition: all 0.2s ease;
}

.preference-option input {
  accent-color: #f35444;
  width: 16px;
  height: 16px;
}

.preference-option span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.preference-option i { color: #f35444; }

.preference-option:hover {
  border-color: #f35444;
  box-shadow: 0 6px 16px rgba(243, 84, 68, 0.12);
}

/* Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 15px;
}

.btn-prev, .btn-next, .btn-submit {
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-prev {
  background: #e9ecef;
  color: #666666;
}

.btn-prev:hover {
  background: #ddd;
  transform: translateX(-3px);
}

.btn-next {
  background: linear-gradient(135deg, #f35444, #ff7b6b);
  color: #ffffff;
  margin-left: auto;
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 84, 68, 0.35);
}

.btn-submit {
  background: linear-gradient(135deg, #00ac00, #00d100);
  color: #ffffff;
  margin-left: auto;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 172, 0, 0.35);
}

.btn-next i, .btn-submit i { margin-left: 8px; }
.btn-prev i { margin-right: 8px; }

/* Contact Sidebar */
.contact-sidebar {
  background: linear-gradient(135deg, #020f40, #0a1a5c);
  border-radius: 16px;
  padding: 30px;
  color: #ffffff;
  height: 100%;
}

.contact-sidebar .title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-sidebar .turuncu { color: #f35444; }

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-info-item .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f35444, #ff7b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-item .icon-box i {
  font-size: 16px;
  color: #ffffff;
}

.contact-info-item .label {
  font-size: 12px;
  color: #7b8399;
  margin-bottom: 2px;
}

.contact-info-item .value {
  font-size: 14px;
  font-weight: 500;
}

.contact-info-item .value a {
  color: #ffffff;
}

.contact-info-item .value a:hover { color: #f35444; }

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #f35444;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Why Us Box */
.why-us-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.why-us-box h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-us-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-us-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.why-us-box ul li i {
  color: #00ac00;
  font-size: 11px;
}

/* Packages Button */
.btn-packages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 20px;
  background: linear-gradient(135deg, #f35444, #ff7b6b);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-packages:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(243, 84, 68, 0.35);
  color: #ffffff;
  text-decoration: none;
}

/* Packages Button */
.btn-packages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 20px;
  background: linear-gradient(135deg, #f35444, #ff7b6b);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-packages:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(243, 84, 68, 0.4);
  color: #ffffff;
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .package-options { grid-template-columns: 1fr; }
  .feature-options { grid-template-columns: 1fr; }
  .quote-form-container { padding: 30px 20px; }
  .contact-sidebar { margin-top: 30px; }
}

@media screen and (max-width: 767px) {
  .quote-page { 
    padding: 20px 0; 
  }
  
  .quote-form-container { 
    padding: 20px 15px !important; 
    margin: 0 10px;
  }
  
  .form-steps {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
  }
  
  .step-line {
    width: 30px;
    height: 3px;
    margin: 0 8px;
    flex-shrink: 0;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .step-label { display: none; }
  
  .form-buttons { 
    flex-direction: column; 
    gap: 10px;
  }
  
  .btn-prev, .btn-next, .btn-submit {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .btn-prev { order: 2; }
  .btn-next, .btn-submit { order: 1; margin-left: 0; }
  
  .section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .package-card {
    padding: 12px 10px;
  }
  
  .feature-card {
    padding: 10px 10px;
  }
  
  .contact-sidebar {
    padding: 16px 12px;
  }
  
  .budget-display {
    font-size: 24px;
  }
  
  .example-site-row {
    flex-direction: column;
  }
  
  .btn-remove-site {
    width: 100%;
    margin-top: 5px;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-group label {
    margin-bottom: 4px;
    font-size: 13px;
  }
}

/* Telefon Input Stilleri */
.phone-input-wrapper .input-group {
  display: flex;
}

.phone-input-wrapper .country-code {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  font-size: 14px;
  padding: 8px 14px 8px 12px;
  min-width: 180px;
  max-width: 200px;
}

.phone-input-wrapper .country-code:focus {
  border-color: #f35444;
  box-shadow: none;
}

.phone-input-wrapper .custom-country-code {
  border-radius: 0 !important;
  border-right: none;
  font-size: 14px;
  padding: 8px 10px;
  text-align: center;
  min-width: 70px;
  max-width: 70px;
}

.phone-input-wrapper .custom-country-code:focus {
  border-color: #f35444;
  box-shadow: none;
}

.phone-input-wrapper #phone {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Şehir Dropdown Stilleri */
.city-select-wrapper {
  position: relative;
  z-index: 5;
}

.city-input {
  width: 100%;
  padding-right: 40px;
}

.city-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 5px;
  padding: 10px;
}

.city-dropdown .city-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.city-dropdown .city-option:last-child {
  border-bottom: none;
}

.city-dropdown .city-option:hover {
  background: #f8f9fa;
  color: #f35444;
}

.city-dropdown .city-option:active {
  background: #f35444;
  color: #ffffff;
}

.city-no-result {
  text-align: center;
  padding: 12px;
  color: #999;
  font-size: 13px;
}

.city-select-wrapper .select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-form-container {
    padding: 18px 12px !important;
    margin: 0 4px;
    overflow: hidden;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .section-title small {
    display: block;
    margin-top: 4px;
    font-size: 11px !important;
  }

  .form-steps {
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 16px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .step-label {
    display: none;
  }

  .step-line {
    width: 20px;
    margin: 0 4px;
  }

  .form-buttons {
    margin-top: 14px;
    gap: 10px;
  }

  .btn-prev, .btn-next, .btn-submit {
    padding: 10px 12px;
    font-size: 14px;
  }

  .contact-preference {
    gap: 6px;
  }

  .preference-option {
    padding: 8px 10px;
    font-size: 13px;
  }

  /* Dropdown ve select düzeltmeleri */
  .form-control {
    font-size: 14px;
    height: 44px;
    padding: 8px 12px;
  }

  select.form-control {
    font-size: 13px;
    padding-right: 32px;
  }

  .select-wrapper {
    max-width: 100%;
    overflow: hidden;
  }

  .select-wrapper select.form-control {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  /* Telefon input düzeltmeleri */
  .phone-input-wrapper .input-group {
    flex-wrap: nowrap;
  }

  .phone-input-wrapper .country-code {
    font-size: 11px;
    padding: 8px 4px;
    min-width: 100px;
    max-width: 120px;
  }

  .phone-input-wrapper .custom-country-code {
    font-size: 12px;
    padding: 8px 4px;
    min-width: 50px;
    max-width: 50px;
  }

  .phone-input-wrapper #phone {
    min-width: 0;
    flex: 1;
  }
  
  /* Şehir dropdown düzeltmeleri */
  .city-dropdown {
    max-height: 180px;
    width: 100%;
    left: 0;
    right: 0;
  }

  .city-select-wrapper {
    max-width: 100%;
  }

  /* Bütçe bölümü mobil */
  .budget-section {
    padding: 15px;
  }

  .budget-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .budget-input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    font-size: 18px;
    height: 50px;
  }

  .budget-bar-container {
    width: 100%;
  }

  .budget-bar {
    height: 10px;
  }

  .budget-marker {
    width: 16px;
    height: 16px;
  }

  .budget-marker::after {
    font-size: 7px;
  }

  /* Feature options mobil */
  .feature-options {
    gap: 8px;
  }

  .feature-card {
    padding: 10px;
  }

  .feature-name {
    font-size: 13px;
  }

  .feature-info small {
    font-size: 11px;
  }

  /* Örnek site mobil */
  .example-site-row {
    flex-direction: column;
    gap: 8px;
  }

  .btn-remove-site {
    width: 100%;
    height: 36px;
  }

  /* Package options mobil */
  .package-options {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 14px;
  }

  /* Row düzeltmeleri */
  .row {
    margin: 0 -6px;
  }

  .col-md-6 {
    padding: 0 6px;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
  .quote-form-container {
    padding: 14px 10px !important;
    margin: 0;
    border-radius: 0;
  }

  .form-steps {
    gap: 2px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .step-line {
    width: 16px;
    margin: 0 2px;
  }

  .section-title {
    font-size: 15px;
  }

  .phone-input-wrapper .country-code {
    font-size: 12px;
    padding: 6px 4px;
    min-width: 90px;
    max-width: 100px;
  }

  .budget-input {
    font-size: 16px !important;
    height: 46px;
  }

  .btn-prev, .btn-next, .btn-submit {
    padding: 10px 10px;
    font-size: 13px;
  }
}
