/* ==========================================================================
   SKUCCII SUPERCLINIQ - CUSTOM PAGES STYLING (EXPERTS, BLOGS, PRESS)
   ========================================================================== */

/* ==========================================================================
   1. EXPERTS PAGE STYLING (.experts-page)
   ========================================================================== */

.experts-page {
  background-color: var(--white);
}

.experts-page .section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Founder / Co-Founder Section */
.experts-page .founder-section {
  padding: 80px 0;
  background-color: #F8F9FD;
}

.experts-page .founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experts-page .founder-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(144, 93, 167, 0.15);
}

.experts-page .founder-img-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: var(--transition);
}

.experts-page .founder-img-wrap:hover img {
  transform: scale(1.03);
}

.experts-page .founder-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 25px;
}

.experts-page .founder-bio {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.experts-page .founder-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(144, 93, 167, 0.1);
}

.experts-page .credential-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1;
}

.experts-page .credential-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* Other Experts Grid Section */
.experts-page .team-section {
  padding: 80px 0;
}

.experts-page .team-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--purple);
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

.experts-page .team-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
  line-height: 1.6;
}

.experts-page .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.experts-page .expert-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(144, 93, 167, 0.05);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.experts-page .expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(144, 93, 167, 0.12);
  border-color: rgba(144, 93, 167, 0.15);
}

.experts-page .expert-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.experts-page .expert-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.experts-page .expert-card:hover .expert-img-wrap img {
  transform: scale(1.04);
}

.experts-page .expert-info {
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experts-page .expert-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.experts-page .expert-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

.experts-page .expert-exp {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 12px;
}

/* Modal styling */
.experts-page .modal-content {
  border-radius: 24px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.experts-page .modal-body {
  padding: 40px;
}

.experts-page .modal-img-col img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(144, 93, 167, 0.1);
}

.experts-page .modal-desc-col {
  padding-left: 20px;
}

.experts-page .modal-doc-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--purple);
  margin-bottom: 8px;
}

.experts-page .modal-doc-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.experts-page .modal-doc-bio p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==========================================================================
   2. BLOGS PAGE STYLING (.blogs-page)
   ========================================================================== */

.blogs-page {
  background-color: #F8F9FD;
}

.blogs-page .blogs-grid-section {
  padding: 50px 0;
}

.blogs-page .blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.blogs-page .blog-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(144, 93, 167, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blogs-page .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(144, 93, 167, 0.1);
  border-color: rgba(144, 93, 167, 0.12);
}

.blogs-page .blog-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.blogs-page .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blogs-page .blog-card:hover .blog-img-wrap img {
  transform: scale(1.04);
}

.blogs-page .blog-info {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blogs-page .blog-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 15px;
  letter-spacing: 0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-page .blog-excerpt {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-page .blog-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.blogs-page .blog-link i {
  font-size: 0.75rem;
  margin-left: 6px;
  transition: var(--transition);
}

.blogs-page .blog-link:hover {
  color: var(--gold);
}

.blogs-page .blog-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   3. PRESS PAGE STYLING (.press-page)
   ========================================================================== */

.press-page {
  background-color: var(--white);
}

.press-page .press-gallery-section {
  padding: 50px 0;
}

.press-page .press-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--purple);
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

.press-page .press-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
  line-height: 1.6;
}

.press-page .press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.press-page .press-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(144, 93, 167, 0.03);
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  position: relative;
}

.press-page .press-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 15px 35px rgba(144, 93, 167, 0.12);
  border-color: rgba(144, 93, 167, 0.15);
}

.press-page .press-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.press-page .press-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(144, 93, 167, 0.8) 0%, rgba(144, 93, 167, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.press-page .press-card:hover .press-overlay {
  opacity: 1;
}

.press-page .press-zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.press-page .press-zoom-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.press-page .press-card:hover .press-zoom-icon {
  transform: translateY(0);
}

/* Press Swiper Slider */
.press-slider-wrap {
  position: relative;
  padding: 0 50px;
}

.press-swiper {
  overflow: hidden;
}

.press-card-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.press-card-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.press-card-link:hover img {
  transform: scale(1.03);
}

.press-nav-prev,
.press-nav-next {
  color: var(--purple) !important;
}

.press-nav-prev {
  left: 0 !important;
}

.press-nav-next {
  right: 0 !important;
}

.press-nav-prev:after,
.press-nav-next:after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

@media (max-width: 767px) {
  .press-slider-wrap {
    padding: 0 35px;
  }
}

/* Press Lightbox Modal */
.press-page .press-lightbox-modal .modal-dialog {
  max-width: 700px;
  margin: 3rem auto;
}

.press-page .press-lightbox-modal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

.press-page .press-lightbox-modal .modal-body {
  padding: 0;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
}

.press-page .press-lightbox-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.press-page .press-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  background: none;
  border: none;
  font-size: 2rem;
  opacity: 0.8;
  transition: var(--transition);
}

