/* ==========================================================================
   NITRO DENTISTS - CHEMBUR PREMIUM THEME (chembur-new.css)
   Zen-Inspired Design with Soft Terracotta, Warm Cream, & Oak Wood Tones
   Strictly scoped under #chembur-new-landing wrapper
   ========================================================================== */

#chembur-new-landing,
body:has(#chembur-new-landing) {
  /* Design Tokens & Theme Colors strictly matching the uploaded image */
  --c-bg: #F7EFE4;
  /* Slightly darker elegant warm cream base */
  --c-surface: #FFFFFF;
  /* Pure white for card contrast */
  --c-beige-light: #FFF9F0;
  /* Warm off-white / light cream tint */
  --c-beige: #EDE2D5;
  /* Soft warm beige for borders */
  --c-beige-dark: #DFCFAF;
  /* Muted sand border */
  --c-terracotta: #8C2712;
  /* Deep rich rust-red/maroon primary brand color */
  --c-terracotta-hover: #721E0D;
  /* Hover deeper rust */
  --c-terracotta-light: #FDEADC;
  /* Warm soft peach background tint */
  --c-wood: #D2B788;
  /* Sandy Oak Timber */
  --c-wood-dark: #8C2712;
  /* Sync wood dark with terracotta brand */
  --c-glow-color: rgba(140, 39, 18, 0.3);
  /* Amber halo light glow */
  --c-dark: #5C1608;
  /* Exact deep maroon heading typography from image */
  --c-muted: #75605C;
  /* Warm cohesive paragraph/copy text from image */
  --c-green: #738053;
  /* Fresh leaf olive green */

  /* Layout Metrics */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  /* Fonts */
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Roboto Slab', serif;

  /* Reset overrides within scope */
  background-color: var(--c-bg);
  color: var(--c-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
  padding-bottom: 0;
}

/* --- Global Elements & Typography Overrides --- */
#chembur-new-landing h1,
#chembur-new-landing h2,
#chembur-new-landing h3,
#chembur-new-landing h4 {
  font-family: var(--font-serif);
  color: #cd6449 !important;
  font-weight: 700;
}

#chembur-new-landing p {
  color: var(--c-muted);
  line-height: 1.7;
}

#chembur-new-landing .btn-nitro-premium {
  background: var(--c-terracotta);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--c-terracotta);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(140, 39, 18, 0.2);
  display: inline-block;
  text-decoration: none;
}

#chembur-new-landing .btn-nitro-premium:hover {
  background: var(--c-terracotta-hover);
  border-color: var(--c-terracotta-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(140, 39, 18, 0.3);
}

#chembur-new-landing .btn-outline-premium {
  background: transparent;
  color: var(--c-terracotta);
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  border: 2px solid var(--c-terracotta);
  transition: var(--transition-smooth);
  display: inline-block;
  text-decoration: none;
}

#chembur-new-landing .btn-outline-premium:hover {
  background: var(--c-terracotta-light);
  color: var(--c-terracotta-hover);
  border-color: var(--c-terracotta-hover);
  transform: translateY(-2px);
}

/* Badge / Eyebrow */
#chembur-new-landing .section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-terracotta);
  margin-bottom: 1rem;
  background-color: var(--c-terracotta-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

/* Elegant Halo Glow Effect */
.halo-glow {
  position: relative;
}

.halo-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--c-glow-color) 0%, rgba(249, 164, 100, 0) 70%);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Timber Slat Pattern */
.timber-slats {
  background-image: repeating-linear-gradient(90deg,
      transparent,
      transparent 12px,
      rgba(210, 183, 136, 0.08) 12px,
      rgba(210, 183, 136, 0.08) 16px);
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
/* Scoped Govandi-style Hero customized for Chembur color theme */
#chembur-new-landing .klp-hero {
  --klp-primary: var(--c-dark);
  --klp-accent: var(--c-terracotta);
  --klp-blue: var(--c-terracotta);
  --klp-cyan: var(--c-wood);
  --klp-dark: var(--c-dark);
  --klp-text: var(--c-muted);
  --klp-muted: var(--c-muted);
  padding: 4.5rem 0;
  min-height: 55vh;
}



