.elementor-3727 .elementor-element.elementor-element-4b4e3f7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3727 .elementor-element.elementor-element-aec6841{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ce7f2ff */* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Video Ad Overlay Styles */
.video-ad-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.video-ad-container {
  position: relative;
  width: 30%;
  max-width: 1000px;
  height: 90%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

#businessVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide default video controls */
#businessVideo::-webkit-media-controls {
  display: none !important;
}

#businessVideo::-webkit-media-controls-panel {
  display: none !important;
}

#businessVideo::-webkit-media-controls-timeline {
  display: none !important;
}

#businessVideo::-webkit-media-controls-current-time-display {
  display: none !important;
}

#businessVideo::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

#businessVideo::-moz-media-controls {
  display: none !important;
}

/* Video Ad Controls */
.video-ad-controls {
  position: fixed;
  top: -12;
  left: 0;
  right: 0;
  pointer-events: none;
}

.skip-ad-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.skip-ad-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.video-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.video-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1em;
}

.valuation-container {
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Container Controls */
.container-controls {
  text-align: center;
  margin-bottom: 20px;
}

.hide-container-btn,
.show-container-btn {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.hide-container-btn:hover,
.show-container-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.show-container-btn {
  background: linear-gradient(135deg, #28a745, #218838);
}

.show-container-btn:hover {
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.container-hidden {
  display: none !important;
}

.valuation-calculator {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.valuation-calculator h1 {
  color: #7061ab;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

/* Desktop specific styles */
@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .valuation-calculator {
    padding: 50px;
  }

  .valuation-result {
    padding: 50px;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 1em;
}

.input-group input,
.input-group select {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #e1e5e9;
  font-size: 1em;
  background: #f8f9fa;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #7061ab;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(112, 97, 171, 0.1);
}

.input-group small {
  margin-top: 5px;
  color: #666;
  font-size: 0.85em;
}

.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.button-group button {
  background: linear-gradient(135deg, #7061ab, #594fa0);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 180px;
}

.button-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(112, 97, 171, 0.3);
}

.button-group button:active {
  transform: translateY(0);
}

#resetBtn {
  background: linear-gradient(135deg, #6c757d, #5a6268);
}

#resetBtn:hover {
  box-shadow: 0 10px 20px rgba(108, 117, 125, 0.3);
}

.valuation-result {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.valuation-result h2 {
  color: #7061ab;
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #7061ab;
}

.metric-card h3 {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-card p {
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
}

.valuation-range {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #7061ab, #594fa0);
  border-radius: 15px;
  color: white;
}

.valuation-range h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  opacity: 0.9;
}

.range-text {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.methodology {
  opacity: 0.8;
  font-size: 0.9em;
}

.chart-container {
  margin: 40px 0;
  padding: 0px;
  background: #f8f9fa;
  border-radius: 12px;
  width: 100%;
  height: 60vh;
  overflow-x: auto;
}

.chart-container canvas {
  width: 100%;
  height: auto !important;
}

.breakdown-section {
  margin: 30px 0;
}

.breakdown-section h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.3em;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #7061ab;
}

.breakdown-item .method {
  font-weight: 600;
  color: #333;
}

.breakdown-item .value {
  font-weight: 700;
  color: #7061ab;
  font-size: 1.1em;
}

.tips-section {
  margin: 30px 0;
}

.tips-section h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.3em;
}

.tip-item {
  margin: 15px 0;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid #7061ab;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-item.warning {
  border-left-color: #ffc107;
  background: #fff8e1;
}

.tip-item.success {
  border-left-color: #28a745;
  background: #f0f8f0;
}

.tip-item.info {
  border-left-color: #17a2b8;
  background: #e8f4f8;
}

.disclaimer {
  margin-top: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #dee2e6;
}

.disclaimer p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Tablet styles */
@media (max-width: 1023px) and (min-width: 769px) {
  .valuation-container {
    padding: 15px;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .video-ad-container {
    width: 90%;
    height: 65%;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .valuation-container {
    padding: 20px;
  }
  
 .video-ad-container {
  position: relative;
  width: 30%;
  max-width: 1000px;
  height: 90%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}


  .skip-ad-btn {
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .video-controls {
    bottom: 15px;
    right: 15px;
  }

  .video-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .valuation-calculator,
  .valuation-result {
    padding: 20px;
    margin-bottom: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .button-group button {
    width: 100%;
    max-width: 280px;
    padding: 18px 25px;
    font-size: 1em;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .metric-card {
    padding: 15px;
  }

  .metric-card p {
    font-size: 1.3em;
  }

  .range-text {
    font-size: 1.8em;
  }

  .valuation-calculator h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .valuation-range {
    padding: 25px 20px;
    margin: 30px 0;
  }

  .chart-container {
    padding: 15px;
    margin: 30px 0;
    overflow-x: auto;
  }

  .chart-container canvas {
    height: 100% !important;
    width: 100% !important;
  }

  .breakdown-item {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .tip-item {
    padding: 15px;
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  .valuation-container {
    padding: 8px;
  }

  .video-ad-container {
    width: 90%;
    height: 70%;
  }
  
 .videoMessage {
  position: fixed;
  top: -14;
  left: 0;
  right: 0;
  pointer-events: none;
}


  .skip-ad-btn {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .valuation-calculator,
  .valuation-result {
    padding: 15px;
    border-radius: 15px;
  }

  .valuation-calculator h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .input-group {
    margin-bottom: 15px;
  }

  .input-group input,
  .input-group select {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .input-group label {
    font-size: 0.9em;
    margin-bottom: 6px;
  }

  .input-group small {
    font-size: 0.8em;
  }

  .button-group button {
    padding: 15px 20px;
    font-size: 0.9em;
    border-radius: 10px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metric-card {
    padding: 12px;
  }

  .metric-card h3 {
    font-size: 0.8em;
    margin-bottom: 8px;
  }

  .metric-card p {
    font-size: 1.2em;
  }

  .valuation-range {
    padding: 20px 15px;
    margin: 25px 0;
  }

  .valuation-range h3 {
    font-size: 1.1em;
    margin-bottom: 12px;
  }

  .range-text {
    font-size: 1.4em;
    word-break: break-word;
  }

  .methodology {
    font-size: 0.8em;
  }

  .chart-container {
    padding: 12px;
    margin: 25px 0;
    overflow-x: auto;
  }

  .chart-container canvas {
    min-height: 200px !important;
    width: 100% !important;
  }

  .breakdown-section h3,
  .tips-section h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
  }

  .breakdown-item {
    padding: 10px;
    margin-bottom: 8px;
  }

  .breakdown-item .method {
    font-size: 0.9em;
  }

  .breakdown-item .value {
    font-size: 1em;
    margin-top: 3px;
  }

  .tip-item {
    padding: 12px;
    margin: 12px 0;
    font-size: 0.9em;
  }

  .disclaimer {
    padding: 15px;
    margin-top: 30px;
  }

  .disclaimer p {
    font-size: 0.8em;
  }
}

/* Very small mobile styles */
@media (max-width: 360px) {
  .valuation-calculator h1 {
    font-size: 1.6em;
  }

  .range-text {
    font-size: 1.2em;
  }

  .input-group input,
  .input-group select {
    padding: 10px;
  }

  .button-group button {
    padding: 12px 16px;
    min-width: 140px;
  }
}/* End custom CSS */