/* ============================================================
   BANGALORE LANDING PAGE — FDC Studios
   Matches the brand color scheme: gold (#C8794D / #C8794D),
   dark (#0D0D0D), beige (#E8E1D8), light (#F8F6F3)
   ============================================================ */

/* ----- VARIABLES ----- */
:root {
  --gold: #C8794D;
  --gold-light: #d4942a;
  --gold-dark: #a06b15;
  --dark: #0D0D0D;
  --dark-2: #1a1a1a;
  --beige: #E8E1D8;
  --beige-light: #f7efe5;
  --light: #F8F6F3;
  --white: #fff;
  --text: #333333;
  --text-light: #737373;
  --text-muted: #B5B5B5;
  --gradient-gold: linear-gradient(135deg, #C8794D 0%, #e8a83a 50%, #C8794D 100%);
  --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1a1a1a 100%);
  --gradient-beige: linear-gradient(135deg, #f7efe5 0%, #efe3d2 45%, #e6d9c8 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

/* ----- GLOBAL OVERRIDES ----- */
.bangalore-landing {
  font-family: "Inter", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: var(--light);
}
.bangalore-landing .container {
  max-width: 1200px;
  padding: 0 20px;
}
.bangalore-landing .gold { color: var(--gold) !important; }
.bangalore-landing .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 16px;
}
.bangalore-landing .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: var(--dark);
  margin-bottom: 8px;
}
.bangalore-landing .section-title span {
  font-weight: 300;
  color: var(--gold);
}
.bangalore-landing .section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============= LEADS FORM SUCCESS MESSAGE ============= */
.bl-leads__success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.bl-leads__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  color: #2ecc71;
  animation: successPop 0.5s ease;
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.bl-leads__success h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.bl-leads__success p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.bl-leads__success .btn-submit {
  display: inline-block;
  width: auto;
  padding: 12px 32px;
}

/* Shake animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* Validation error styles */
.bl-leads__form .form-control.error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}
.bl-leads__form .form-error-msg {
  font-size: 11px;
  color: #e74c3c;
  margin-top: 3px;
  display: none;
}
.bl-leads__form .form-group.has-error .form-error-msg {
  display: block;
}

/* ============= HERO ============= */
.bl-hero {
  margin-top: 83px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-dark);
}
.bl-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 0;
}
.bl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 100%);
  z-index: 1;
}
.bl-hero__glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,131,28,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroPulse 6s ease-in-out infinite alternate;
}
.bl-hero__glow2 {
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,131,28,0.08) 0%, transparent 70%);
  animation-delay: 3s;
}
@keyframes heroPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}
.bl-hero .container { position: relative; z-index: 1; }
.bl-hero__split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.bl-hero__content {
  text-align: left;
  padding-top: 20px;
}
.bl-hero__content .bl-hero__actions { justify-content: flex-start; }
.bl-hero__content .bl-hero__stats { justify-content: flex-start; }
.bl-hero__sub { margin-left: 0; }

/* ===== Hero Calculator — Premium 3-Step Widget ===== */
.bl-hero__calc-wrap {
  width: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: formFloat 0.7s ease-out;
  position: relative;
  overflow: hidden;
}
.bl-hero__calc-wrap::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,131,28,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bl-hero__calc-wrap::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Calculator Header */
.bl-hero__calc-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.bl-hero__calc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(201,131,28,0.15);
  border: 1px solid rgba(201,131,28,0.25);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bl-hero__calc-badge i { font-size: 12px; }
.bl-hero__calc-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.3;
}
.bl-hero__calc-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bl-hero__calc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.bl-hero__calc-desc i { color: var(--gold); margin: 0 2px; }