#chembur-new-landing .klp-hero-overlay {
  background: linear-gradient(110deg, rgba(253, 234, 220, 0.92) 0%, rgba(253, 234, 220, 0.82) 55%, rgba(255, 253, 250, 0.5) 100%);
}

#chembur-new-landing .klp-eyebrow {
  background: var(--c-terracotta-light);
  border: 1px solid rgba(140, 39, 18, 0.15);
  color: var(--c-terracotta);
}

#chembur-new-landing .klp-hero-accent {
  color: #cd6449;
}

#chembur-new-landing .klp-hero-title {
  color: var(--c-terracotta) !important;
}

#chembur-new-landing .klp-hero-sub {
  color: #000000;
}

#chembur-new-landing .klp-btn-primary {
  background: var(--c-terracotta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(140, 39, 18, 0.28);
}

#chembur-new-landing .klp-btn-primary:hover {
  background: var(--c-terracotta-hover);
  color: #fff;
  box-shadow: 0 14px 32px rgba(140, 39, 18, 0.36);
}

#chembur-new-landing .klp-btn-outline {
  border-color: var(--c-terracotta);
  color: var(--c-terracotta);
}

#chembur-new-landing .klp-btn-outline:hover {
  background: var(--c-terracotta-light);
  color: var(--c-terracotta-hover);
  border-color: var(--c-terracotta-hover);
}

#chembur-new-landing .klp-hero-badges span {
  background: #fff;
  border: 1px solid var(--c-beige);
  color: var(--c-muted);
}

#chembur-new-landing .klp-hero-badges span i {
  color: var(--c-terracotta);
}


/* ==========================================================================
   2. CLINIC PHILOSOPHY SECTION
   ========================================================================== */
.chembur-philosophy {
  padding: 6rem 0;
}

.philosophy-card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-beige-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(43, 45, 66, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--c-beige);
  transition: var(--transition-smooth);
}

.philosophy-card--accent {
  background: var(--c-terracotta-light);
  border: 1px solid rgba(140, 39, 18, 0.15);
}

.philosophy-card--accent::before {
  background-color: var(--c-terracotta);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(165, 132, 82, 0.08);
}

.philosophy-card--accent:hover {
  box-shadow: 0 20px 50px rgba(222, 122, 96, 0.12);
}

.philosophy-card:hover::before {
  height: 8px;
}

.philosophy-icon {
  font-size: 2.2rem;
  color: var(--c-terracotta);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.philosophy-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.philosophy-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-terracotta);
  border-left: 3px solid var(--c-terracotta);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.philosophy-feature-card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-beige);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(43, 45, 66, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.philosophy-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(165, 132, 82, 0.08);
  border-color: var(--c-terracotta);
}

.philosophy-feature-card--accent {
  background-color: var(--c-terracotta-light);
  border-color: rgba(140, 39, 18, 0.15);
}

.feat-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--c-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 6px 15px rgba(140, 39, 18, 0.08);
  transition: var(--transition-smooth);
}

.philosophy-feature-card--accent .feat-card-icon {
  background-color: var(--c-terracotta);
  color: #fff;
}

.philosophy-feature-card:hover .feat-card-icon {
  transform: scale(1.08);
}

