/* ============ COST CALCULATOR STYLES ============ */
:root {
  --gold: #C8794D;
  --gold-light: #d4942a;
  --gold-dark: #a06b15;
  --dark: #0D0D0D;
  --dark-2: #1a1a1a;
  --gray: #f5f5f5;
  --gray-dark: #666;
  --white: #fff;
  --gradient-gold: linear-gradient(135deg, #C8794D 0%, #e8a83a 50%, #C8794D 100%);
  --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1a1a1a 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: 16px;
  --radius-sm: 10px;
}

.gold { color: var(--gold) !important; }

/* ============ HERO BANNER ============ */
.calc_hero {
  margin-top: 83px;
  position: relative;
  background: var(--gradient-dark);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.calc_hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,131,28,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite alternate;
}
.calc_hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,131,28,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hero_overlay {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero_content { text-align: center; max-width: 800px; margin: 0 auto; }
.hero_badge {
  display: inline-block;
  background: rgba(201,131,28,0.2);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(201,131,28,0.3);
  backdrop-filter: blur(10px);
}
.hero_title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero_title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero_subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero_stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}
.stat_item { text-align: center; }
.stat_num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat_plus {
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
}
.stat_label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 0;
}
.hero_cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-gold);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(201,131,28,0.4);
}
.hero_cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,131,28,0.5);
  color: var(--white);
}
.hero_cta i { transition: transform 0.3s; }
.hero_cta:hover i { transform: translateX(5px); }

/* ============ CALCULATOR SECTION ============ */
.calc_section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f8f8 0%, var(--white) 100%);
}
.calc_header { text-align: center; margin-bottom: 50px; }
.calc_badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.calc_title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.calc_desc { font-size: 16px; color: var(--gray-dark); max-width: 600px; margin: 0 auto; }

/* ============ PROGRESS STEPS ============ */
.progress_steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 0;
}
.progress_step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  position: relative;
}
.progress_step:hover { border-color: var(--gold); }
.progress_step.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,131,28,0.08), rgba(201,131,28,0.02));
  box-shadow: 0 4px 20px rgba(201,131,28,0.15);
}
.progress_step.success .step_check {
  background: var(--gold);
  color: var(--white);
  display: flex;
}
.progress_step.success .step_number { display: none; }
.step_number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.progress_step.active .step_number {
  background: var(--gradient-gold);
  color: var(--white);
}
.step_info { display: flex; flex-direction: column; }
.step_label {
  font-size: 11px;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.step_name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.step_check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8e8e8;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.progress_line {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 4px;
}

/* ============ CALC STEP CONTAINER ============ */
.calc_step {
  max-width: 800px;
  margin: 0 auto;
}
.step_content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.step_heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.step_hint { font-size: 15px; color: var(--gray-dark); margin-bottom: 30px; }

/* ============ ROOM GRID ============ */
.room_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.room_card {
  position: relative;
  background: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.room_card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201,131,28,0.15);
}
.room_card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.room_card input:checked ~ .room_selected { opacity: 1; transform: scale(1); }
.room_card input:checked ~ .room_icon { color: var(--gold); }
.room_card:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,131,28,0.06), rgba(201,131,28,0.02));
  box-shadow: 0 8px 25px rgba(201,131,28,0.2);
}
.room_icon {
  font-size: 32px;
  color: var(--gray-dark);
  transition: all 0.3s;
}
.room_name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.room_selected {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.step_actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.btn_next, .btn_back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn_next {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201,131,28,0.3);
}
.btn_next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,131,28,0.4);
  color: var(--white);
}
.btn_back {
  background: var(--dark);
  color: var(--gold);
}
.btn_back:hover {
  background: #222;
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn_book { background: #28a745 !important; box-shadow: 0 4px 15px rgba(40,167,69,0.3) !important; }
.btn_book:hover { background: #218838 !important; }

/* ============ FORM STYLES ============ */
.form_card {
  max-width: 600px;
  margin: 0 auto;
}
.form_group { margin-bottom: 22px; }
.form_group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.required { color: #e74c3c; }
.input_wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input_wrapper i {
  position: absolute;
  left: 16px;
  color: var(--gray-dark);
  font-size: 16px;
  z-index: 2;
}
.form_input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: all 0.3s;
  background: var(--white);
}
.form_input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,131,28,0.1);
}
.form_select {
  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 14px center;
  background-size: 20px;
  cursor: pointer;
  padding-right: 44px;
}
.form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form_check { margin-bottom: 16px; }
.checkbox_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark);
}
.checkbox_wrapper input { display: none; }
.check_box {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.check_box i { font-size: 11px; color: transparent; transition: all 0.2s; }
.checkbox_wrapper input:checked + .check_box {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox_wrapper input:checked + .check_box i { color: var(--white); }
.checkbox_wrapper a { color: var(--gold); text-decoration: underline; }

/* ============ ESTIMATE RESULT ============ */
.estimate_result { text-align: center; }
.result_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4edda;
  color: #155724;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
}
.result_badge i { font-size: 18px; }
.empty_state {
  padding: 60px 20px;
  color: var(--gray-dark);
}
.empty_state i { font-size: 48px; color: #ddd; margin-bottom: 16px; }
.empty_state h4 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.total_cost_wrap {
  background: var(--gradient-dark);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.total_label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.total_amount {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cost_breakdown {
  background: #f8f8f8;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.breakdown_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.breakdown_label { font-size: 14px; color: var(--gray-dark); }
.breakdown_value { font-size: 16px; font-weight: 700; color: var(--dark); }
.breakdown_divider { height: 1px; background: #e0e0e0; }
.contact_info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--gray);
  border-radius: var(--radius-sm);
}
.contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark);
}
.contact_item i { color: var(--gold); }
.result_footer { margin-top: 20px; }
.terms_text {
  font-size: 12px;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

/* ============ TRUST SECTION ============ */
.trust_section {
  padding: 80px 0;
  background: var(--white);
}
.trust_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust_card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--gray);
  transition: all 0.3s ease;
}
.trust_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.trust_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--white);
}
.trust_card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.trust_card p {
  font-size: 14px;
  color: var(--gray-dark);
  margin: 0;
}

