/* ===== FULL SCREEN FRANCHISE HERO ===== */
.franchise-hero {
  height: 100vh;
  width: 100%;
  background: url("images/franchi.jpg") no-repeat center center;
  background-size: cover; 
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
}

/* Dark overlay so text is readable */
.franchise-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100;
  height:100;
  background: linear-gradient(to right,  
  rgba(0, 0, 0, 0.40),
  rgba(0, 0, 0, 0.5)
  );
}

/* Content */
.franchise-hero-content {
  position: relative;
  max-width: 520px;
  color: #fff;
}

/* Heading */
.franchise-hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Paragraph */
.franchise-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 22px;
}

/* Bullet points */
.hero-points {
  list-style: none;
  padding: 0;
}

.hero-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* =========================
   INVESTMENT CALCULATOR
========================= */

.investment-section {
  background: #fff;
  padding: 60px 30px;
}

.investment-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT SIDE */
.investment-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.model-box label,
.slider-box label,
.cost-box span {
  display: block;
  font-size: 20px;
  color: #666;
  margin-bottom: 6px;
}

.model-box input {
  width: 100%;
  padding: 12px;
  font-size: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-weight: 600;
}

.slider-box {
  margin: 30px 0;
}

.slider-box input[type="range"] {
  width: 100%;
  accent-color: #f4c430;
}

.slider-box span {
  color: #f4c430;
  font-weight: 600;
}

.cost-box strong {
  font-size: 24px;
  color: #222;
}

/* RIGHT SIDE */
.result-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
   /* NEW */
  border: 1px solid #e6e6e6;   /* light gray border */
  
}


.roi-badge {
  background: #f4c430;
  color: #000;
  padding: 10px 16px;
  border-radius: 15px;
  display: inline-block;
  font-size: 28px;
  margin-bottom: 25px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 24px;
}

.result-row strong {
  font-weight: 600;
}

.result-row.highlight strong {
  color: #f4c430;
  font-size: 35px;
}

.invest-btn {
  margin-top: 25px;
  width: 100%;
  padding: 14px;
  background: #f4c430;
  border: none;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.invest-btn:hover {
  background: #e6b800;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .investment-container {
    grid-template-columns: 1fr;
  }
}