/* ===== Progress Steps ===== */
.bl-hero__calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.bl-hero__calc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: default;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.bl-hero__calc-step--active {
  border-color: rgba(201,131,28,0.4);
  background: rgba(201,131,28,0.1);
  box-shadow: 0 0 30px rgba(201,131,28,0.08);
}
.bl-hero__calc-step--done {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.bl-hero__calc-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.4s;
}
.bl-hero__calc-step--active .bl-hero__calc-step-num {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201,131,28,0.3);
}
.bl-hero__calc-step--done .bl-hero__calc-step-num {
  background: var(--gold);
  color: var(--white);
}
.bl-hero__calc-step-info { display: flex; flex-direction: column; }
.bl-hero__calc-step-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
}
.bl-hero__calc-step-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.bl-hero__calc-step--active .bl-hero__calc-step-name { color: var(--white); }
.bl-hero__calc-step--done .bl-hero__calc-step-name { color: rgba(255,255,255,0.8); }
.bl-hero__calc-progress-line {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 6px;
}

/* ===== Rooms Grid ===== */
.bl-hero__calc-rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.bl-hero__calc-rooms .bl-calc__room {
  text-align: center;
  padding: 16px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.04);
  position: relative;
}
.bl-hero__calc-rooms .bl-calc__room:hover {
  border-color: var(--gold);
  background: rgba(201,131,28,0.08);
  transform: translateY(-2px);
}
.bl-hero__calc-rooms .bl-calc__room.selected {
  border-color: var(--gold);
  background: rgba(201,131,28,0.12);
  box-shadow: 0 4px 20px rgba(201,131,28,0.12);
}
.bl-hero__calc-rooms .bl-calc__room i { font-size: 24px; color: rgba(255,255,255,0.4); display: block; margin-bottom: 6px; transition: all 0.3s; }
.bl-hero__calc-rooms .bl-calc__room.selected i { color: var(--gold); }
.bl-hero__calc-rooms .bl-calc__room span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }
.bl-hero__calc-rooms .bl-calc__room .check { position: absolute; top: 6px; right: 6px; color: var(--gold); font-size: 12px; opacity: 0; transition: opacity 0.3s; }
.bl-hero__calc-rooms .bl-calc__room.selected .check { opacity: 1; }

/* ===== Panel Titles ===== */
.bl-hero__calc-panel-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.bl-hero__calc-panel-hint {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

/* ===== Form Fields ===== */
.bl-hero__calc-fields { display: grid; gap: 14px; margin-bottom: 20px; }
.bl-hero__calc-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 15px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: all 0.3s;
  box-sizing: border-box;
}
.bl-hero__calc-input::placeholder { color: rgba(255,255,255,0.3); }
.bl-hero__calc-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 4px rgba(201,131,28,0.1); }
.bl-hero__calc-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 15px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.bl-hero__calc-select:focus { outline: none; border-color: var(--gold); }
.bl-hero__calc-select option { background: #222; color: #fff; }
.bl-hero__calc-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.bl-hero__calc-checkbox input { width: 16px; height: 16px; accent-color: var(--gold); }

/* ===== Panel Actions ===== */
.bl-hero__calc-panel-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.bl-hero__calc-next, .bl-hero__calc-submit {
  flex: 1;
  padding: 14px 24px;
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(201,131,28,0.25);
}
.bl-hero__calc-next:hover,
.bl-hero__calc-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,131,28,0.35); }
.bl-hero__calc-back {
  padding: 14px 22px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bl-hero__calc-back:hover { background: rgba(255,255,255,0.12); color: var(--white); transform: translateY(-2px); }

/* ===== Result / Success ===== */
.bl-hero__calc-result {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.bl-hero__calc-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46,204,113,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #2ecc71;
  animation: successPop 0.5s ease;
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.bl-hero__calc-result h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.bl-hero__calc-result p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 6px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.bl-hero__calc-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.25);
}
.bl-hero__calc-whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.35); color: var(--white); }
.bl-hero__calc-result-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}
.bl-hero__calc-book {
  padding: 12px 28px;
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bl-hero__calc-book:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,131,28,0.35); color: var(--white); }

