/* Pricing Calculator Styles - Enhanced Design */
.pricing-calculator-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 0;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Clean section background */
.pricing-ca {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  color: #333333;
}

/* Service Selection Step */
.service-selection-step {
  padding: 40px;
  text-align: center;
}

.step-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.step-header p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 0;
}

.services-grid {
  margin-top: 20px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #007bff;
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.service-card .service-icon i {
  font-size: 32px;
  color: #ffffff;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price-range {
  font-size: 16px;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 20px;
}

.service-card .select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #007bff;
  transition: all 0.3s ease;
}

.service-card:hover .select-btn {
  color: #0056b3;
}

.service-card:hover .select-btn i {
  transform: translateX(4px);
}

/* Step Navigation */
.step-navigation {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.back-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.back-btn:hover {
  background: #e9ecef;
  color: #495057;
  transform: translateX(-2px);
}

.back-btn i {
  font-size: 12px;
}

/* Calculator Step */
.calculator-step {
  padding: 0 0 40px 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 40px;
}

.contact-form-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  padding-right: 20px;
}

.contact-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #495057;
}

.benefits-list li i {
  color: #28a745;
  font-size: 14px;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-method i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.contact-method h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.contact-method p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control,
.contact-form .form-select {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: #ffffff;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

/* CTA Buttons */
.price-cta-buttons .theme-btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.price-cta-buttons .theme-btn.style-one {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.price-cta-buttons .theme-btn.style-one:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.price-cta-buttons .theme-btn.style-two {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.price-cta-buttons .theme-btn.style-two:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

/* Custom Quote Message */
.custom-quote-message {
  padding: 40px;
}

.custom-quote-content {
  max-width: 600px;
  margin: 0 auto;
}

.quote-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.quote-icon i {
  font-size: 36px;
  color: #ffffff;
}

.custom-quote-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.custom-quote-content .lead {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
}

.custom-quote-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
}

.custom-quote-benefits li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #495057;
}

.custom-quote-benefits li i {
  color: #28a745;
  font-size: 14px;
}

.quote-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.quote-actions .theme-btn {
  min-width: 180px;
}

/* Service Tabs - Enhanced Design */
.service-tabs {
  background: #ffffff;
  padding: 20px 40px 0 40px;
  margin-bottom: 0;
}

.service-tabs .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 6px;
  border-radius: 12px;
}

.service-tabs .nav-link {
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #6c757d;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.service-tabs .nav-link i {
  font-size: 16px;
}

.service-tabs .nav-link:hover {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  transform: translateY(-1px);
}

.service-tabs .nav-link.active {
  background: #0d6efd;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

/* Calculator Content Area */
.calculator-content {
  padding: 30px;
}

/* Question Groups */
.question-group {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.question-group h5 {
  color: #495057;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f8f9fa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.question-group h5 i {
  color: #0d6efd;
  font-size: 18px;
}

/* Calculator Form - Enhanced Design */
.calculator-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  border: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  color: #495057;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
}

/* Range Input - Simple & Smooth */
.range-input-wrapper {
  position: relative;
  padding: 10px 0;
}

.form-range {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 10px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-range:hover {
  background: #dee2e6;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form-range::-webkit-slider-thumb:hover {
  background: #0056b3;
  transform: scale(1.1);
}

.form-range::-webkit-slider-thumb:active {
  background: #004085;
  transform: scale(0.95);
}

.form-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease;
}

.form-range::-moz-range-thumb:hover {
  background: #0056b3;
  transform: scale(1.1);
}

.form-range::-moz-range-track {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  border: none;
}

.range-value {
  text-align: center;
  margin-top: 5px;
  color: #0d6efd;
  font-weight: 600;
  font-size: 14px;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #e9ecef;
}

/* Select Input - Enhanced Style */
.form-select {
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 8px;
  color: #495057;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-select:focus {
  background: #ffffff;
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
  color: #495057;
}

.form-select option {
  background: #ffffff;
  color: #495057;
  padding: 8px;
}

/* Toggle Buttons - Enhanced Design */
.toggle-buttons {
  display: flex;
  gap: 6px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid #e9ecef;
}

.toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #6c757d;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background: #0d6efd;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

.toggle-btn:hover:not(.active) {
  background: #e9ecef;
  color: #495057;
}

/* Price Display Card - Enhanced Design */
.price-display-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 25px;
  color: #495057;
  border: 1px solid #e9ecef;
  position: sticky;
  top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-display-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #212529;
}

.price-breakdown {
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f3f4;
  font-size: 13px;
  font-weight: 500;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:first-child {
  color: #6c757d;
}

.price-item span:last-child {
  font-weight: 700;
  color: #0d6efd;
  font-size: 14px;
}

.total-price {
  text-align: center;
  padding-top: 15px;
  border-top: 2px solid #0d6efd;
  background: linear-gradient(135deg, #f0f8ff, #e7f3ff);
  margin: 0 -25px -25px -25px;
  padding: 20px 25px;
  border-radius: 0 0 12px 12px;
}

.total-price h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #0d6efd;
}

.total-price small {
  color: #6c757d;
  font-size: 11px;
  font-weight: 500;
}

/* Custom Quote Section - Enhanced Style */
.custom-quote-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #e9ecef;
  margin-top: 20px;
}

.custom-quote-section h4 {
  color: #212529;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.custom-quote-section p {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Design - Clean */
@media (max-width: 991px) {
  .pricing-calculator-wrapper {
    padding: 25px 15px;
  }

  .service-tabs .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }

  .calculator-form {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .price-display-card {
    margin-top: 25px;
    position: static;
    padding: 25px 20px;
  }

  .custom-quote-section {
    padding: 25px 20px;
  }
}

@media (max-width: 767px) {
  .service-tabs .nav-tabs {
    flex-direction: column;
    gap: 0;
  }

  .service-tabs .nav-link {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
  }

  .service-tabs .nav-link:last-child {
    border-bottom: none;
  }

  .toggle-buttons {
    flex-direction: column;
    gap: 2px;
  }

  .toggle-btn {
    text-align: center;
    padding: 12px 16px;
  }

  .calculator-form {
    padding: 15px;
  }

  .price-display-card {
    padding: 20px 15px;
  }

  .custom-quote-section {
    padding: 25px 15px;
  }

  /* Service Selection Mobile */
  .service-selection-step {
    padding: 20px;
  }

  .step-header h3 {
    font-size: 24px;
  }

  .service-card {
    margin-bottom: 20px;
    padding: 25px 15px;
  }

  .service-card h4 {
    font-size: 18px;
  }

  .service-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .service-card .service-icon i {
    font-size: 28px;
  }

  .quote-actions {
    flex-direction: column;
    align-items: center;
  }

  .quote-actions .theme-btn {
    width: 100%;
    max-width: 280px;
    margin-bottom: 10px;
  }

  .custom-quote-content h3 {
    font-size: 24px;
  }

  .custom-quote-content .lead {
    font-size: 16px;
  }

  .custom-quote-message {
    padding: 20px;
  }

  .step-navigation {
    padding: 0 20px;
  }

  /* Contact Form Mobile */
  .contact-form-section {
    padding: 20px;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .contact-header h3 {
    font-size: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-methods {
    margin-bottom: 20px;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .contact-method i {
    margin-bottom: 10px;
  }

  .price-cta-buttons .theme-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* Clean text visibility */
.pricing-ca * {
  color: inherit;
}

.pricing-ca .section-title h2,
.pricing-ca .section-title p {
  color: #333333 !important;
}

/* Simple animation for price updates */
.total-price h3 {
  transition: color 0.2s ease;
}

.price-item span:last-child {
  transition: color 0.2s ease;
}

/* Custom Quote Button - Enhanced Style */
.custom-quote-section .theme-btn {
  background: linear-gradient(135deg, #0d6efd, #0056b3);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(13, 110, 253, 0.3);
}

.custom-quote-section .theme-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
  color: #ffffff;
}

.custom-quote-section .theme-btn i {
  font-size: 12px;
}

/* Hide decorative elements for clean design */
.pricing-ca .shape {
  display: none;
}

/* Additional Form Elements */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.checkbox-item:hover {
  background: #e9ecef;
}

.checkbox-item input[type="checkbox"] {
  margin: 0;
  transform: scale(1.1);
}

.checkbox-item label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
}
