Premium Image Conditions Grid Styling
.conditions-section {
  padding: 6rem 0;
}

.conditions-grid-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.condition-img-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Gradient Overlay for perfect text readability */
.cic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.condition-img-card:hover .cic-overlay {
  background: linear-gradient(180deg, rgba(23, 107, 135, 0.3) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.condition-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(23, 107, 135, 0.25);
}

/* Card Content Top */
.cic-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cic-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.condition-img-card:hover .cic-icon {
  background: var(--primary, #176B87);
  border-color: var(--primary, #176B87);
}

.cic-text h3 {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.cic-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer Action */
.cic-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cic-action .material-symbols-outlined {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.condition-img-card:hover .cic-action .material-symbols-outlined {
  transform: translateX(6px);
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .conditions-grid-img {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .conditions-grid-img {
    grid-template-columns: 1fr;
  }
}




/* ==========================================
   Modern Services Section Styling (2026)
   ========================================== */
.services-section {
  padding: 6rem 0;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-pro-card {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 4px 6px rgba(0,0,0,0.02));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(23, 107, 135, 0.12);
  border-color: var(--primary, #176B87);
}

.sp-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.sp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pro-card:hover .sp-img-wrapper img {
  transform: scale(1.08);
}

.sp-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary, #176B87);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}

.sp-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.sp-body h3 {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 1.35rem;
  color: var(--text-primary, #1e293b);
  margin-bottom: 0.75rem;
}

.sp-body p {
  font-size: 0.95rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary, #176B87);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.sp-link .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.sp-link:hover {
  gap: 0.75rem;
}

.sp-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   Modern Image-Based Treatment Process (2026)
   ========================================== */
.process-section {
  padding: 6rem 0;
  position: relative;
}

.process-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-pro-card {
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Dark Gradient Overlay for perfect text readability */
.ppc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.process-pro-card:hover .ppc-overlay {
  background: linear-gradient(180deg, rgba(23, 107, 135, 0.4) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.process-pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(23, 107, 135, 0.2);
}

.ppc-content-wrap {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.ppc-step {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.process-pro-card:hover .ppc-step {
  opacity: 1;
}

.ppc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-pro-card:hover .ppc-icon-box {
  background: var(--primary, #176B87);
  border-color: var(--primary, #176B87);
  transform: scale(1.05);
}

.ppc-body h3 {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ppc-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom Glowing Indicator Line */
.ppc-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 2;
}

.process-pro-card:hover .ppc-indicator {
  background: var(--primary, #176B87);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
  .process-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .process-grid-modern {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   Modern Bento "Why Choose Us" with BG Images
   ========================================== */


   
.why-us-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--surface, #ffffff) 0%, var(--surface-soft, #f8fafc) 100%);
}

.why-bento-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.why-header-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-header-col .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.why-header-col .section-description {
  text-align: left;
  margin-bottom: 2.5rem;
}

/* Highlight Box inside Left Column */
.why-highlight-box {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-left: 4px solid var(--primary, #176B87);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  width: 100%;
}

.whb-number {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 2.5rem;
  color: var(--primary, #176B87);
  line-height: 1;
}

.whb-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin-bottom: 0.25rem;
}

.whb-text p {
  font-size: 0.85rem;
  color: var(--text-secondary, #64748b);
  margin: 0;
}

/* Right Bento Grid Container */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-bento-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Gradient Overlay for background images */
.wbc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.why-bento-card:hover .wbc-overlay {
  background: linear-gradient(180deg, rgba(23, 107, 135, 0.5) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.why-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(23, 107, 135, 0.15);
}

.wbc-inner-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.wbc-num {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.7;
}

.wbc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-bento-card:hover .wbc-icon {
  background: var(--primary, #176B87);
  border-color: var(--primary, #176B87);
  transform: scale(1.05);
}

.wbc-text-block h3 {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.wbc-text-block p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-bento-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-header-col .section-title,
  .why-header-col .section-description {
    text-align: center;
  }
  .why-header-col {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   Patient Smiles & Centered Header Layout
   ========================================== */
.patient-smiles-section {
  padding: 7rem 0;
  background: var(--surface, #ffffff);
}

/* Top Centered Header */
.ps-header-center {
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-header-center .section-tag {
  margin-bottom: 1rem;
}

.ps-header-center .section-title {
  font-family: var(--font-display, 'DM Serif Display', serif);
  font-size: 2.75rem;
  color: var(--text-primary, #0f172a);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.ps-header-center .section-description {
  font-size: 1.05rem;
  color: var(--text-secondary, #475569);
  line-height: 1.6;
  margin: 0;
}

/* Main Content Wrapper (Left Image & Right Reviews Grid) */
.patient-smiles-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.ps-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.heart-collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-collage-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(23, 107, 135, 0.12));
}

.heart-float-badge {
  position: absolute;
  bottom: 15px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 3;
}

.ps-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* 2x2 Rotating Real Reviews Grid */
.reviews-rotating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.review-mini-card {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

.review-mini-card.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.review-mini-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.rmc-quote-icon {
  color: var(--primary, #176B87);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.rmc-body p {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.rmc-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 0.85rem;
}

.rmc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rmc-avatar .material-symbols-outlined {
  font-size: 1.2rem;
}

.rmc-author-info {
  display: flex;
  flex-direction: column;
}

.rmc-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary, #0f172a);
  line-height: 1.2;
}

.rmc-role {
  font-size: 0.75rem;
  color: var(--text-secondary, #64748b);
  margin-top: 0.1rem;
}

.more-reviews-wrap {
  width: 100%;
  text-align: center;
}

.more-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary, #176B87);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.more-reviews-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .patient-smiles-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ps-header-center .section-title {
    font-size: 2.25rem;
  }
  .heart-collage-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .reviews-rotating-grid {
    grid-template-columns: 1fr;
  }
}