@keyframes formFloat {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.bl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,131,28,0.15);
  border: 1px solid rgba(201,131,28,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.bl-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.bl-hero__title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bl-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
}
.bl-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.bl-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.bl-hero__btn--primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(201,131,28,0.35);
}
.bl-hero__btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,131,28,0.45); color: var(--white); }
.bl-hero__btn--secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.bl-hero__btn--secondary:hover { background: rgba(255,255,255,0.15); color: var(--white); transform: translateY(-3px); }
.bl-hero__btn i { transition: transform 0.3s; }
.bl-hero__btn:hover i { transform: translateX(4px); }
.bl-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bl-hero__stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bl-hero__stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin: 4px 0 0; }

/* ============= TRUST BAR ============= */
.bl-trust {
  padding: 60px 0;
  background: var(--white);
}
.bl-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bl-trust__card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius);
  background: var(--light);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.bl-trust__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.bl-trust__card:hover::after { transform: scaleX(1); }
.bl-trust__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bl-trust__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--white);
}
.bl-trust__card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.bl-trust__card p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ============= PROJECTS / HOME STYLE ============= */
.bl-projects {
  padding: 80px 0;
  background: var(--beige);
  text-align: center;
}
.bl-projects__slider { margin-bottom: 30px; }
.bl-projects__item {
  height: 520px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: block;
}
.bl-projects__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  z-index: 1;
  transition: all 0.4s;
}
.bl-projects__item:hover::after { background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 50%); }
.bl-projects__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.bl-projects__item:hover img { transform: scale(1.08); }
.bl-projects__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px;
  z-index: 2;
  text-align: center;
}
.bl-projects__info h4 { color: var(--white); font-size: 17px; margin-bottom: 4px; font-weight: 600; }
.bl-projects__info span { color: rgba(255,255,255,0.8); font-size: 13px; }
.bl-projects__shine {
  position: relative;
  overflow: hidden;
}
.bl-projects__shine::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 3;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-25deg);
  opacity: 0;
  transition: opacity 0.3s;
}
.bl-projects__shine:hover::before {
  opacity: 0.7;
  animation: shine 0.95s;
}
@keyframes shine { 100% { left: 125%; } }
.bl-projects .view_more { margin-top: 40px; font-size: 15px; padding: 12px 24px; border-radius: 8px; }
.bl-projects .view_more:after { display: none; }
.bl-projects .owl-dots { margin-top: 24px !important; }

