@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  width: 100%;
}

.footer-row {
  border-top: 1px solid var(--social-color);
  margin-top: 70px;
}

.footer-col {
  margin: 28px 0;
}

body {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #000000;
  --border-color: #ffcc00;
  --hover-color: #2662fd;
  --secondary-color: #ffffff;
  --header-color: #80a3ff;
  --card-background-color: #f2f2f2;
  --text-color: #262626;
  --email-background-color: #c8c8c8;
  --social-color: #999999;
  --btn-color: #0072ff;
  --slider-color: #ffbf00;
}

a {
  display: inline-block;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
}

.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* title */
.title5 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.title4 {
  font-size: 24px;
  font-weight: 400;
}

.title1 {
  font-size: 65px;
  font-weight: 600;
  text-transform: uppercase;
}

.title2 {
  font-size: 55px;
  font-weight: 700;
}

.title3 {
  font-size: 32px;
  font-weight: 500;
}

/* ===== HERO / BANNER SECTION ===== */
.hero-section {
  width: 100%;
  /* min-height: 403px; */
  background: linear-gradient(90deg, #4f78ff, #6b8dff);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 20px;
}

.hero-main {
  height: 403px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ===== BULB ===== */
.bulb-wrapper {
  max-width: 400px;
  position: relative;
}

.bulb-wrapper>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.light-beam {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translateX(-50%);
  width: 280px;
  z-index: -1;
}

/* ===== CONTENT ===== */
/* .hero-container{
  margin-top: 400px;
} */
.hero-main {
  margin-top: 190px;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 3;
  text-align: center;
}

.hero-content h1 {
  font-size: 65px;
  font-weight: 500;
  width: 479px;
  margin: 142px auto 0;
}

.hero-content p {
  font-size: 18px;
}

.hero-content a {
  color: var(--secondary-color);
}

/* ===== WORKER ===== */
.worker-wrapper {
  max-width: 401px;
  height: 350px;
 position: relative;
}
.worker-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 420px;
  height: 100px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(47, 107, 255, 0.5) 25%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 75%
  );
  filter: blur(35px);
  z-index: 1;
}
.worker-wrapper>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========= END BANNER SECTION ============= */

/* ================================
   SERVICE DETAILS SECTION
================================ */

.service-page {
  background: #fff;
  padding: 100px 0;
}

.service-main {
  display: flex;
  justify-content: space-between;

}

/* COMMON BOX */
.left-panel,
.service-card,
.cart-box,
.offer-box,
.promise-box {
  background: #fff;
  border: 1px solid #00000080;
  border-radius: 12px;
  padding: 16px;
}

/* LEFT PANEL */
.left-panel {
  width: 380px;
  height: auto;
}

.panel-title {
  margin-bottom: 12px;
}

.panel-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #00000080;
}

.panel-title::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translateY(-50%);
  width: 155px;
  height: 1px;
  background-color: #00000080;
  margin-left: 12px;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.service-item img {
  margin-bottom: 9px;
  max-width: 92px;
}

.service-item span {
  font-size: 12px;
}

/* CENTER PANEL */
.center-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 500px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-info h4 {
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: bold;
}

.card-info p {
  font-size: 18px;
  margin-bottom: 9px;
}

.rating {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 9px;
}

.price {
  margin: 9px 0;
  font-size: 14px;
  font-weight: 500;
}

.card-image {
  text-align: center;
  position: relative;
  max-width: 201px;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.add-btn {
  margin-top: 8px;
  font-size: 18px;
  background: var(--secondary-color);
  color: var(--btn-color);
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  bottom: -18px;
  left: 70px;
}


.add-btn:hover {
  color: var(--secondary-color);
  background-color: var(--btn-color);
  transition: 0.3s;
}
/* isotop */
.service-card {
  transition: all 0.4s ease;
}

.service-card.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  display: none;
}

.service-item.active {
  background: #f1f5ff;
  border-radius: 10px;
}
/* RIGHT PANEL */
.right-panel {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-footer {
  margin-top: 12px;
}

.cart-box {
  width: 100%;
  border: 1px solid #00000080;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.cart-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.cart-item {
  display: flex;
  justify-content: space-between;
}

.item-name {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  width: 125px;
}

.item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 125px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f4ff;
  padding: 4px 8px;
  border-radius: 6px;
}

.qty-control button {
  border: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  color: #2962ff;
}

.qty-control span {
  font-size: 14px;
  font-weight: 500;
}

