/* ---------------------------------------------------------
   OSBS PREMIUM BOLD THEME CSS
   Author: ChatGPT (for Satish)
---------------------------------------------------------- */

/* GLOBAL RESET */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ---------------------------------------------------------
   HERO SECTION
---------------------------------------------------------- */
.est-hero-banner {
    height: 650px;
    background: url('images/estimator/placeholder.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.est-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.est-hero-content {
    position: relative;
    text-align: left;
    max-width: 750px;
    padding-top: 120px;
}

.est-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #ff8800;
}

.est-sub-text {
    font-size: 18px;
    margin-top: 10px;
    color: #f2f2f2;
}

/* ---------------------------------------------------------
   MAIN LAYOUT
---------------------------------------------------------- */
.est-main {
    padding: 50px 0;
}

.est-flex{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr;
  gap:25px;
  align-items:start;
}

.est-service-preview{
  width:100%;
  border-radius:12px;
  margin-bottom:18px;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}


@media(max-width:991px){
  .est-flex{
    grid-template-columns:1fr;
  }

  .est-info-global,
  .est-card-right{
    margin-top:20px;
  }

  .est-card-right{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
  }
}



.est-card-left {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
}

.est-card-right {
    width: 330px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
}

/* ---------------------------------------------------------
   STEPS
---------------------------------------------------------- */
.est-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.est-step {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    background: #ddd;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.est-step.active {
    background: #ff8800;
    color: #fff;
}

/* ---------------------------------------------------------
   ERROR BOX
---------------------------------------------------------- */
.est-error-box {
    padding: 12px;
    background: #ffe5e5;
    color: #b30000;
    border-left: 4px solid red;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* ---------------------------------------------------------
   INPUT + ICON FIELD
---------------------------------------------------------- */
.est-group {
    margin-bottom: 18px;
}

.est-label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

.est-input-wrap {
    position: relative;
}

.est-icon {
    width: 20px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.75;
}

.est-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-size: 15px;
    transition: 0.25s;
}

.est-input.has-icon {
  padding-left: 42px;
}




.est-dropdown-selected {
  padding: 12px 14px;
}

/* Only if icon exists */
.est-dropdown-selected.has-icon {
  padding-left: 42px;
}


.est-input:focus {
    border-color: #ff8800;
    background: #fff;
    box-shadow: 0 0 6px rgba(255,136,0,0.25);
}

/* ---------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.est-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.est-btn {
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.est-btn.primary {
    background: #ff8800;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255,136,0,0.35);
}

.est-btn.primary:hover {
    background: #e86e00;
}

.est-btn.ghost {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
}

.est-note {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

/* ---------------------------------------------------------
   SERVICE PREVIEW (RIGHT SIDEBAR)
---------------------------------------------------------- */
.service-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.trust-box {
    margin-top: 20px;
}

.trust-box h4 {
    font-size: 18px;
    font-weight: 700;
}

.trust-box ul {
    padding-left: 20px;
    margin-top: 10px;
}

.trust-box li {
    margin-bottom: 6px;
    color: #444;
}

/* ---------------------------------------------------------
   PACKAGE BOXES
---------------------------------------------------------- */
.pkg-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkg {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    background: #fafafa;
    transition: 0.25s;
}

.pkg:hover {
    border-color: #ff8800;
}

.pkg.selected {
    background: rgba(255,136,0,0.12);
    border-color: #ff8800;
    box-shadow: 0 3px 8px rgba(255,136,0,0.25);
}

/* ---------------------------------------------------------
   INTERIOR FLOOR PLAN
---------------------------------------------------------- */
.plan-btn, .purpose-btn {
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin: 4px;
    cursor: pointer;
    transition: 0.25s;
}

.plan-btn.active,
.purpose-btn.active {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
    box-shadow: 0 3px 10px rgba(255,136,0,0.25);
}

/* ---------------------------------------------------------
   NUMBER BUTTON CONTROL
---------------------------------------------------------- */
.num-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 22px;
    text-align: center;
    cursor: pointer;
    line-height: 33px;
    transition: 0.25s;
}

.num-btn:hover {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
}

/* ---------------------------------------------------------
   REVIEW BOX
---------------------------------------------------------- */
.review-box {
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

/* ---------------------------------------------------------
   MOBILE RESPONSIVENESS
---------------------------------------------------------- */
@media(max-width: 991px) {
    .est-flex {
        flex-direction: column;
    }
    .est-card-right {
        width: 100%;
    }
    .est-hero-banner {
        height: 350px;
    }
    .est-main-title {
        font-size: 28px;
    }
}


/* FONT AWESOME ICON SUPPORT */
.est-fa-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
    pointer-events: none;
}




/* CUSTOM DROPDOWN */
.est-dropdown {
  position: relative;
  cursor: pointer;
}

.est-dropdown-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fafafa;
  font-weight: 400;
}

.est-dropdown-selected .arrow {
  margin-left: auto;
}

.est-dropdown-options {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  margin-top: 6px;
  z-index: 100;
}

.est-option {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.est-option:hover {
  background: #ff8800;
  color: #fff;
}

.est-dropdown.open .est-dropdown-options {
  display: block;
}


/* STEP 1 GRID */
.est-step1-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:start;
}

/* FORM COMPACT */
.est-step1-form .est-input{
  padding:10px 14px 10px 42px;
  font-size:14px;
}

.est-fa-icon{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  color:#888;
}

/* INFO BLOCK */
.est-step1-info{
  background:#fafafa;
  border-radius:12px;
  padding:25px;
  border:1px solid #eee;
}

.est-step1-info h4{
  font-size:18px;
  margin-bottom:15px;
}

.est-step1-info ul{
  list-style:none;
  padding:0;
}

.est-step1-info li{
  margin-bottom:10px;
  font-size:15px;
}

.est-step1-info i{
  color:#ff8800;
  margin-right:8px;
}

.info-badge{
  margin-top:15px;
  background:rgba(255,136,0,0.1);
  padding:10px;
  border-radius:8px;
  font-weight:600;
}

/* MOBILE */
@media(max-width:991px){
  .est-step1-grid{
    grid-template-columns:1fr;
  }
  .est-step1-info{
    display:none;
  }
}


.est-info-global{
  background:#fafafa;
  border-radius:12px;
  padding:25px;
  border:1px solid #eee;
}

@media(max-width:991px){
  .est-flex{
    grid-template-columns:1fr;
  }
  .est-info-global{
    display:none;
  }
}


.est-faq-section {
  padding: 60px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.est-faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #333;
}

.est-faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* WHY CHOOSE OSBS – CLEAN TEXT STYLING */
.est-card-right {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.10);
}

.est-card-right h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.est-card-right p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: left;
  letter-spacing: normal;
  word-spacing: normal;
}

/* LIST FIX – NO GAPS */
.osbs-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.osbs-why-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  text-align: left;
  letter-spacing: normal;
  word-spacing: normal;
  white-space: normal;
}

/* CHECK ICON */
.osbs-why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8800;
  font-weight: bold;
}

@media(max-width: 991px) {
  .est-card-right {
    margin-top: 20px;
  }

  .est-card-right h4 {
    font-size: 16px;
  }

  .osbs-why-list li {
    font-size: 13px;
  }
}

.est-card-right .info-badge {
  margin-top: 15px;
  background: rgba(255,136,0,0.1);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