/* ============= 3D DESIGN REALITY ============= */
.bl-reality {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.bl-reality__tabs { margin-top: 40px; }
.bl-reality .nav-tabs { justify-content: center; border-bottom: none; gap: 4px; }
.bl-reality .nav-tabs .nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  transition: all 0.3s;
  margin: 0;
  position: relative;
}
.bl-reality .nav-tabs .nav-link:hover,
.bl-reality .nav-tabs .nav-link.active {
  background: var(--beige);
  color: var(--dark);
}
.bl-reality__swap {
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
}
.bl-reality__swap .img-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bl-reality__swap .img-wrapper:nth-child(2) { clip-path: inset(0 0 0 50%); }
.bl-reality__swap .img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.bl-reality__swap .swap-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--white);
  z-index: 2;
}
.bl-reality__swap input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  width: calc(100% + 2.25rem);
  height: 100%;
  left: -1.125rem;
  background: transparent;
  z-index: 3;
  cursor: pointer;
}
.bl-reality__swap input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 2.25rem;
  width: 2.25rem;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23fff'%3E%3Cpath d='M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z'/%3E%3C/svg%3E");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: grab;
}
.bl-reality__swap input:active::-webkit-slider-thumb { cursor: grabbing; }
.bl-reality__labels {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

/* ============= PROCESS / HOME INTERIORS MADE EASY ============= */
.bl-process {
  padding: 80px 0;
  background: var(--gradient-beige);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bl-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201,131,28,0.12), transparent 35%);
  pointer-events: none;
}
.bl-process .container { position: relative; z-index: 1; }
.bl-process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; }
.bl-process__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 12px 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(201,131,28,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.bl-process__card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.bl-process__step {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(201,131,28,0.25);
}
.bl-process__img {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.bl-process__img img { width: 100%; height: 100%; object-fit: cover; }
.bl-process__card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0; }
.bl-process__card h4 span { color: var(--gold-dark); font-weight: 600; }
.bl-process__bar {
  background: var(--gradient-gold);
  width: min(70%, 600px);
  height: 6px;
  border-radius: 999px;
  margin: 30px auto 20px;
  display: flex;
  justify-content: space-between;
}
.bl-process__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  position: relative;
  top: -7px;
  box-shadow: 0 0 0 4px rgba(201,131,28,0.15);
  cursor: pointer;
}
.bl-process__dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  inset: 0;
  margin: auto;
}
.bl-process__actions { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.bl-process__actions a { font-size: 14px; }

/* ============= COST CALCULATOR (SIMPLIFIED) ============= */
.bl-calculator {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.bl-calculator__card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.bl-calc__header { text-align: center; margin-bottom: 30px; }
.bl-calc__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  font-family: "Inter", sans-serif;
  margin-bottom: 6px;
}
.bl-calc__rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.bl-calc__room {
  text-align: center;
  padding: 14px 8px;
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
  position: relative;
}
.bl-calc__room:hover { border-color: var(--gold); transform: translateY(-2px); }
.bl-calc__room.selected {
  border-color: var(--gold);
  background: rgba(201,131,28,0.06);
  box-shadow: 0 4px 15px rgba(201,131,28,0.15);
}
.bl-calc__room i { font-size: 24px; color: var(--text-light); display: block; margin-bottom: 4px; }
.bl-calc__room.selected i { color: var(--gold); }
.bl-calc__room span { font-size: 12px; font-weight: 600; color: var(--text); }
.bl-calc__room .check {
  position: absolute;
  top: 4px;
  right: 4px;
  color: var(--gold);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.bl-calc__room.selected .check { opacity: 1; }
.bl-calc__fields { display: grid; gap: 14px; margin-bottom: 20px; }
.bl-calc__input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  width: 100%;
  transition: border-color 0.3s;
  background: var(--white);
}
.bl-calc__input:focus { outline: none; border-color: var(--gold); }
.bl-calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bl-calc__result {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  padding: 0 24px;
  background: var(--gradient-dark);
  border-radius: var(--radius);
  margin-top: 20px;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.bl-calc__result.show {
  max-height: 300px;
  opacity: 1;
  padding: 24px;
}
.bl-calc__result-amount {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.bl-calc__result-label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.bl-calc__submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.bl-calc__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,131,28,0.35); }

/* ============= LEADS / ENQUIRY FORM ============= */
.bl-leads {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.bl-leads::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,131,28,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.bl-leads .container { position: relative; z-index: 1; }
.bl-leads__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.bl-leads__info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 14px;
}
.bl-leads__info h2 span { color: var(--gold); font-weight: 300; }
.bl-leads__info p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; margin-bottom: 30px; }
.bl-leads__points { display: grid; gap: 14px; }
.bl-leads__point { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 15px; }
.bl-leads__point i { color: var(--gold); font-size: 18px; }
.bl-leads__form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.bl-leads__form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.bl-leads__form p.hint { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.bl-leads__form .form-group { margin-bottom: 16px; }
.bl-leads__form label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.bl-leads__form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all 0.3s;
}
.bl-leads__form .form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,131,28,0.08); }
.bl-leads__form select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; cursor: pointer; }
.bl-leads__form .btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.bl-leads__form .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,131,28,0.35); }
.bl-leads__form .checkbox-wrap { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); margin-bottom: 16px; cursor: pointer; }
.bl-leads__form .checkbox-wrap input { width: 16px; height: 16px; accent-color: var(--gold); }