.philosophy-feature-card h3 {
  font-size: 1.4rem !important;
  color: var(--c-dark) !important;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.philosophy-feature-card p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   3. LOCATION & CONTACT
   ========================================================================== */
.chembur-location {
  padding: 6rem 0;
  background-image: linear-gradient(110deg, rgba(253, 234, 220, 0.92) 0%, rgba(253, 234, 220, 0.82) 55%, rgba(255, 253, 250, 0.5) 100%), url('assets/media/chembur-treatment-room.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  margin: 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .chembur-location {
    margin: 0;
    border-radius: 0;
  }
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(43, 45, 66, 0.08);
  border: 6px solid #fff;
  height: 480px;
  position: relative;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card-premium {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(43, 45, 66, 0.04);
  height: 100%;
}

.contact-list-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon-box {
  background: var(--c-terracotta-light);
  color: var(--c-terracotta);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-list-item:hover .contact-icon-box {
  background: var(--c-terracotta);
  color: #fff;
  transform: rotate(15deg);
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--c-dark);
}

.contact-info-text {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin: 0;
}

.contact-info-text a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-info-text a:hover {
  color: var(--c-terracotta);
}

/* ==========================================================================
   4. WHY CHOOSE US
   ========================================================================== */
.chembur-why {
  padding: 6rem 0;
  background-color: var(--c-surface);
  /* Premium Pure White background */
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.why-feature-item {
  background-color: var(--c-bg);
  /* Contrasting warm cream card background */
  border: 1px solid var(--c-beige-light);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(43, 45, 66, 0.01);
  transition: var(--transition-smooth);
}

.why-feature-item:hover {
  transform: translateY(-5px);
  background-color: var(--c-beige-light);
  /* Premium responsive hover transition */
  box-shadow: 0 15px 40px rgba(165, 132, 82, 0.08);
  border-color: var(--c-wood);
}

.why-feature-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(222, 122, 96, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.why-feature-item:hover .why-feature-num {
  color: var(--c-terracotta);
}

.why-feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.why-feature-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Decorative plants corner */
.plants-decorative {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M100 100 C 80 80, 50 100, 30 70 C 10 40, 20 20, 0 0" fill="none" stroke="%23738053" stroke-width="2"/></svg>');
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   5. SERVICES GRID SECTION
   ========================================================================== */
.chembur-services {
  padding: 6rem 0;
  background-color: var(--c-surface);
}

.service-card-premium {
  background-color: var(--c-terracotta-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(140, 39, 18, 0.15);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 80%, rgba(140, 39, 18, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}


.service-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 6px 15px rgba(43, 45, 66, 0.05);
  margin-bottom: 1.5rem;
  background: #fff;
  transition: var(--transition-smooth);
}


.service-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-premium h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--c-dark);
}

.service-card-premium h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.service-card-premium h3 a:hover {
  color: var(--c-terracotta);
}

.service-card-copy {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-points-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-muted);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.service-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-card-points li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--c-dark);
}

.service-card-points li::before {
  content: '→';
  color: var(--c-terracotta);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.service-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-terracotta);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: var(--transition-fast);
}

.service-card-link i {
  transition: transform 0.2s ease;
}


/* ==========================================================================
   6. ACCORDION / FAQ SECTION
   ========================================================================== */
.chembur-faq {
  padding: 6rem 0;
  background-color: var(--c-surface) !important;
  /* Premium White background */
}

.faq-arched-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

/* Premium custom accordion styling */
#chembur-new-landing .custom-accordion .accordion-item {
  border: 1px solid var(--c-beige) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 1.2rem;
  background-color: var(--c-beige-light) !important;
  /* Contrasting soft off-white background */
  box-shadow: 0 4px 15px rgba(43, 45, 66, 0.01) !important;
  overflow: hidden;
  transition: var(--transition-smooth);
}

#chembur-new-landing .custom-accordion .accordion-item:hover {
  border-color: var(--c-terracotta) !important;
  box-shadow: 0 10px 35px rgba(222, 122, 96, 0.06) !important;
  transform: translateY(-2px);
}

#chembur-new-landing .custom-accordion .accordion-button {
  background-color: var(--c-beige-light) !important;
  /* Match card background */
  color: var(--c-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: none;
  box-shadow: none !important;
  transition: var(--transition-fast);
}

#chembur-new-landing .custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--c-terracotta-light) !important;
  /* Soft peach when open */
  color: var(--c-terracotta-hover);
}

#chembur-new-landing .custom-accordion .accordion-button::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%232B2D42"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  background-size: 1rem;
  transition: var(--transition-smooth);
}

#chembur-new-landing .custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%23DE7A60"><path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg>');
}

#chembur-new-landing .custom-accordion .accordion-body {
  padding: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--c-muted);
  background-color: var(--c-beige-light) !important;
  /* Match card background */
  border-top: 1px solid var(--c-beige-light);
}

