@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* { 
  font-family: 'Quicksand', sans-serif !important; 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Quicksand', sans-serif;
  color: #324158;
  background-color: #ffffff !important; /* White background */
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  width: 100%;
}

/* Remove any default container margins and center alignment */
.container, .container-fluid {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  text-align: left !important;
}

/* Ensure all main content starts from top-left */
.main-content, .roi-calculator {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.roi-step {
  display: none;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.roi-step.active-step {
  display: block;
}

/* SPECIAL STYLING FOR WELCOME STEP - CENTER TOP */
#welcome-step {
  display: none;
  text-align: center !important;
  padding: 10px !important; /* Reduced from 15px to 10px */
  min-height: 60vh;
  position: relative;
}

#welcome-step.active-step {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: center !important;
}


#welcome-step > .text-center {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}


#welcome-step .lead {
  font-size: 20px !important;
  color: #324158;
  font-weight: 600;
  text-align: center !important;
  margin: 0 0 12px 0 !important; /* Reduced from 20px to 12px */
  line-height: 1.4;
}

#welcome-step .btn-primary {
  display: inline-block !important;
  margin: 0 auto !important;
  text-align: center;
}

/* SPECIAL STYLING FOR THANK YOU STEP - CENTER TOP */
#thankyou-step {
  display: none;
  text-align: center !important;
  padding: 10px !important; /* Reduced from 15px to 10px */
  min-height: 60vh;
  position: relative;
}

#thankyou-step.active-step {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: center !important;
}

#thankyou-step .card-body {
  text-align: center !important;
  padding: 10px !important; /* Reduced from 15px to 10px */
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px; /* Reduced from 30px to 20px */
}

#thankyou-step .card-title,
#thankyou-step .lead,
#thankyou-step p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#thankyou-step .step-navigation {
  justify-content: center !important;
  text-align: center !important;
}

/* ALL OTHER STEPS - TOP LEFT ALIGNMENT WITH REDUCED MARGINS */
#disclaimer-step,
#form-step,
#questions-step,
#results-step,
#contact-step {
  text-align: left !important;
  padding: 8px !important; /* Reduced from 10px to 8px */
  margin: 0 !important;
}

#disclaimer-step.active-step,
#form-step.active-step,
#questions-step.active-step,
#results-step.active-step,
#contact-step.active-step {
  display: block !important;
  text-align: left !important;
  padding: 8px !important; /* Reduced from 10px to 8px */
  margin: 0 !important;
}

/* Card styling */
.card {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #ffffff !important; /* White background */
}

.card-body {
  padding: 8px !important; /* Reduced from 10px to 8px */
  margin: 0 !important;
  background-color: #ffffff !important; /* White background */
  text-align: left !important;
}

.card-title {
  color: #00BF63;
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 10px 0 !important; /* Reduced from 15px to 10px */
  text-align: left !important;
}

/* Disclaimer and Privacy Container */
.disclaimer-privacy-container {
  background-color: #ffffff !important; /* White background */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.disclaimer-section, .privacy-section {
  margin-bottom: 30px;
  background-color: #ffffff !important; /* White background */
}

/* Disclaimer Titles */
.disclaimer-title {
  color: #00BF63;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left !important;
}

.disclaimer-title-arabic {
  color: #00BF63;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: right !important; /* Arabic titles start from right */
  direction: rtl;
}

/* Disclaimer Subtitles */
.disclaimer-subtitle {
  color: #324158;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: left !important;
}

.disclaimer-subtitle-arabic {
  color: #324158;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: right !important; /* Arabic subtitles start from right */
  direction: rtl;
}

/* Disclaimer Content - Very Small Font */
.disclaimer-content-small {
  font-size: 12px !important; /* Very small font */
  line-height: 1.4;
  color: #324158;
  text-align: left !important;
  background-color: #ffffff !important; /* White background */
}

.disclaimer-content-small-arabic {
  font-size: 12px !important; /* Very small font */
  line-height: 1.4;
  color: #324158;
  text-align: right !important; /* Arabic content starts from right */
  direction: rtl;
  background-color: #ffffff !important; /* White background */
}

.disclaimer-content-small p,
.disclaimer-content-small-arabic p {
  margin-bottom: 8px;
  font-size: 12px !important; /* Very small font */
}