.press-page .press-lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   4. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1199px) {
  .experts-page .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .press-page .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .experts-page .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experts-page .founder-img-wrap img {
    height: 450px;
  }

  .experts-page .founder-title {
    font-size: 2.2rem;
  }

  .experts-page .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-page .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-page .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .experts-page .founder-section {
    padding: 50px 0;
  }

  .experts-page .founder-title {
    font-size: 1.8rem;
  }

  .experts-page .team-section {
    padding: 50px 0;
  }

  .experts-page .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experts-page .expert-img-wrap {
    height: 360px;
  }

  .experts-page .modal-body {
    padding: 25px;
  }

  .experts-page .modal-desc-col {
    padding-left: 0;
    margin-top: 25px;
  }

  .experts-page .modal-doc-name {
    font-size: 1.8rem;
  }

  .blogs-page .blogs-grid-section {
    padding: 30px 0;
  }

  .blogs-page .blogs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .press-page .press-gallery-section {
    padding: 50px 0;
  }

  .press-page .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .press-page .press-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .press-page .press-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5. BLOG POST DETAIL PAGE STYLING (.blog-post-page)
   ========================================================================== */

.blog-post-page {
  background-color: var(--white);
  padding-top: 100px;
}

.blog-post-content-section {
  padding: 80px 0;
  background-color: var(--white);
}

.blog-post-header {
  margin-bottom: 40px;
  text-align: center;
}

.blog-post-date {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.blog-post-main-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1.25;
  margin: 0 auto;
  max-width: 900px;
}

.blog-post-body-content {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
}

.blog-post-body-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 25px;
  color: #333;
}

.blog-post-body-content h2,
.blog-post-body-content h3,
.blog-post-body-content h4 {
  font-family: var(--font-heading);
  color: var(--purple);
  font-weight: 400;
  margin-top: 45px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-post-body-content h2 {
  font-size: 2rem;
}

.blog-post-body-content h3 {
  font-size: 1.6rem;
}

.blog-post-body-content h4 {
  font-size: 1.3rem;
}

.blog-post-body-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
}

.blog-post-body-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-post-body-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 35px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Stylings for Elementor CTA blocks inside blog content */
.blog-post-body-content .elementor-element {
  margin: 40px 0;
}

.blog-post-body-content a.elementor-button {
  display: inline-block;
  background-color: var(--purple);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(144, 93, 167, 0.2);
}

.blog-post-body-content a.elementor-button:hover {
  background-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  color: var(--white);
}

.blog-post-body-content .elementor-element[data-settings*="background_background"] {
  background-color: #F8F9FD;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(144, 93, 167, 0.05);
  text-align: center;
}

.blog-post-body-content .elementor-element[data-settings*="background_background"] h3 {
  margin-top: 0;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .blog-post-main-title {
    font-size: 2rem;
  }

  .blog-post-content-section {
    padding: 50px 0;
  }
}

/* ==========================================================================
   6. ELEMENTOR ACCORDION / FAQ STYLING FOR BLOG PAGES
   ========================================================================== */

.blog-post-body-content .elementor-accordion {
  border: 1px solid rgba(144, 93, 167, 0.15);
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-post-body-content .elementor-accordion-item {
  border-bottom: 1px solid rgba(144, 93, 167, 0.1);
}

.blog-post-body-content .elementor-accordion-item:last-child {
  border-bottom: none;
}

.blog-post-body-content .elementor-tab-title {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.blog-post-body-content .elementor-tab-title:hover {
  background-color: #F8F9FD;
}

.blog-post-body-content .elementor-tab-title.elementor-active {
  background-color: #F8F9FD;
  border-bottom: 1px solid rgba(144, 93, 167, 0.05);
}

.blog-post-body-content .elementor-accordion-icon {
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-body-content .elementor-accordion-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--purple);
  transition: var(--transition);
}

.blog-post-body-content .elementor-accordion-icon-opened {
  display: none;
}

.blog-post-body-content .elementor-accordion-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.blog-post-body-content .elementor-tab-content {
  display: none;
  /* Hide content by default */
  padding: 20px 25px 25px 57px;
  background-color: var(--white);
  font-size: 0.98rem;
  line-height: 1.8;
  color: #444;
  border-top: 1px solid rgba(144, 93, 167, 0.05);
}

.blog-post-body-content .elementor-tab-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: #444;
}

/* Show content when title has elementor-active class */
.blog-post-body-content .elementor-tab-title.elementor-active+.elementor-tab-content {
  display: block;
}