.faq-side-card {
  background: var(--c-beige-light);
  border: 1px solid var(--c-beige-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-side-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.faq-side-card p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   7. BOOK APPOINTMENT CTA
   ========================================================================== */
.chembur-cta {
  padding: 6rem 0;
  position: relative;
  background-color: #ffffff;
}

#chembur-new-landing .cta-split-card {
  background: linear-gradient(135deg, #FDF0E6 0%, #F5CEBE 100%) !important;
  border: 1px solid #EBC3B2 !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(140, 39, 18, 0.08);
}

#chembur-new-landing .cta-content-panel {
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
}

#chembur-new-landing .cta-content-inner {
  width: 100%;
}

#chembur-new-landing .cta-split-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-terracotta);
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.4);
  /* Elegant white glassmorphism tag background */
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(140, 39, 18, 0.2);
}

#chembur-new-landing .cta-split-title {
  color: var(--c-dark) !important;
  font-size: 2.6rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1.2rem;
  max-width: 600px;
}

#chembur-new-landing .cta-split-desc {
  color: var(--c-muted) !important;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

/* Feature Items list */
#chembur-new-landing .cta-split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

#chembur-new-landing .cta-feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

#chembur-new-landing .cta-feat-icon {
  background: rgba(140, 39, 18, 0.08);
  color: var(--c-terracotta);
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

#chembur-new-landing .cta-feat-item h4 {
  font-family: var(--font-sans);
  color: var(--c-dark) !important;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

#chembur-new-landing .cta-feat-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--c-muted);
}

/* Actions */
#chembur-new-landing .cta-split-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

#chembur-new-landing .btn-cta-split-primary {
  background: var(--c-terracotta);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 50px;
  padding: 1.1rem 2.8rem;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(140, 39, 18, 0.2);
  display: inline-block;
  text-decoration: none;
}

#chembur-new-landing .btn-cta-split-primary:hover {
  background: var(--c-terracotta-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(140, 39, 18, 0.3);
}

#chembur-new-landing .btn-cta-split-phone {
  color: var(--c-terracotta);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

#chembur-new-landing .btn-cta-split-phone:hover {
  color: var(--c-terracotta-hover);
  transform: translateX(4px);
}

/* Image panel styling showing the full image */
#chembur-new-landing .cta-image-panel-wrapper {
  padding: 2.5rem 3.5rem 2.5rem 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

#chembur-new-landing .cta-image-container-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(140, 39, 18, 0.12);
  border: 1px solid var(--c-beige);
}

#chembur-new-landing .cta-split-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

#chembur-new-landing .cta-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #FFF9F0;
  color: var(--c-dark);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(140, 39, 18, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-left: 4px solid var(--c-wood);
  z-index: 5;
}

#chembur-new-landing .cta-image-badge i {
  color: var(--c-terracotta);
}

@media (max-width: 991.98px) {
  #chembur-new-landing .cta-content-panel {
    padding: 4rem 2.5rem;
  }

  #chembur-new-landing .cta-split-title {
    font-size: 2.2rem;
  }

  #chembur-new-landing .cta-image-panel-wrapper {
    padding: 0 2.5rem 4rem 2.5rem;
  }

  #chembur-new-landing .cta-image-container-inner {
    min-height: 350px;
    height: 350px;
  }
}

@media (max-width: 575.98px) {
  #chembur-new-landing .cta-split-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #chembur-new-landing .cta-split-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }

  #chembur-new-landing .btn-cta-split-primary {
    text-align: center;
  }

  #chembur-new-landing .btn-cta-split-phone {
    justify-content: center;
  }
}

/* ==========================================================================
   MICRO-ANIMATIONS & INTERACTIVITY
   ========================================================================== */
@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* ==========================================================================
   8. PREMIUM GALLERY STYLING
   ========================================================================== */
.chembur-gallery-accent {
  background-color: #ffffff;
  padding: 6rem 0;
}

#chembur-new-landing .gallery-grid {
  gap: 1.5rem;
}

#chembur-new-landing .gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 8px 30px rgba(43, 45, 66, 0.03);
  transition: var(--transition-smooth);
  position: relative;
}

#chembur-new-landing .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#chembur-new-landing .gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--c-terracotta);
  box-shadow: 0 25px 50px rgba(222, 122, 96, 0.18);
  z-index: 5;
}

#chembur-new-landing .gallery-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   9. PREMIUM PATIENT REVIEWS STYLING
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--c-bg);
}

#chembur-new-landing .review-card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-beige);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(43, 45, 66, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