/* ============= WHY CHOOSE ============= */
.bl-why {
  padding: 80px 0;
  background: var(--light);
  text-align: center;
}
.bl-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.bl-why__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid rgba(201,131,28,0.08);
}
.bl-why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bl-why__card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,131,28,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--gold);
}
.bl-why__card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.bl-why__card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ============= DESIGN CATALOGUE ============= */
.bl-catalogue {
  padding: 80px 0;
  background: var(--beige);
  text-align: center;
}
.bl-catalogue__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.bl-catalogue__item {
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: block;
}
.bl-catalogue__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.bl-catalogue__item:hover img { transform: scale(1.1); }
.bl-catalogue__item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
  background: rgba(0,0,0,0.5);
  text-align: center;
  transition: background 0.3s;
}
.bl-catalogue__item:hover .label { background: rgba(201,131,28,0.8); }
.bl-catalogue__item .label span { color: var(--white); font-size: 14px; font-weight: 600; }
.bl-catalogue__item::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-25deg);
  opacity: 0;
  transition: opacity 0.3s;
}
.bl-catalogue__item:hover::before { opacity: 0.7; animation: shine 0.95s; }
.bl-catalogue .view_more { font-size: 15px; padding: 12px 24px; border-radius: 8px; margin-top: 10px; }

/* ============= FAQ ============= */
.bl-faq {
  padding: 80px 0;
  background: var(--white);
}
.bl-faq__list { max-width: 800px; margin: 40px auto 0; }
.bl-faq__item {
  background: var(--light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
}
.bl-faq__item:hover { border-color: var(--gold); }
.bl-faq__q {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.bl-faq__q i { color: var(--gold); transition: transform 0.3s; font-size: 14px; }
.bl-faq__item.open .bl-faq__q i { transform: rotate(45deg); }
.bl-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 24px;
}
.bl-faq__item.open .bl-faq__a {
  max-height: 300px;
  padding: 0 24px 18px;
}
.bl-faq__a p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

.btn-outline-gold {
  background: transparent !important;
  color: var(--dark) !important;
  border: 2px solid var(--gold) !important;
  box-shadow: none !important;
}
.btn-outline-gold:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ============= CTA BANNER ============= */
.bl-cta {
  padding: 70px 0;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,131,28,0.08) 0%, transparent 60%);
}
.bl-cta .container { position: relative; z-index: 1; }
.bl-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}
.bl-cta h2 span { color: var(--gold); font-weight: 300; }
.bl-cta p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.bl-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-gold);
  color: var(--white);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(201,131,28,0.35);
}
.bl-cta a:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,131,28,0.5); color: var(--white); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1400px) {
  .bl-hero__title { font-size: 52px; }
}
@media (max-width: 1200px) {
  .bl-hero__title { font-size: 44px; }
  .bl-hero__content { max-width: 500px; }
  .bl-hero__stats { gap: 24px; }
  .bl-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .bl-projects__item { height: 440px; }
  .bl-process__grid { gap: 12px; }
  .bl-catalogue__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .bl-hero { min-height: 60vh; margin-top: 50px; }
  .bl-hero__title { font-size: 36px; }
  .bl-hero__stats { flex-wrap: wrap; gap: 20px; }
  .bl-hero__stat-num { font-size: 26px; }
  .bl-hero__split { grid-template-columns: 1fr; gap: 30px; }
  .bl-hero__content { text-align: center; }
  .bl-hero__content .bl-hero__actions { justify-content: center; }
  .bl-hero__content .bl-hero__stats { justify-content: center; }
  .bl-hero__sub { margin-left: auto; margin-right: auto; }
  .bl-hero__calc-title { font-size: 20px; }
  .bl-hero__calc-wrap { padding: 28px; }
  .bl-process__grid { grid-template-columns: repeat(3, 1fr); }
  .bl-calc__rooms { grid-template-columns: repeat(2, 1fr); }
  .bl-leads__grid { grid-template-columns: 1fr; gap: 30px; }
  .bl-why__grid { grid-template-columns: repeat(2, 1fr); }
  .bl-reality .nav-tabs .nav-link { font-size: 12px; padding: 8px 14px; }
}
@media (max-width: 767px) {
  .bl-hero { margin-top: 65px; min-height: auto; }
  .bl-hero__content { padding: 30px 0; text-align: center; }
  .bl-hero__content .bl-hero__actions { justify-content: center; }
  .bl-hero__content .bl-hero__stats { justify-content: center; }
  .bl-hero__sub { margin-left: auto; margin-right: auto; }
  .bl-hero__title { font-size: 30px; }
  .bl-hero__sub { font-size: 15px; }
  .bl-hero__actions { flex-direction: column; }
  .bl-hero__btn { justify-content: center; }
  .bl-hero__stats { padding-top: 20px; margin-top: 30px; gap: 16px; flex-wrap: wrap; }
  .bl-hero__split { grid-template-columns: 1fr; gap: 24px; }
  .bl-hero__calc-wrap { padding: 24px; }
  .bl-hero__calc-title { font-size: 18px; }
  .bl-hero__calc-rooms { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .bl-hero__calc-progress { gap: 0; flex-wrap: nowrap; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 15px; margin-bottom: 30px; }
  .bl-trust { padding: 40px 0; }
  .bl-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bl-trust__card { padding: 20px 12px; }
  .bl-projects { padding: 50px 0; }
  .bl-projects__item { height: 340px; }
  .bl-reality { padding: 50px 0; }
  .bl-reality .nav-tabs { flex-wrap: wrap; }
  .bl-process { padding: 50px 0; }
  .bl-process__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bl-process__card { padding: 40px 10px 14px; }
  .bl-process__img { height: 140px; }
  .bl-process__bar { display: none; }
  .bl-calculator { padding: 50px 0; }
  .bl-calculator__card { padding: 24px 16px; }
  .bl-calc__rooms { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bl-calc__row { grid-template-columns: 1fr; }
  .bl-leads { padding: 50px 0; }
  .bl-leads__form { padding: 24px 16px; }
  .bl-why { padding: 50px 0; }
  .bl-why__grid { grid-template-columns: 1fr; }
  .bl-catalogue { padding: 50px 0; }
  .bl-catalogue__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bl-catalogue__item { height: 180px; }
  .bl-faq { padding: 50px 0; }
  .bl-cta { padding: 50px 0; }
  .bl-cta h2 { font-size: 28px; }
  .bl-hero__btn--primary { font-size: 14px; padding: 14px 24px; }
  .bl-hero__btn--secondary { font-size: 14px; padding: 14px 24px; }
  .bl-calc__result-amount { font-size: 30px; }
  .bl-leads__info h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .bl-hero__title { font-size: 26px; }
  .bl-hero__badge { font-size: 11px; padding: 6px 14px; }
  .bl-hero__split { gap: 16px; }
  .bl-hero__calc-wrap { padding: 20px 16px; }
  .bl-hero__calc-rooms { grid-template-columns: repeat(2, 1fr); }
  .bl-trust__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .bl-projects__item { height: 280px; }
  .bl-process__grid { grid-template-columns: 1fr 1fr; }
  .bl-catalogue__grid { grid-template-columns: 1fr 1fr; }
  .bl-catalogue__item { height: 140px; }
}

/* ============================================================
   COST CALCULATOR UPGRADES — conversion & design alignment
   ============================================================ */
.calculator_teaser {
  margin: 15px 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.teaser_left {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.teaser_right {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blurred_price {
  filter: blur(4.5px);
  -webkit-filter: blur(4.5px);
  user-select: none;
  -webkit-user-select: none;
}
.unlock_badge {
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calculator_alert {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.calculator_incentives {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}
.incentive_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-align: left;
}
.incentive_item i {
  color: #2ecc71;
  font-size: 13px;
}