/* Text styling with reduced margins */
p, label, .form-check-label {
  color: #324158;
  font-size: 20px;
  font-weight: 600;
  text-align: left !important;
  margin: 0 0 6px 0; /* Reduced from 10px to 6px */
}

.lead {
  font-size: 20px;
  color: #324158;
  font-weight: 600;
  text-align: left !important;
  margin: 0 0 6px 0; /* Reduced from 10px to 6px */
}

.btn {
  font-size: 20px;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background-color: #00BF63;
  border-color: #00BF63;
}

.btn-primary:hover {
  background-color: #00a858;
  border-color: #00a858;
}

.btn-secondary {
  background-color: #324158;
  border-color: #324158;
}

.btn-secondary:hover {
  background-color: #2a3750;
  border-color: #2a3750;
}

/* Form styling with reduced margins */
.form-control {
  font-size: 20px;
  padding: 12px 15px;
}

.form-group {
  margin-bottom: 10px; /* Reduced from 15px to 10px */
  text-align: left !important;
}

.form-label {
  font-weight: 600;
  margin-bottom: 5px; /* Reduced from 8px to 5px */
  display: block;
  font-size: 20px;
  text-align: left !important;
}

.form-check {
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 6px; /* Reduced from 10px to 6px */
  background-color: transparent !important;
  text-align: left !important;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
}

.form-check-label {
  font-size: 20px;
  text-align: left !important;
}

/* Input group styling */
.input-group {
  margin-bottom: 8px; /* Reduced from 10px to 8px */
}

.input-group-text {
  font-size: 20px;
  background-color: #f1f1f1;
}

/* Country buttons styling */
.country-buttons-container {
  margin-bottom: 15px; /* Reduced from 20px to 15px */
  text-align: left !important;
}

.country-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start !important;
}

.country-btn {
  background-color: #f1f1f1;
  color: #324158;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.country-btn.active {
  background-color: #00BF63;
  color: white;
}

.country-btn:hover:not(.active) {
  background-color: #e0e0e0;
}

/* Country forms styling */
.country-form {
  display: none;
  text-align: left !important;
}

.country-form.active {
  display: block;
}

/* Step navigation */
.step-navigation {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 15px; /* Reduced from 20px to 15px */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-body {
    padding: 6px; /* Reduced from 8px to 6px */
  }

  .card-title {
    font-size: 24px;
  }

  p, label, .form-check-label {
    font-size: 18px;
  }

  .lead {
    font-size: 20px;
  }

  .btn {
    font-size: 20px;
  }

  #welcome-step .lead {
    font-size: 20px !important;
  }

  #welcome-step .text-center {
    padding-top: 15px; /* Reduced for mobile */
  }

  #thankyou-step .card-body {
    padding-top: 15px; /* Reduced for mobile */
  }

  .disclaimer-title, .disclaimer-title-arabic {
    font-size: 20px;
  }

  .disclaimer-subtitle, .disclaimer-subtitle-arabic {
    font-size: 14px;
  }

  .disclaimer-content-small, .disclaimer-content-small-arabic {
    font-size: 10px !important; /* Even smaller on mobile */
  }
}

.report-container {
  margin: 0 !important;
  color: #324158;
  text-align: left !important;
}

.report-title {
  color: #00BF63;
  font-size: 30px;
  margin: 0 0 10px 0; /* Reduced from 15px to 10px */
  padding-bottom: 5px; /* Reduced from 8px to 5px */
  text-align: left !important;
}

.report-text {
  margin-bottom: 8px; /* Reduced from 12px to 8px */
  line-height: 1.6;
  font-size: 20px;
  text-align: left !important;
}

.report-highlight {
  font-weight: bold;
  text-align: left !important;
  margin: 10px 0; /* Reduced from 15px to 10px */
  padding: 5px; /* Reduced from 8px to 5px */
  line-height: 1.6;
  font-size: 20px;
}

.spend-section {
  margin: 15px 0; /* Reduced from 20px to 15px */
  padding: 8px; /* Reduced from 12px to 8px */
  background-color: #f5f5f5;
  border-radius: 8px;
}

.spend-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px; /* Reduced from 15px to 10px */
}

.spend-title {
  font-weight: bold;
  line-height: 1.3;
  font-size: 20px;
  text-align: left !important;
}

.spend-value {
  font-weight: bold;
  font-size: 20px;
  text-align: right;
}

.spend-gauge {
  margin-top: 10px; /* Reduced from 15px to 10px */
}