#chembur-new-landing .review-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-terracotta);
  box-shadow: 0 20px 45px rgba(222, 122, 96, 0.12);
}

#chembur-new-landing .review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

#chembur-new-landing .review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--c-beige-dark);
  object-fit: cover;
  transition: var(--transition-smooth);
}

#chembur-new-landing .review-card:hover .review-avatar {
  border-color: var(--c-terracotta);
  transform: scale(1.08);
}

#chembur-new-landing .review-top h3 {
  font-size: 1.15rem;
  margin: 0 0 0.2rem 0;
  font-weight: 700;
  color: var(--c-dark);
}

#chembur-new-landing .review-time {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0;
}

#chembur-new-landing .review-rating {
  margin-left: auto;
  background: var(--c-terracotta-light);
  color: var(--c-terracotta);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

#chembur-new-landing .review-rating::before {
  content: '★';
  color: #ffb703;
  font-size: 1rem;
}

#chembur-new-landing .review-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

#chembur-new-landing .review-source {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-wood-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

/* ==========================================================================
   10. MOCKUP COLOR COMBINATION MATCH OVERRIDES
   These rules strictly apply only when #chembur-new-landing is present
   to match the exact peach/cream and deep rust-red combination from the mockup.
   ========================================================================== */

/* Top Utility Bar White Overrides for Chembur page */
body:has(#chembur-new-landing) .main-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 12px rgba(16, 69, 87, 0.06);
  background: #ffffff;
}

body:has(#chembur-new-landing) .site-header {
  position: static !important;
  box-shadow: none !important;
}

body:has(#chembur-new-landing) .utility-bar {
  background: #ffffff !important;
  border-bottom: 1px solid var(--c-beige) !important;
}

body:has(#chembur-new-landing) .utility-logo-link {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-block !important;
}

body:has(#chembur-new-landing) .utility-logo-link:hover {
  transform: scale(1.03) !important;
}

body:has(#chembur-new-landing) .utility-logo {
  height: 45px !important;
  display: block;
}

body:has(#chembur-new-landing) .promo-copy {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body:has(#chembur-new-landing) .social-links {
  gap: 10px !important;
  display: flex !important;
  align-items: center !important;
}