/* Icon Toggles based on elementor-active state */
.blog-post-body-content .elementor-tab-title.elementor-active .elementor-accordion-icon-closed {
  display: none;
}

.blog-post-body-content .elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
  display: inline-block;
}

/* Active title font color */
.blog-post-body-content .elementor-tab-title.elementor-active .elementor-accordion-title {
  color: var(--purple);
}

/* ==========================================================================
   7. BLOG POST TABLES STYLING
   ========================================================================== */

/* Wrap tables in a scrollable container for responsiveness */
.blog-post-body-content .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 40px 0;
  border-radius: 12px;
}

.blog-post-body-content table {
  width: 100% !important;
  height: auto !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid rgba(144, 93, 167, 0.15) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin: 40px 0 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
}

/* If inside a responsive wrapper, reset margins */
.blog-post-body-content .table-responsive table {
  margin: 0 !important;
}

.blog-post-body-content td,
.blog-post-body-content th {
  padding: 16px 20px !important;
  border-right: 1px solid rgba(144, 93, 167, 0.12) !important;
  border-bottom: 1px solid rgba(144, 93, 167, 0.12) !important;
  vertical-align: middle !important;
  color: #444 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

/* Remove border-right on the last column */
.blog-post-body-content td:last-child,
.blog-post-body-content th:last-child {
  border-right: none !important;
}

/* Remove border-bottom on the last row */
.blog-post-body-content tr:last-child td,
.blog-post-body-content tr:last-child th {
  border-bottom: none !important;
}

/* Header Row (First row of table) */
.blog-post-body-content tr:first-child {
  background-color: #F8F9FD !important;
}

.blog-post-body-content tr:first-child td,
.blog-post-body-content tr:first-child th {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  color: var(--purple) !important;
  font-size: 1rem !important;
}

/* Remove spacing from inner paragraph tags in table cells */
.blog-post-body-content td p,
.blog-post-body-content th p {
  margin-bottom: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}

/* Specific cell border-radius rules to match the table corners */
.blog-post-body-content tr:first-child td:first-child,
.blog-post-body-content tr:first-child th:first-child {
  border-top-left-radius: 11px !important;
}

.blog-post-body-content tr:first-child td:last-child,
.blog-post-body-content tr:first-child th:last-child {
  border-top-right-radius: 11px !important;
}

.blog-post-body-content tr:last-child td:first-child,
.blog-post-body-content tr:last-child th:first-child {
  border-bottom-left-radius: 11px !important;
}

.blog-post-body-content tr:last-child td:last-child,
.blog-post-body-content tr:last-child th:last-child {
  border-bottom-right-radius: 11px !important;
}

/* ==========================================================================
   8. DR. MEGHNA MOUR PAGE SECTIONS
   ========================================================================== */

/* Intro Section */
.meghna-intro-section {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.meghna-intro-section p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* About Section */
.meghna-about-section {
  padding: 60px 0;
  background: #F8F9FD;
}

.meghna-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.meghna-about-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.meghna-about-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.meghna-about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
  margin-bottom: 12px;
}

.meghna-about-content p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Celebrity Gallery Slider */
.meghna-gallery-section {
  padding: 50px 0;
  background: var(--white);
}

.meghna-gallery-swiper {
  overflow: hidden;
  padding-bottom: 40px;
}

.meghna-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.meghna-gallery-pagination {
  text-align: center;
  margin-top: 10px;
}

.meghna-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  margin: 0 5px !important;
  transition: var(--transition);
}

.meghna-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--purple);
}

/* Certifications Section */
.meghna-certs-section {
  padding: 60px 0;
  background: var(--white);
}

.meghna-certs-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.meghna-certs-swiper {
  overflow: hidden;
  padding-bottom: 40px;
}

.meghna-certs-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.meghna-certs-swiper .swiper-slide img {
  height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.meghna-certs-pagination {
  text-align: center;
  margin-top: 10px;
}

.meghna-certs-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  margin: 0 5px !important;
  transition: var(--transition);
}

.meghna-certs-pagination .swiper-pagination-bullet-active {
  background: var(--purple);
}

/* Book Appointment CTA */
.meghna-cta-section {
  padding: 40px 0;
  background: #2a1e3a;
}

.meghna-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.meghna-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

.meghna-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border: 1.5px solid #fff;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.meghna-cta-btn:hover {
  background: #fff;
  color: #2a1e3a;
}

/* Specializations Section */
.meghna-specs-section {
  padding: 70px 0;
  background: var(--white);
}

.meghna-specs-section h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.meghna-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.meghna-specs-grid p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

/* Professional Experience Section */
.meghna-exp-section {
  padding: 70px 0;
  background: #F8F9FD;
}