.spend-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px; /* Reduced from 8px to 5px */
}

.min-spend, .max-spend {
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
  width: 100px;
}

.gauge-container {
  flex-grow: 1;
  display: flex;
  height: 30px;
  margin: 0 15px;
  border-radius: 15px;
  overflow: hidden;
}

.gauge-segment {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.low-end {
  background-color: #FF6347; /* Red */
}

.mid-range {
  background-color: #FFD700; /* Yellow */
}

.high-end {
  background-color: #00BF63; /* Green */
}

.company-indicator {
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
}

/* ENHANCED PROFESSIONAL GAUGE STYLES - COMPLETELY REDESIGNED */
.dynamic-spend-section {
  margin: 15px 0; /* Reduced from 20px to 15px */
  padding: 15px; /* Reduced from 20px to 15px */
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e3e6ea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dynamic-spend-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px; /* Reduced from 20px to 15px */
}

.dynamic-spend-title {
  font-weight: 600;
  line-height: 1.4;
  font-size: 18px;
  color: #2c3e50;
  max-width: 65%;
  text-align: left !important;
}

.dynamic-spend-value {
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  color: #2c3e50;
}

.dynamic-spend-gauge {
  margin-top: 15px; /* Reduced from 20px to 15px */
  position: relative;
  padding-top: 30px; /* Reduced from 40px to 30px */
  min-height: 70px; /* Reduced from 90px to 70px */
}

.dynamic-spend-range {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px; /* Reduced from 15px to 10px */
  position: relative;
}

.dynamic-min-spend, .dynamic-max-spend {
  font-size: 13px;
  text-align: center;
  line-height: 1.3;
  width: 90px;
  color: #6c757d;
  font-weight: 500;
}

/* COMPLETELY REDESIGNED GAUGE - FULLY VISIBLE */
.dynamic-gauge-container {
  flex-grow: 1;
  display: flex;
  height: 40px; /* Increased height for better visibility */
  margin: 0 25px; /* More margin to prevent cutting */
  border-radius: 20px;
  overflow: visible;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff; /* White border for definition */
  background: #ffffff; /* White background */
}

.dynamic-gauge-segment {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  /* Ensure no cutting by making segments fit perfectly */
  min-width: 0; /* Allow segments to shrink if needed */
}



.dynamic-gauge-segment.low-end {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.dynamic-gauge-segment.mid-range {
  background: linear-gradient(135deg, #f39c12, #d68910);
  color: #ffffff;
}

.dynamic-gauge-segment.high-end {
  background: linear-gradient(135deg, #00BF63, #27ae60);
}

/* ULTRA PROFESSIONAL CORPORATE ARROW - MINIMAL & CLEAN */
.dynamic-gauge-arrow {
  position: absolute;
  top: -25px; /* Reduced from -35px to -25px */
  transform: translateX(-50%);
  text-align: center;
  z-index: 200;
}

.dynamic-arrow-value {
  background: #2c3e50; /* Professional dark blue-gray */
  color: #ffffff;
  padding: 4px 8px; /* Reduced from 6px 12px to 4px 8px */
  border-radius: 6px; /* Clean, minimal corners */
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 4px; /* Reduced from 6px to 4px */
  box-shadow: 0 3px 12px rgba(44, 62, 80, 0.25);
  position: relative;
  z-index: 201;
  min-width: max-content;
  letter-spacing: 0.3px; /* Professional spacing */
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.dynamic-gauge-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 10;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, 
              linear-gradient(white, white) border-box;
}

/* Simple professional arrow pointer - no animations or fancy effects */
.dynamic-arrow-value::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #2c3e50;
  z-index: 202;
}

/* Minimal clean pointer line */
.dynamic-arrow-pointer {
  width: 2px;
  height: 10px; /* Reduced from 15px to 10px */
  position: relative;
  margin: 0 auto;
  border-radius: 1px;
  z-index: 203;
}

.dynamic-company-indicator {
  text-align: center;
  margin-top: 10px; /* Reduced from 15px to 10px */
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
}

/* Remove any conflicting styles */
.dynamic-gauge-container::before,
.dynamic-gauge-container::after {
  display: none;
}

.charts-section {
  display: flex;
  justify-content: flex-start !important;
  margin: 15px 0; /* Reduced from 20px to 15px */
  gap: 20px;
  max-width: 100% !important;
  margin-left: 0 !important;
  position: relative;
}

.chart-container {
  flex: 1;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px; /* Reduced from 8px to 5px */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-title {
  display: flex;
  justify-content: space-between;
  margin-top: 5px; /* Reduced from 8px to 5px */
}

.chart-section-title {
  font-weight: bold;
  line-height: 1.3;
  font-size: 20px;
  text-align: left !important;
}

.chart-subtitle {
  font-size: 20px;
  text-align: center;
  margin-top: 5px;
}

.chart-subtitle.right {
  text-align: right;
}

.conclusion {
  margin-top: 15px; /* Reduced from 20px to 15px */
  padding-top: 10px; /* Reduced from 15px to 10px */
  text-align: left !important;
}

canvas {
  width: 100% !important;
  height: 280px !important;
  max-width: 100% !important;
  max-height: 280px !important;
}

.chart-header {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  margin-bottom: 10px; /* Reduced from 15px to 10px */
}

.charts-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  color: #333;
  padding: 0 !important;
  margin: 0 0 10px 0 !important; /* Reduced from 15px to 10px */
  text-align: left !important;
}

.service-title {
  color: #00BF63;
  margin-top: 15px; /* Reduced from 20px to 15px */
  font-size: 20px;
  margin-bottom: 8px; /* Reduced from 12px to 8px */
  text-align: left !important;
}

.highlight-green {
  color: #00BF63;
  font-weight: bold;
}

.comparison-title {
  margin-bottom: 5px; /* Reduced from 8px to 5px */
  font-weight: normal;
  text-align: left !important;
}

@media (max-width: 768px) {
  .charts-section {
    flex-direction: column;
  }

  .spend-header {
    flex-direction: column;
  }

  .spend-value {
    text-align: left;
    margin-top: 5px; /* Reduced from 8px to 5px */
  }

  .dynamic-spend-header {
    flex-direction: column;
  }

  .dynamic-spend-title {
    max-width: 100%;
    margin-bottom: 5px; /* Reduced from 8px to 5px */
  }

  .dynamic-spend-value {
    text-align: left;
  }

  .dynamic-gauge-container {
    margin: 0 15px;
    height: 35px;
  }

  .dynamic-min-spend, .dynamic-max-spend {
    width: 70px;
    font-size: 11px;
  }

  .dynamic-arrow-value {
    font-size: 11px;
    padding: 3px 6px; /* Reduced padding */
  }

  .dynamic-spend-gauge {
    padding-top: 20px; /* Reduced from 30px to 20px */
    min-height: 60px; /* Reduced from 75px to 60px */
  }

  .dynamic-gauge-arrow {
    top: -20px; /* Reduced from -30px to -20px */
  }

  .dynamic-arrow-pointer {
    height: 8px; /* Reduced from 12px to 8px */
    width: 2px;
  }

  #welcome-step .text-center {
    padding-top: 10px; /* Reduced for mobile */
  }

  #thankyou-step .card-body {
    padding-top: 10px; /* Reduced for mobile */
  }
}

.country-accordion, .country-results-accordion {
  width: 100%;
  margin-bottom: 10px; /* Reduced from 15px to 10px */
}

.accordion-item, .result-accordion-item {
  margin-bottom: 5px; /* Reduced from 8px to 5px */
  overflow: hidden;
}

.accordion-header, .result-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px; /* Reduced from 12px 15px to 8px 12px */
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  color: #324158;
  transition: background-color 0.3s;
  text-align: left !important;
}