body:has(#chembur-new-landing) .social-link {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #104557 !important;
  box-shadow: 0 2px 5px rgba(16, 69, 87, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

body:has(#chembur-new-landing) .social-link svg {
  width: 1.05rem !important;
  height: 1.05rem !important;
  fill: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  display: block !important;
}

body:has(#chembur-new-landing) .social-link:hover {
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 6px 15px rgba(16, 69, 87, 0.25) !important;
}

body:has(#chembur-new-landing) .social-link:hover svg {
  transform: scale(1.1) !important;
}

body:has(#chembur-new-landing) .phone-pill {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body:has(#chembur-new-landing) .phone-pill:hover {
  background: #0b3644 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(16, 69, 87, 0.18) !important;
}

/*
body:has(#chembur-new-landing) .site-header {
  background: var(--c-bg) !important;
  border-bottom: 1px solid var(--c-beige) !important;
  padding: 0.6rem 0 !important;
}

body:has(#chembur-new-landing) .nav-link {
  color: var(--c-dark) !important;
  font-weight: 600 !important;
  transition: var(--transition-fast) !important;
}

body:has(#chembur-new-landing) .nav-link:hover,
body:has(#chembur-new-landing) .nav-link.active {
  color: var(--c-terracotta) !important;
}
*/



/*
body:has(#chembur-new-landing) .footer-shell {
  background-color: var(--c-bg) !important;
  border-top: 1px solid var(--c-beige) !important;
  padding-top: 6rem !important;
  padding-bottom: 0 !important;
}

body:has(#chembur-new-landing) .footer-card,
body:has(#chembur-new-landing) .footer-form-panel {
  background-color: var(--c-surface) !important;
  border: 1px solid var(--c-beige) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  box-shadow: 0 10px 40px rgba(43, 45, 66, 0.02) !important;
  height: fit-content !important;
}

body:has(#chembur-new-landing) .footer-heading {
  color: var(--c-dark) !important;
  font-family: var(--font-serif) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}

body:has(#chembur-new-landing) .footer-links a {
  color: var(--c-muted) !important;
  text-decoration: none !important;
  transition: var(--transition-fast) !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}

body:has(#chembur-new-landing) .footer-links a:hover {
  color: var(--c-terracotta) !important;
  padding-left: 4px !important;
}

body:has(#chembur-new-landing) .footer-links h3 {
  color: var(--c-terracotta) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
}

body:has(#chembur-new-landing) .nitro-field,
body:has(#chembur-new-landing) .nitro-select,
body:has(#chembur-new-landing) .nitro-textarea {
  background-color: var(--c-surface) !important;
  border: 1px solid var(--c-beige) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--c-dark) !important;
  padding: 0.8rem 1.2rem !important;
}

body:has(#chembur-new-landing) .nitro-field:focus,
body:has(#chembur-new-landing) .nitro-select:focus,
body:has(#chembur-new-landing) .nitro-textarea:focus {
  border-color: var(--c-terracotta) !important;
  box-shadow: 0 0 0 3px rgba(140, 39, 18, 0.1) !important;
}

body:has(#chembur-new-landing) .footer-shell .btn-submit,
body:has(#chembur-new-landing) .footer-shell .btn-footer,
body:has(#chembur-new-landing) .footer-shell .btn-footer-link {
  background-color: var(--c-terracotta) !important;
  color: #fff !important;
  border: 1px solid var(--c-terracotta) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 0.8rem 2.2rem !important;
  transition: var(--transition-smooth) !important;
  display: inline-block !important;
}

body:has(#chembur-new-landing) .footer-shell .btn-submit:hover,
body:has(#chembur-new-landing) .footer-shell .btn-footer:hover {
  background-color: var(--c-terracotta-hover) !important;
  border-color: var(--c-terracotta-hover) !important;
  transform: translateY(-2px) !important;
}

body:has(#chembur-new-landing) .footer-shell .venture-strip {
  background-color: #bf5231 !important;
  color: #fff !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 1.5rem 0 !important;
  border-top: none !important;
  margin-top: 5rem !important;
}

body:has(#chembur-new-landing) .footer-shell h2,
body:has(#chembur-new-landing) .footer-shell h3,
body:has(#chembur-new-landing) .footer-shell p,
body:has(#chembur-new-landing) .footer-shell span,
body:has(#chembur-new-landing) .footer-shell div,
body:has(#chembur-new-landing) .footer-shell label,
body:has(#chembur-new-landing) .footer-shell article {
  color: var(--c-dark) !important;
}

body:has(#chembur-new-landing) .footer-shell p,
body:has(#chembur-new-landing) .footer-shell .location-list p {
  color: var(--c-muted) !important;
}

body:has(#chembur-new-landing) .footer-shell .footer-links a {
  color: var(--c-muted) !important;
}

body:has(#chembur-new-landing) .footer-shell .footer-links a:hover {
  color: var(--c-terracotta) !important;
}
*/

/* Scoped Hero Image Visibility: Render the entire image inside the frame without any crop */
body:has(#chembur-new-landing) .mj-hero-img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* ==========================================================================
   2b. OUR PHILOSOPHY SECTION (IMAGE ON LEFT, TEXT ON RIGHT)
   ========================================================================== */
.chembur-our-philosophy {
  padding: 6rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .chembur-our-philosophy {
    padding: 4rem 0;
  }
}

.philosophy-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 45px rgba(165, 132, 82, 0.12);
  transition: var(--transition-smooth);
}

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

.philosophy-media-frame:hover .philosophy-img {
  transform: scale(1.03);
}


.philosophy-content-wrap {
  position: relative;
  z-index: 2;
}

.philosophy-main-title {
  font-size: 2.8rem !important;
  color: var(--c-terracotta) !important;
  margin-bottom: 1.5rem;
}

.philosophy-subtitle {
  font-size: 1.1rem;
  color: var(--c-dark);
  letter-spacing: 1px;
}

.philosophy-premium-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-terracotta);
  border-left: 4px solid var(--c-terracotta);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
  font-style: italic;
}

