:root{--service-color:#d10b63;--service-soft:#fff0f6;--service-border:#ffc7dc;--service-dark:#071f4d;}
.simple-gallery-page,
.simple-gallery-page *{
  box-sizing:border-box;
}

.simple-gallery-page{
  font-family:'Poppins',sans-serif;
  color:#1f2937;
  overflow:hidden;
}

/* Banner */
.gallery-page-banner{
  width:100%;
  min-height:100px;
  background:#0f9bc6;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:70px 16px;
}

.gallery-page-banner span{
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.gallery-page-banner h1{
      font-size: 45px;
    line-height: 1.08;
    font-weight: 500;
    font-family: "Cormorant Garamond", Georgia, serif;
  color:#ffffff;
  margin:14px 0 10px;
}

.gallery-page-banner p{
  font-size:16px;
  color:#aeb0b3;
  margin:0;
}

/* Gallery */
.gallery-main-section{
  background:#fff;
  padding:75px 16px;
}

.gallery-container{
  max-width:1200px;
  margin:auto;
}

.gallery-heading{
  text-align:center;
  margin-bottom:45px;
}

.gallery-heading span{
  color:#ca0958;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.gallery-heading h2{
  font-size:38px;
  color:#1f2937;
  margin:10px 0 0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.gallery-item{
  height:250px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  background:#fff4f8;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.45s ease;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:#0f9bc68a;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.35s ease;
}

.gallery-overlay i{
  width:52px;
  height:52px;
  background:#fff;
  color:gray;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

/* Lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.gallery-lightbox.active{
  display:flex;
}

.gallery-lightbox img{
  max-width:92%;
  max-height:86vh;
  border-radius:14px;
  background:#fff;
  padding:6px;
}

.gallery-close{
  position:absolute;
  top:22px;
  right:32px;
  color:#fff;
  font-size:44px;
  cursor:pointer;
  line-height:1;
}

/* Responsive */
@media(max-width:991px){
 .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .gallery-item{
    height:220px;
  }
}


/* Mobile */
@media(max-width:576px){
  .gallery-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
}
@media(max-width:768px){
  .gallery-page-banner{
    min-height:250px;
    padding:55px 14px;
  }

  .gallery-page-banner h1{
    font-size:38px;
  }

  .gallery-main-section{
    padding:55px 14px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }

  .gallery-item{
    height:190px;
    border-radius:14px;
  }

  .gallery-heading h2{
    font-size:30px;
  }
}

@media(max-width:480px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item{
    height:230px;
  }

  .gallery-page-banner h1{
    font-size:32px;
  }

  .gallery-page-banner p{
    font-size:14px;
  }

  .gallery-close{
    top:14px;
    right:20px;
    font-size:38px;
  }
}

/* Category theme applied: gyno */
.service-page{background:#fff7fb;}
.opening-box,.gyno-service-box,.detail-card,.faq-item{border-color:var(--service-border)!important;}
.call-box,.round-appointment-btn{background:var(--service-color)!important;}
.gyno-service-box a:hover,.gyno-service-box a.active{color:var(--service-color)!important;}
.call-box a{display:block;margin-top:6px;}


/* ===== FAQ accordion final fix ===== */
.faq-item h3,
.faq-item h4{
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 !important;
}
.faq-item h3::after,
.faq-item h4::after{
  content:"+";
  margin-left:15px;
  font-size:22px;
  line-height:1;
  color:var(--service-color, #d10b63);
  font-family:Arial, sans-serif;
  font-weight:400;
  flex-shrink:0;
}
.faq-item.active h3::after,
.faq-item.active h4::after,
.faq-item.open h3::after,
.faq-item.open h4::after{
  content:"−";
}
.faq-item > p{
  display:none !important;
  padding:0 18px 16px !important;
  margin:0 !important;
}
.faq-item.active > p,
.faq-item.open > p{
  display:block !important;
}


/* FAQ accordion fix */
.faq-item > p{display:none;}
.faq-item.active > p,
.faq-item.open > p{display:block;}
.faq-item h3,
.faq-item h4{cursor:pointer;}
.faq-item h3::after,
.faq-item h4::after{
  content:"+";
  float:right;
  font-family:Arial, sans-serif;
  color:var(--service-color, #d10b63);
  font-weight:600;
}
.faq-item.active h3::after,
.faq-item.open h3::after,
.faq-item.active h4::after,
.faq-item.open h4::after{content:"−";}