.accordion-header:hover, .result-accordion-header:hover {
  background-color: #e9ecef;
}

.accordion-item.expanded .accordion-header,
.result-accordion-item.expanded .result-accordion-header {
  background-color: #00BF63;
  color: white;
}

.accordion-title {
  flex: 1;
  text-align: left !important;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  content: "▼";
  display: inline-block;
  font-size: 14px;
}

.accordion-item.expanded .accordion-icon,
.result-accordion-item.expanded .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content, .result-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px; /* Reduced from 15px to 10px */
}

.accordion-item.expanded .accordion-content,
.result-accordion-item.expanded .result-accordion-content {
  padding: 10px; /* Reduced from 15px to 10px */
  overflow: visible;
}

.country-result-content {
  padding-bottom: 10px; /* Reduced from 15px to 10px */
}

.result-accordion-content .report-text {
  margin-top: 8px; /* Reduced from 12px to 8px */
  text-align: left !important;
}

#spendChart_UAE, #roiChart_UAE {
  height: 300px !important;
  width: 100% !important;
}

.aggregate-results .result-accordion-header {
  cursor: pointer;
}

.aggregate-results.expanded .result-accordion-content {
  max-height: none !important;
}

.global-explanation {
  margin-left: 24px;
  color: #6c757d !important;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: left !important;
}