.philosophy-text {
  font-size: 1.1rem;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ==========================================================================
   2.1 NITROUS OXIDE SPLIT SECTION
   ========================================================================== */
#chembur-new-landing .chembur-nitrous {
  padding: 6rem 0;
  background-color: var(--c-bg);
}

#chembur-new-landing .nitrous-media-frame {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-beige);
  box-shadow: 0 15px 40px rgba(43, 45, 66, 0.04);
  background-color: #000;
}

#chembur-new-landing .nitrous-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#chembur-new-landing .nitrous-text-content {
  padding: 1rem 0;
}

#chembur-new-landing .nitrous-title {
  font-family: var(--font-serif);
  color: var(--c-dark);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#chembur-new-landing .nitrous-desc {
  color: var(--c-muted);
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
}

/* --- Header Padding Reduction Override --- */
/*
body:has(#chembur-new-landing) .header-main {
  min-height: 80px;
}

body:has(#chembur-new-landing) .navbar-nav .nav-link {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
*/

/* ==========================================================================
   WHY CHOOSE US - CAROUSEL STYLING
   ========================================================================== */
#chemburClinicCarousel {
  position: relative;
  z-index: 5;
}

#chemburClinicCarousel .carousel-inner {
  border-radius: var(--radius-lg);
  border: 4px solid #fff !important;
  box-shadow: 0 15px 40px rgba(140, 39, 18, 0.08);
}

#chemburClinicCarousel .carousel-item {
  height: 280px;
}

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

#chemburClinicCarousel:hover .carousel-item img {
  transform: scale(1.03);
}

/* Custom indicators styling */
.custom-carousel-indicators {
  bottom: 15px;
  margin-bottom: 0;
  z-index: 10;
  gap: 6px;
}

.custom-carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  border: none;
  margin: 0;
  padding: 0;
  transition: var(--transition-smooth);
}

.custom-carousel-indicators .active {
  background-color: var(--c-terracotta);
  width: 24px;
  border-radius: 4px;
  opacity: 1;
}

/* Custom control arrows styling */
.custom-carousel-control {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 12px;
  opacity: 1;
  transition: var(--transition-smooth);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-carousel-control:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.custom-carousel-control i {
  color: var(--c-terracotta);
  font-size: 0.95rem;
}

.custom-carousel-control-prev {
  left: 0;
}

.custom-carousel-control-next {
  right: 0;
}

/* ==========================================================================
   REVIEWS SLIDER STYLING
   ========================================================================== */
.reviews-swiper-container {
  padding: 0 45px;
  /* Leave space for outer arrows */
}

@media (max-width: 767.98px) {
  .reviews-swiper-container {
    padding: 0 5px;
    /* Less space on mobile */
  }
}

.reviews-swiper {
  width: 100%;
  overflow: hidden;
  padding: 20px 5px !important;
  /* Some padding for card shadows */
}

/* Ensure slides fill height so cards match */
.reviews-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.reviews-swiper .review-card {
  height: 100%;
  margin-bottom: 0 !important;
}

/* Custom navigation buttons */
.reviews-prev-btn,
.reviews-next-btn {
  width: 44px;
  height: 44px;
  background-color: #fff;
  color: var(--c-terracotta);
  border: 1px solid var(--c-beige);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(140, 39, 18, 0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.reviews-prev-btn {
  left: -15px;
}

.reviews-next-btn {
  right: -15px;
}

@media (max-width: 991.98px) {
  .reviews-prev-btn {
    left: -5px;
  }

  .reviews-next-btn {
    right: -5px;
  }
}

@media (max-width: 767.98px) {

  .reviews-prev-btn,
  .reviews-next-btn {
    display: none;
    /* Hide arrows on mobile to avoid overlap */
  }
}

.reviews-prev-btn:hover,
.reviews-next-btn:hover {
  background-color: var(--c-terracotta);
  color: #fff;
  border-color: var(--c-terracotta);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(140, 39, 18, 0.2);
}

/* Custom bullets */
.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.reviews-pagination .custom-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-beige-dark);
  opacity: 0.6;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reviews-pagination .custom-bullet:hover {
  opacity: 1;
}

.reviews-pagination .custom-bullet-active {
  background-color: var(--c-terracotta);
  width: 24px;
  border-radius: 4px;
  opacity: 1;
}