.meghna-exp-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.meghna-exp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.meghna-exp-text p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}

.meghna-exp-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.meghna-faq-section {
  padding: 70px 0;
  background: var(--white);
}

.meghna-faq-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.meghna-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.meghna-faq-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.meghna-faq-item {
  border: 1px solid rgba(144, 93, 167, 0.15);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.meghna-faq-item.active {
  border-color: var(--purple);
}

.meghna-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  text-align: left;
  transition: var(--transition);
}

.meghna-faq-item.active .meghna-faq-question {
  background: var(--purple);
  color: #fff;
}

.faq-toggle {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--purple);
  transition: var(--transition);
}

.meghna-faq-item.active .faq-toggle {
  color: #fff;
}

.meghna-faq-item.active .faq-toggle i::before {
  content: "\f068";
}

.meghna-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.meghna-faq-item.active .meghna-faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

.meghna-faq-answer p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* Meghna Page Responsive */
@media (max-width: 991px) {
  .meghna-about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .meghna-specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meghna-exp-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .meghna-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .meghna-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   9. CATEGORY PAGES (Face/Skin, Body, Hair, Aesthetic Gynaecology)
   ========================================================================== */

.category-intro-section {
  padding: 50px 0;
  background: var(--white);
  text-align: center;
}

.category-intro-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
}

.category-treatments-section {
  padding: 50px 0 80px;
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  display: flex;
  flex-direction: column;
  /* align-items: center;
  text-align: center; */
  padding: 35px 25px;
  border-radius: 16px;
  background: #F8F9FD;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(144, 93, 167, 0.1);
  border-color: rgba(144, 93, 167, 0.12);
}

.category-card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.category-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-card {
    padding: 25px 20px;
  }
}

@media (max-width: 767px) {
  .meghna-intro-section {
    padding: 40px 0;
  }

  .meghna-about-section,
  .meghna-certs-section,
  .meghna-specs-section,
  .meghna-exp-section,
  .meghna-faq-section {
    padding: 40px 0;
  }

  .meghna-gallery-swiper .swiper-slide img {
    height: 200px;
  }

  .meghna-certs-swiper .swiper-slide img {
    height: 150px;
  }

  .meghna-about-content h2,
  .meghna-certs-section h2,
  .meghna-exp-section h2,
  .meghna-faq-section h2 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .meghna-specs-section h2 {
    font-size: 1.1rem;
  }
}

/* ============================================================
   GLOBAL DESIGN SYSTEM CONSISTENCY — Custom Pages
   Applied to bring all pages in line with home page style
   ============================================================ */

/* Press page title — standardized to match home celeb-main-title */
.press-page .press-title {
 text-transform: uppercase;
      text-align: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #905da7;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
  
}

/* Blogs page heading — standardized */
.blogs-page .blogs-section-title,
.blogs-page h2 {
  font-family: var(--font-nav) !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 6px !important;
  color: var(--purple) !important;
  text-transform: uppercase;
  text-align: center;
}

/* Experts page "Our Team of Specialists" heading */
.experts-page .team-section {
  padding: 50px 0;
}
@media (max-width: 767px) {
    .experts-page .team-section {
        padding: 30px 0;
    }
}
/* Meghna-mour page heading standardization */
.meghna-about-content h2,
.meghna-certs-section h2,
.meghna-exp-section h2,
.meghna-faq-section h2,
.meghna-specs-section h2 {
  font-family: var(--font-nav);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.meghna-about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.5px;
  margin-top: 28px;
  margin-bottom: 12px;
}

/* Image tone consistency on custom pages */
.press-page .press-card-link img,
.meghna-gallery-section .swiper-slide img,
.meghna-about-img img {
  filter: brightness(0.97) contrast(1.02) saturate(1.02);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Expert cards image hover premium tone */
.experts-page .expert-card .expert-img-wrap img {
  filter: brightness(0.97) contrast(1.02) saturate(1.02);
}

/* Category page icons — consistent style */
.category-card-icon img {
  filter: brightness(0.98) contrast(1.02);
}

/* Exion RF icon has darker strokes than other icons — lighten to match */
.category-card-icon img[alt="Exion RF"] {
  opacity: 0.75;
}

/* Consistent icon circles for any page using fa icons in feature blocks */
.booking-detail-item > i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #905da7, #b88fcc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Press slider nav arrows — consistent with home page style */
.press-nav-prev,
.press-nav-next {
  color: var(--purple) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .press-page .press-title {
    font-size: 1.4rem !important;
    letter-spacing: 4px !important;
  }

  .blogs-page h2 {
    font-size: 1.4rem !important;
    letter-spacing: 4px !important;
  }
}