.form-check.disabled .global-explanation {
  display: none;
}

/* إضافة ستايل أقوى للعناوين العربية لتتغلب على .roi-page h2 */
.disclaimer-privacy-container .disclaimer-title-arabic,
.disclaimer-section .disclaimer-title-arabic,
.privacy-section .disclaimer-title-arabic {
  text-align: right !important;
  direction: rtl !important;
  color: #00BF63 !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}

/* إضافة ستايل أقوى للعناوين الفرعية العربية */
.disclaimer-privacy-container .disclaimer-subtitle-arabic,
.disclaimer-section .disclaimer-subtitle-arabic,
.privacy-section .disclaimer-subtitle-arabic {
  text-align: right !important;
  direction: rtl !important;
  color: #324158 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  margin-bottom: 12px !important;
}


/* Business Type Explanations - Same style as global explanation */
.business-type-explanation {
  margin-left: 24px;
  color: #6c757d !important;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: left !important;
  display: block; /* Always visible, not like global that shows/hides */
}

.business-type-explanation p {
  margin: 0;
  padding: 0;
  color: #6c757d !important;
  font-size: 0.875rem !important;
  font-weight: normal !important;
  line-height: 1.3;
}

.text-muted {
    color: #324158 !important;
    --bs-text-opacity: 1;
    font-size: 16px !important; 
}

/* Form section titles styling */
.form-subsection-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left !important;
}

/* Make field labels bold */
label {
  font-weight: bold !important;
}

.form-label {
  font-weight: bold !important;
}

/* Budget guidelines section */
.budget-preset-section {
  margin-bottom: 20px;
}

.budget-preset-section .card {
  border: 1px solid #e3e6ea;
  border-radius: 8px;
}

.budget-preset-section .card-body {
  padding: 15px;
}

.budget-options {
  margin-bottom: 15px;
}

.budget-options .form-check {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #e3e6ea;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.budget-options .form-check:hover {
  background-color: #f8f9fa;
}

.budget-options .form-check-input:checked + .form-check-label {
  color: #00BF63;
  font-weight: bold;
}

.budget-preset-actions {
  border-top: 1px solid #e3e6ea;
  padding-top: 15px;
}

.budget-preset-actions .btn {
  margin-right: 10px;
}

/* Submission status message */
#submission-status {
  display: none;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.card-title.instruction-title {
  font-size: 30px !important;
}

/* Additional styles for customer ROI results display */
.customer-results-section {
  padding: 0;
  margin: 0;
}

.customer-results-section .highlight-green {
  color: #00BF63;
  font-weight: bold;
}

.customer-results-section .report-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.customer-results-section .service-title {
  font-size: 22px;
  font-weight: 600;
  color: #00BF63;
  margin: 25px 0 15px 0;
}

/* Currency selection styles */
.currency-selector {
  margin-bottom: 20px;
}

.currency-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.currency-btn {
  padding: 8px 16px;
  border: 2px solid #e3e6ea;
  background-color: #ffffff;
  color: #324158;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.currency-btn:hover {
  background-color: #f8f9fa;
  border-color: #00BF63;
}

.currency-btn.active {
  background-color: #00BF63;
  color: white;
  border-color: #00BF63;
}

.currency-note {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-top: 10px;
}

/* Circular indicators styling for results */
.circular-indicators {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.circular-indicator {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.circular-indicator .indicator-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #324158;
}

.circular-indicator .indicator-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  line-height: 1.2;
}

.circular-indicator .circle-red {
  background-color: #dc3545;
}

.circular-indicator .circle-green {
  background-color: #28a745;
}

/* Results breakdown sections */
.results-breakdown {
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 5px solid #00BF63;
}

.breakdown-title {
  font-size: 20px;
  font-weight: 600;
  color: #00BF63;
  margin-bottom: 15px;
}

.breakdown-details {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.breakdown-details ul {
  margin: 0;
  padding-left: 20px;
}

.breakdown-details li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.5;
}