/* ============ PROCESS SECTION ============ */
.process_section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray) 100%);
}
.section_header { text-align: center; margin-bottom: 50px; }
.section_badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section_title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.section_desc { font-size: 16px; color: var(--gray-dark); }
.process_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process_card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.process_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.process_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.process_card:hover::before { transform: scaleX(1); }
.process_num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,131,28,0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.process_icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.process_card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.process_card p {
  font-size: 14px;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1400px) {
  .container { max-width: 1000px; }
  .hero_title { font-size: 42px; }
}

@media (max-width: 1200px) {
  .container { max-width: 840px; }
  .hero_title { font-size: 36px; }
  .hero_stats { gap: 30px; }
  .room_grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .trust_grid, .process_grid { grid-template-columns: repeat(2, 1fr); }
  .calc_hero { min-height: 500px; }
}

@media (max-width: 991px) {
  .container { max-width: 650px; }
  .hero_title { font-size: 30px; }
  .hero_stats { gap: 20px; }
  .stat_num { font-size: 28px; }
  .room_grid { grid-template-columns: repeat(3, 1fr); }
  .progress_step { padding: 10px 14px; }
  .step_name { font-size: 13px; }
  .step_number { width: 30px; height: 30px; font-size: 13px; }
  .progress_line { width: 20px; }
}

@media (max-width: 767px) {
  .calc_hero { margin-top: 65px; min-height: auto; }
  .hero_content { padding: 20px 0; }
  .hero_title { font-size: 26px; }
  .hero_subtitle { font-size: 15px; }
  .hero_stats { flex-wrap: wrap; gap: 16px; }
  .stat_item { width: 30%; }
  .stat_num { font-size: 24px; }
  .hero_cta { padding: 14px 28px; font-size: 15px; }
  .calc_section { padding: 50px 0; }
  .calc_title { font-size: 24px; }
  .room_grid { grid-template-columns: repeat(2, 1fr); }
  .trust_grid, .process_grid { grid-template-columns: 1fr; }
  .form_row { grid-template-columns: 1fr; }
  .step_actions { flex-direction: column; align-items: center; }
  .btn_next, .btn_back { width: 100%; justify-content: center; }
  .step_content { padding: 24px 20px; }
  .progress_steps { flex-wrap: wrap; gap: 8px; }
  .progress_step { width: 100%; justify-content: center; }
  .progress_line { display: none; }
  .calc_hero::before, .calc_hero::after { display: none; }
  .total_amount { font-size: 32px; }
  .contact_info { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero_title { font-size: 22px; }
  .hero_badge { font-size: 12px; padding: 6px 16px; }
  .hero_cta { padding: 12px 24px; font-size: 14px; }
  .room_grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .room_card { padding: 14px 10px; }
  .room_icon { font-size: 24px; }
  .room_name { font-size: 12px; }
}

/* ============ INTERACTIVE CONVERSION UPGRADES ============ */
.live_teaser_box {
  background: rgba(200, 121, 77, 0.06);
  border: 1.5px dashed rgba(200, 121, 77, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.teaser_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.teaser_left, .teaser_right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.teaser_left i {
  font-size: 17px;
  color: #C8794D;
}
.text-gold {
  color: #C8794D !important;
}
#teaser-room-count, #teaser-base-price {
  color: #C8794D;
  font-weight: 700;
}
.blurred_price {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  user-select: none;
  -webkit-user-select: none;
  background: rgba(200, 121, 77, 0.12);
  padding: 2px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 1px;
  color: #C8794D;
}

.calculator_alert {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #155724;
  line-height: 1.4;
  animation: calcPulse 2.5s infinite;
}
@keyframes calcPulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25); }
  70% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
.calculator_alert i {
  font-size: 18px;
  color: #28a745;
}

.calculator_incentives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
  background: rgba(200, 121, 77, 0.05);
  border: 1px solid rgba(200, 121, 77, 0.15);
  border-radius: 12px;
  padding: 16px;
}
.incentive_item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #2b2b2b;
  font-weight: 600;
}
.incentive_item i {
  font-size: 16px;
  color: #C8794D;
  width: 20px;
  text-align: center;
}