.item-price {
  font-size: 14px;
  font-weight: 600;
}

.cart-divider {
  margin: 12px 0;
  border: none;
  height: 1px;
  background: #242424;
}

.cart-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--hover-color);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.btn-price {
  font-weight: 600;
}

.cart-btn:hover {
  background: #1e4ed8;
}


.offer-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.offer-box h4 {
  font-size: 20px;
}

.offer-box p {
  font-size: 15px;
}

.offer-box a {
  color: var(--hover-color);
  font-size: 18px;
}

.promise-box {
  display: flex;
  justify-content: space-around;
}

.promise-box ul {
  list-style: none;
  margin-top: 10px;
}

.promise-box h4 {
  font-size: 20px;
}

.promise-box li {
  margin-bottom: 6px;
  font-size: 14px;
}

.promise-box img {
  width: 40px;
  margin-top: 10px;
}

/* =================== START FOOTER SECTION =============== */



/* --------- END FOOTER SECTION ------------- */
/* ====================================
==================================== */
/* ======================= Start media screen ======================= */

@media screen and (max-width: 1330px) {
  /* ---------- START HEADER SECTION ------------ */


  /* ---------- END HEADER SECTION ------------ */
  /* ---------- START BANNER SECTION ----------- */
  .hero-main {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .bulb-img {
    width: 180px;
  }

  .light-beam {
    width: 250px;
    height: 230px;
    left: 50%;
  }

  .worker-img {
    width: 330px;
  }

  /* ---------- END BANNER SECTION ----------- */
  /* ----------- START SERVICE SECTION ------------ */
  .service-main {
    gap: 20px;
  }

  .left-panel,
  .right-panel {
    width: 380px;
  }

  .center-panel {
    width: 500px;
  }

  .card-info h4 {
    font-size: 20px;
  }

  .card-info p {
    font-size: 16px;
  }

  .card-image img {
    width: 110px;
  }

}

@media screen and (max-width: 1200px) {
  .hero-main {
    height: 360px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .bulb-wrapper {
    left: 20px;

  }

  .bulb-img {
    width: 160px;
  }

  .light-beam {
    width: 220px;
    height: 210px;
  }

  .worker-img {
    width: 300px;
  }

  .worker-wrapper>img {
    width: 100%;
    height: 70%;
    object-fit: cover;
  }

  /* ------- END BANNER SECTION ------------ */
  /* ------- START SERVICE SECTION ------------ */
  .service-main {
    gap: 16px;
  }

  .panel-title::after {
    display: none;
  }

  .left-panel,
  .right-panel {
    max-width: 380px;
    height: auto;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .center-panel {
    width: 420px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-info h4 {
    font-size: 18px;
  }

  .card-info p {
    font-size: 15px;
  }

  .add-btn {
    font-size: 16px;
    left: 22px;
  }


}

@media screen and (max-width: 991px) {
  /* ---------- START HEADER SECTION ------------ */

  /* ---------- END HEADER SECTION ----------- */
  /* ----------- START BANNER SECTION ----------- */
  .hero-section {
    margin-top: -20px;
  }

  .hero-main {
    height: auto;
    min-height: 420px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
    gap: 20px;
  }

  /* Bulb top */
  .bulb-wrapper {
    position: relative;
    left: 0;
    top: 0;
    order: 1;
    margin: 0 auto;
  }


  .light-beam {
    width: 200px;
    height: 190px;
    top: 50%;
    left: 46%;
  }

  /* Text center */
  .hero-content {
    order: 2;
    text-align: center;
    margin: 170px auto 70px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* Worker bottom */
  .worker-wrapper {
    margin: 0 auto 0;
  }

  .worker-img {
    width: 250px;
  }

  /* ----------- END BANNER SECTION ----------- */
  /* ----------- START SERVICE SECTION ----------- */

  .service-page {
    padding: 70px 0;
  }

  .service-main {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .panel-title {
    text-align: center;
  }

  .panel-title::after {
    display: none;
  }

  .left-panel {
    max-width: 380px;
    margin-bottom: 30px;
  }

  .center-panel {
    max-width: 500px;
    margin-bottom: 30px;
  }

  .right-panel {
    max-width: 380px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-item img {
    width: 94px;
  }

  .service-card {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 30px;
  }

  .card-image {
    align-self: center;
  }

  .add-btn {
    margin-top: 8px;
  }

  .right-panel {
    gap: 12px;
  }


  /* ----------- END SERVICE SECTION ----------- */
  /* ------ START FOOTER SECTION ------ */

  /* ------ END FOOTER SECTION ------ */

}
@media screen and (max-width:576px){
  /* hero-sec */
  .hero-section{
    margin-top: -50px;
  }
 
}

/* Bottom Sheet Styles */
.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bottom-sheet-overlay.show {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 85vh;
  /* Allow it to take up to 85% of viewport height */
  display: flex;
  flex-direction: column;
}

.bottom-sheet.show {
  transform: translateY(0);
}

.sheet-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  position: relative;
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-shrink: 0;
  /* Keep header from shrinking */
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto 15px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheet-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.sheet-price {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
}

.sheet-add-btn {
  background: #fff;
  border: 1px solid var(--btn-color);
  color: var(--btn-color);
  padding: 6px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.sheet-add-btn:hover {
  background: var(--btn-color);
  color: #fff;
}

.close-sheet {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.sheet-body {
  padding: 20px;
  overflow-y: auto;
  /* Enable scrolling for content */
  flex-grow: 1;
  /* Allow body to take remaining space */
}

.sheet-section {
  margin-bottom: 20px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-steps {
  position: relative;
  padding-left: 10px;
}

.step-item {
  display: flex;
  gap: 15px;
  margin-bottom: 0px;
}

.step-icon {
  width: 24px;
  height: 24px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #555;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-details p {
  font-size: 12px;
  color: #000000;
  margin-bottom: 15px;
}

.step-line {
  width: 2px;
  background: #e0e0e0;
  height: 30px;
  /* Adjust based on gap */
  margin-left: 11px;
  /* Align with center of icon */
  margin-top: -10px;
  margin-bottom: 5px;
}

/* Hide the last line if possible, or just utilize layout carefully */
.step-item:last-child .step-details p {
  margin-bottom: 0;
}

.sheet-divider {
  border: none;
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.note-list {
  list-style: none;
  padding: 0;
}

.note-list li {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.note-list li i {
  color: #999;
}

.technician-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tech-features {
  list-style: none;
  padding: 0;
}

.tech-features li {
  font-size: 12px;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-features li i {
  color: #333;
}

.tech-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.faq-section {
  max-width: 420px;
  margin: auto;
  font-family: Inter, Arial, sans-serif;
}

.faq-section h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 0;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.faq-answer {
  font-size: 13px;
  color: #6b7280;
  margin-top: 5px;
  display: none;
  line-height: 1.5;
  padding-bottom: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}


/* Reviews */
.review-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.review-header .section-title {
  font-size: 24px;
  margin-bottom: 0;
}

.review-header span {
  color: #666;
  font-size: 14px;
}

.review-bars {
  margin-bottom: 20px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
}

.bar-bg {
  flex-grow: 1;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #333;
  border-radius: 3px;
}

.all-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.all-reviews-head h3 {
  font-size: 16px;
  font-weight: 600;
}

.review-tags {
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 11px;
  border: 1px solid #ddd;
  padding: 4px 10px;
  border-radius: 20px;
  color: #666;
}

.user-review {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.review-top h4 {
  font-size: 14px;
  font-weight: 600;
}

.rating-badge {
  background: #23a058;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}

.review-date {
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}

/* Desktop Handling */
@media (min-width: 768px) {
  .bottom-sheet {
    max-width: 500px;
    left: 50%;
    transform: translate(-50%, 100%);
    border-radius: 20px 20px 0 0;
  }

  .bottom-sheet.show {
    transform: translate(-50%, 0);
  }
}


/* =========================================
   Mobile Responsiveness (320px - 785px)
========================================= */
@media (max-width: 785px) {

  /* Global Container */
  .container {
    padding: 0 15px;
    max-width: 100%;
  }

  /* Header / Nav */
  .nav-top {
    display: none;
  }

  .navbar {
    padding: 10px;
  }

  .nav-logo {
    margin-left: 0;
    max-width: 140px;
  }


  .hero-main {
    height: auto;
    min-height: 420px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
    gap: 20px;
  }

  /* Bulb top */
  .bulb-wrapper {
    position: relative;
    left: 0;
    top: 0;
    order: 1;
  }

  .bulb-img {
    width: 190px;
  }

  /* Text center */
  .hero-content {
    order: 2;
    text-align: center;
    margin: 70px auto;
  }

  .hero-content h1 {
    font-size: 28px;
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* Worker bottom */
  .worker-wrapper {
    position: relative;
    right: 0;
    bottom: 0;
    order: 3;
  }

  .worker-img {
    width: 300px;
  }

  .light-beam {
    width: 140px;
    height: 120px;
    top: 180px;
  }

  .worker-wrapper>img {
    width: 100%;
    height: 70%;
    object-fit: cover;
  }

  /* Service Layout */

  .service-page {
    padding: 40px 0;
    height: auto;
  }

  .service-main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }

  .left-panel {
    height: auto;
    max-width: 380px;
    align-items: center;
  }

  .left-panel,
  .center-panel,
  .right-panel {
    width: 100%;
    padding: 12px;
  }

  .center-panel {
    max-width: 500px;
  }

  .right-panel {
    max-width: 380px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  }

  .service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .service-item img {
    margin-bottom: 16px;
    width: auto;
  }

  .panel-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .panel-title::after {
    display: none;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: 30px;
  }

  .card-info h4 {
    font-size: 17px;
  }

  .card-info p {
    font-size: 14px;
  }

  .add-btn {
    font-size: 14px;
  }

  .offer-box,
  .promise-box {
    flex-direction: column;
    text-align: center;
  }

}


/* ====================================
   BOTTOM SHEET / POPUP STYLES
==================================== */
.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bottom-sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Default Mobile Styles (Bottom Sheet) */
.bottom-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.bottom-sheet.active {
  bottom: 0;
}

/* Desktop Styles (Centered Popup) */
@media (min-width: 992px) {
  .bottom-sheet {
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 600px;
    /* Fixed width for popup */
    max-width: 90%;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    /* All corners rounded */
    opacity: 0;
    visibility: hidden;
  }

  .bottom-sheet.active {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .sheet-header {
    border-radius: 12px 12px 0 0;
  }
}

.sheet-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto 15px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheet-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.sheet-price {
  font-size: 14px;
  font-weight: 500;
}

.sheet-add-btn {
  background: #fff;
  color: var(--btn-color);
  border: 1px solid #ddd;
  padding: 6px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.close-sheet {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  visibility: visible;
}


.sheet-body {
  padding: 20px;
  overflow-y: auto;
  padding-bottom: 40px;
}

.sheet-section {
  margin-bottom: 25px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.step-item {
  display: flex;
  gap: 15px;
}

.step-icon {
  width: 24px;
  height: 24px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.step-details p {
  font-size: 13px;
  color: #666;
}

.step-line {
  width: 1px;
  height: 15px;
  background: #ddd;
  margin-left: 12px;
  margin-top: -8px;
  margin-bottom: -8px;
}

.step-line:last-child {
  display: none;
}

.sheet-divider {
  border: none;
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

/* Note List */
.note-list {
  list-style: none;
  padding: 0;
}

.note-list li {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

/* Technician Card */
.technician-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
}

.tech-features {
  list-style: none;
  padding: 0;
}

.tech-features li {
  font-size: 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
}

.tech-img {
  width: 100px;
  height: auto;
  object-fit: cover;
}

/* FAQ */
.faq-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.faq-item .arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: #888;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: #666;
  margin-top: 0;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

/* Reviews */
.review-header {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 15px;
}

.review-header span {
  font-size: 13px;
  color: #666;
}

.review-bars {
  margin-bottom: 25px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 5px;
}

.bar-bg {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #28a745;
}

.all-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.all-reviews-head h3 {
  font-size: 16px;
  font-weight: 600;
}

.review-tags {
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 10px;
  border: 1px solid #ddd;
  padding: 3px 8px;
  border-radius: 12px;
  color: #666;
}

.user-review {
  margin-bottom: 20px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.review-top h4 {
  font-size: 14px;
  font-weight: 600;
}

.rating-badge {
  background: #28a745;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

.review-date {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

/* =========================================
   ADDED BY AGENT: Sticky Header & Fixes
   ========================================= */
.header-sec {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  background: #fff;
  /* Ensure background is opaque */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-hide {
  transform: translateY(-100%);
}

/* Push main content down so it's not hidden behind fixed header */
main {
  padding-top: 180px;
  /* Adjusted to approximate header height */
  position: relative;
  z-index: 1;
}

/* Ensure Hero Images are visible */
.hero-section {
  overflow: visible !important;
}

/* Fix for broken image paths in cleaners if any */