/* ==========================================================================
   MANOHAR DENTAL CLINIC - PAGE SPECIFIC STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   HOMEPAGE SPECIFIC
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 112px 0 104px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 44%, rgba(255,255,255,0.38) 100%),
    url('../images/DesktopHeroBg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-section {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 58%, rgba(255,255,255,0.72) 100%),
      url('../images/mobileheroBG.png') !important;
    background-position: center top;
  }
}

@media (max-width: 900px) {
  .faq-redesign-panel { grid-template-columns: 1fr; padding: 30px 22px; }
  .faq-copy img { max-width: 220px; }
}

@media (max-width: 640px) {
  .treatment-filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .treatment-filter-btn { flex: 0 0 auto; }
  .faq-redesign { padding: 70px 0; }
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.hero-stars {
  color: #fbbf24;
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(to right, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Cars24-style compact booking card */
.hero-booking-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
  text-align: left;
}

.hero-booking-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-booking-form-grid .form-group {
  margin: 0;
}

.hero-booking-btn {
  grid-column: span 2;
  width: 100%;
  background-color: var(--secondary);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  transition: all 0.2s ease;
  border: none;
  font-size: 1rem;
}

.hero-booking-btn:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.4);
}

.hero-trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Doctor Image Slider */
.hero-doctor-slider {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--border-light);
}

.hero-doctor-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.hero-doctor-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-doctor-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-doctor-info-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: #ffffff;
  z-index: 10;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.hero-doctor-slide.active .hero-doctor-info-badge {
  transform: translateY(0);
  opacity: 1;
}

.hero-doctor-info-badge h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-doctor-info-badge p {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-doctor-nav {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-doctor-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.hero-doctor-nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* --------------------------------------------------------------------------
   ABOUT PAGE SPECIFIC
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: #ffffff;
  text-align: center;
}

.page-hero.blog-landing-hero {
  background: linear-gradient(180deg, rgba(11, 31, 77, 0.8) 0%, rgba(11, 31, 77, 0.95) 100%), url('../images/bg6.png') no-repeat center center / cover !important;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.breadcrumbs a {
  color: #94a3b8;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-img-collage {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-img-sub {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 8px solid #ffffff;
  object-fit: cover;
}

/* About expertise feature */
.about-expertise-section {
  overflow: hidden;
  background: #ffffff;
}

.about-expertise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.about-expertise-visual {
  position: relative;
  min-height: 480px;
  padding: 24px 28px 34px 42px;
}

.about-expertise-main-img {
  width: 88%;
  height: 430px;
  margin-left: auto;
  border-radius: 38% 28% 42% 24% / 24% 38% 28% 42%;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(11, 31, 77, 0.16);
}

.about-expertise-inset {
  position: absolute;
  left: 4px;
  bottom: 36px;
  width: 42%;
  aspect-ratio: 1 / 1.08;
  padding: 7px;
  overflow: hidden;
  background: #fff;
  border-radius: 48% 34% 46% 28%;
  box-shadow: 0 16px 40px rgba(11, 31, 77, 0.2);
}

.about-expertise-inset img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.about-sparkle {
  position: absolute;
  z-index: 2;
  color: #2455f5;
  line-height: 1;
}

.about-sparkle-lg { top: 28px; left: 18px; font-size: 54px; }
.about-sparkle-sm { top: 88px; left: 3px; font-size: 24px; }

.about-contact-badge {
  position: absolute;
  right: 22px;
  bottom: 12px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0b1f4d;
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(11, 31, 77, 0.22);
  text-decoration: none;
}

.about-contact-badge span {
  position: absolute;
  top: 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-contact-badge span:last-child { top: auto; bottom: 12px; transform: rotate(180deg); }
.about-contact-badge strong { font-size: 1.6rem; }

.about-expertise-content h2 {
  max-width: 650px;
  margin: 12px 0 20px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.08;
  color: #0b1f4d;
}

.about-expertise-content h2 span { color: #2455f5; }

.about-expertise-content > p {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-expertise-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.about-expertise-list li {
  position: relative;
  padding-left: 34px;
  color: #334155;
  font-weight: 600;
}

.about-expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #2455f5;
  border-radius: 50%;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .about-expertise-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-expertise-visual { max-width: 620px; width: 100%; margin: 0 auto; }
}

@media (max-width: 560px) {
  .about-expertise-visual { min-height: 350px; padding: 18px 12px 28px 28px; }
  .about-expertise-main-img { height: 320px; border-radius: 32px; }
  .about-expertise-inset { width: 43%; bottom: 12px; border-radius: 30px; }
  .about-contact-badge { right: 2px; bottom: -8px; width: 82px; height: 82px; border-width: 5px; }
  .about-contact-badge span { display: none; }
  .about-sparkle-lg { left: 0; font-size: 40px; }
  .about-sparkle-sm { left: -4px; top: 78px; font-size: 18px; }
  .about-expertise-content h2 { font-size: 2.15rem; }
}

.mission-vision-section {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.value-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(20, 184, 166, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   DOCTOR BIO SPECIFIC
   -------------------------------------------------------------------------- */
.doctor-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.doctor-image-container {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.doctor-info-panel h2 {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.doctor-tagline {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.bio-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.credential-block h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
  border-left: 3px solid var(--secondary);
  padding-left: 12px;
}

.credential-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   TREATMENT & SERVICES PAGE SPECIFIC
   -------------------------------------------------------------------------- */
.service-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: flex-start;
}

.service-main h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  margin-top: 40px;
}

.service-main h2:first-of-type {
  margin-top: 0;
}

.service-main p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.benefit-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.sidebar-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.sidebar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS FOR PAGES
   -------------------------------------------------------------------------- */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust-indicators {
    justify-items: center;
  }
  .hero-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
  .floating-card-1 {
    left: -10%;
  }
  .floating-card-2 {
    right: -5%;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-img-sub {
    display: none;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .doctor-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .doctor-image-container {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  .service-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-card {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   PREMIUM TESTIMONIAL SPLIT-CARD SLIDER
   -------------------------------------------------------------------------- */
.testimonial-premium-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-height: 480px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-premium-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.testimonial-premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.testimonial-premium-img.active {
  opacity: 1;
  z-index: 2;
}

.testimonial-premium-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: left;
  background-color: #ffffff;
}

.testimonial-premium-quote-icon {
  position: absolute;
  top: 32px;
  left: 48px;
  color: rgba(14, 165, 233, 0.1);
  z-index: 1;
}

.testimonial-premium-slider {
  position: relative;
  z-index: 2;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.testimonial-premium-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
  visibility: hidden;
}

.testimonial-premium-slide.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: relative;
}

.testimonial-premium-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.testimonial-premium-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-top: 24px;
  z-index: 2;
  position: relative;
}

.testimonial-premium-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-premium-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
}

.testimonial-premium-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--primary);
}

.testimonial-premium-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.testimonial-premium-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.testimonial-premium-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  gap: 2px;
}

.testimonial-premium-source {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-premium-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 24px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
  border: none;
}

.testimonial-nav-btn:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(14, 165, 233, 0.3);
}

/* --------------------------------------------------------------------------
   HIGHLIGHTED CARD STYLES
   -------------------------------------------------------------------------- */
.card.card-highlighted {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--secondary);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.card.card-highlighted .treatment-card-title,
.card.card-highlighted h3,
.card.card-highlighted h4 {
  color: #ffffff;
}

.card.card-highlighted .treatment-card-desc,
.card.card-highlighted p {
  color: #e2e8f0;
}

.card.card-highlighted .treatment-card-link {
  color: var(--secondary);
}

.card.card-highlighted .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.card.card-highlighted .btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary);
}

@media (max-width: 768px) {
  .testimonial-premium-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .testimonial-premium-img-wrap {
    height: 250px;
    min-height: auto;
  }
  .testimonial-premium-content {
    padding: 32px 24px;
  }
  .testimonial-premium-nav {
    justify-content: center;
    padding-right: 0;
  }
}

/* Redesigned Doctor Specialists Section */
.doctor-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.doctor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 5;
}

.doctor-card:hover::before {
  opacity: 1;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(14, 165, 233, 0.20);
}

.doctor-card-img-wrap {
  height: 380px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.doctor-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.doctor-card:hover .doctor-card-img-wrap img {
  transform: scale(1.04);
}

.doctor-card-content {
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.doctor-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.doctor-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(14, 165, 233, 0.08);
  color: var(--secondary);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  width: max-content;
}

/* Doctor Biography Modal screen */
.doctor-bio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.doctor-bio-modal.active {
  display: flex;
  opacity: 1;
}

.bio-modal-container {
  width: 90%;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.doctor-bio-modal.active .bio-modal-container {
  transform: translateY(0);
}

.bio-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  font-weight: 300;
  transition: var(--transition-fast);
}

.bio-modal-close:hover {
  color: var(--secondary);
}

.bio-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.bio-modal-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.bio-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-modal-details {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.bio-modal-details h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.bio-modal-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.bio-modal-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .bio-modal-grid {
    grid-template-columns: 1fr;
  }
  .bio-modal-img-wrap {
    height: 280px;
    min-height: auto;
  }
  .bio-modal-details {
    padding: 32px 24px;
  }
  .bio-modal-details h3 {
    font-size: 1.6rem;
  }
}

/* Hero Video Placeholder Card */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-video-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  background-color: var(--primary);
}

.hero-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: opacity var(--transition-normal);
}

.hero-video-play-btn {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-video-play-btn:hover {
  transform: scale(1.1);
  color: #0284c7;
  background-color: var(--light-bg);
}

.hero-video-tag {
  position: absolute;
  bottom: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.hero-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: none;
}

.hero-video-card.playing .hero-video-overlay {
  opacity: 0;
  pointer-events: none;
}

.hero-video-card.playing .hero-video-element {
  display: block;
}

/* Video Reels Grid */
.video-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.reel-card {
  position: relative;
  background-color: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9/16;
  border: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.reel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  padding: 24px 16px 16px;
  color: #ffffff;
  text-align: left;
  z-index: 5;
  pointer-events: none;
}

.reel-info h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.reel-info p {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

@media (max-width: 968px) {
  .video-reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Process Trust Banner styling */
.process-trust-banner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.3fr;
  background-color: #FAF5EF; /* Warm ivory/cream background */
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-top: 50px;
  padding: 30px 40px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.banner-col {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.banner-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 10%;
  height: 80%;
  border-right: 2px dotted #CBD5E1;
}

.banner-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #F97316; /* Orange border */
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-text-wrap h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #452A18; /* Dark brown heading */
  margin-bottom: 8px;
}

.banner-btn {
  display: inline-block;
  padding: 6px 18px;
  background-color: #3B2314; /* Dark brown button */
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.banner-btn:hover {
  background-color: #4d301c;
  transform: translateY(-1px);
}

/* Rating Column specific styles */
.rating-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 20px;
}

.google-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-logo .verified-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #F97316;
  background-color: rgba(249, 115, 22, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.rating-details h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #3B2314;
  margin-bottom: 2px;
}

.stars-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.stars-wrap .stars {
  color: #fbbf24; /* Google gold star color */
  font-size: 0.95rem;
}

/* Responsive adjustment */
@media (max-width: 968px) {
  .process-trust-banner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 24px;
  }
  .banner-col:not(:last-child)::after {
    display: none;
  }
  .rating-col {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
  .banner-col {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   NETFLIX-STYLE FEATURED TREATMENTS EXPLORER
   ========================================================================== */
.treatments-explorer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: 40px;
}

.explorer-showcase {
  position: relative;
  height: 520px;
  background: #050b1a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.explorer-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.explorer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.5s ease;
}

.explorer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 31, 77, 0.2) 20%, rgba(11, 31, 77, 0.9) 95%);
  z-index: 2;
  pointer-events: none;
}

.explorer-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  color: #ffffff;
  pointer-events: auto;
  text-align: left;
}

.explorer-badge {
  background: var(--primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 16px;
}

.explorer-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.explorer-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
}

.explorer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.explorer-btn {
  background: #ffffff;
  color: var(--secondary);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition-normal);
}

.explorer-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.explorer-duration {
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.explorer-duration::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.explorer-play-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 3;
}

.explorer-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  z-index: 4;
}

.explorer-progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.1s linear;
}

/* Sidebar List */
.explorer-sidebar {
  padding: 24px;
  background: #f8fafc;
  overflow-y: auto;
  height: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--border-light);
}

.explorer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: #ffffff;
  text-align: left;
}

.explorer-item:hover {
  background: rgba(27, 168, 232, 0.04);
  border-color: rgba(27, 168, 232, 0.1);
  transform: translateX(4px);
}

.explorer-item.active {
  background: rgba(27, 168, 232, 0.08);
  border-color: rgba(27, 168, 232, 0.2);
  box-shadow: var(--shadow-sm);
}

.explorer-item-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  width: 20px;
}

.explorer-item.active .explorer-item-num {
  color: var(--primary);
}

.explorer-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.explorer-item.active .explorer-item-icon {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.explorer-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.explorer-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--secondary);
}

.explorer-item-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 968px) {
  .treatments-explorer {
    grid-template-columns: 1fr;
  }
  .explorer-showcase, .explorer-sidebar {
    height: auto;
  }
  .explorer-showcase {
    min-height: 380px;
  }
  .explorer-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-light);
  }
}

/* ==========================================================================
   DOCTORS SECTION - LARGE PROFILE CARDS
   ========================================================================== */
.doctors-funnel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.doctors-funnel-grid .doctor-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.doctors-funnel-grid .doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(27, 168, 232, 0.2);
}

/* Featured Doctor Srinivas Manohar stands out */
.doctor-card.featured-doctor {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 2px solid rgba(27, 168, 232, 0.25);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.doc-img-wrap {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  background: #f1f5f9;
}

.doc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.doctor-card:hover .doc-img-wrap img {
  transform: scale(1.03);
}

.doc-experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.doc-details-wrap {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.doctor-card:not(.featured-doctor) .doc-details-wrap {
  padding: 30px 24px;
  flex-grow: 1;
}

.doc-category {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.doc-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.doctor-card:not(.featured-doctor) .doc-name {
  font-size: 1.45rem;
}

.doc-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}

.doc-bio-summary {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}

.doc-metadata-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.doc-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.doc-meta-item svg {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.doc-meta-item h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 2px 0;
}

.doc-meta-item p {
  font-size: 0.92rem;
  color: var(--secondary);
  margin: 0;
  font-weight: 600;
}

.doc-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

@media (max-width: 968px) {
  .doctors-funnel-grid {
    grid-template-columns: 1fr;
  }
  .doctor-card.featured-doctor {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .doc-img-wrap {
    min-height: 300px;
  }
  .doc-details-wrap {
    padding: 24px;
  }
}

/* ==========================================================================
   BEFORE & AFTER DRAGGABLE RESULTS CARD GRID
   ========================================================================== */
.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.ba-result-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ba-slider-before {
  z-index: 1;
}

.ba-slider-after {
  z-index: 2;
  width: 50%;
  border-right: none;
}

.ba-slider-badge {
  position: absolute;
  top: 16px;
  background: rgba(11, 31, 77, 0.75);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 3;
}

.ba-slider-badge.before-badge {
  right: 16px;
}

.ba-slider-badge.after-badge {
  left: 16px;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 4;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #1BA8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease;
}

.ba-slider-handle:hover .ba-slider-handle-button {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #1BA8E8;
}

.ba-result-info {
  padding: 24px;
  text-align: left;
  border-top: 1px solid var(--border-light);
}

.ba-result-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.ba-result-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .ba-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ba-slider-container {
    height: 280px;
  }
}

/* ==========================================================================
   VIDEO TESTIMONIALS - NETFLIX LAYOUT
   ========================================================================== */
.testimonials-video-funnel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-video-player-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.testimonial-video-player-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(11, 31, 77, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
  text-align: left;
}

.testimonial-player-overlay.hide {
  opacity: 0;
}

.testimonial-player-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.testimonial-player-author {
  font-size: 1rem;
  opacity: 0.9;
}

.testimonial-player-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(27, 168, 232, 0.5);
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s ease;
}

.testimonial-player-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}

.testimonial-video-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  background: #000;
}

.testimonial-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.testimonial-thumb:hover video {
  opacity: 0.85;
}

.testimonial-thumb.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.testimonial-thumb.active video {
  opacity: 0.9;
}

.testimonial-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.testimonial-thumb-info {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

@media (max-width: 768px) {
  .testimonial-video-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-player-text {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   HOMEPAGE GALLERY - FILTER & LIGHTBOX
   ========================================================================== */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(27, 168, 232, 0.2);
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: #f1f5f9;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 77, 0) 30%, rgba(11, 31, 77, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
  opacity: 0;
  transition: opacity var(--transition-normal);
  text-align: left;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

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

.gallery-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-card-category {
  font-size: 0.75rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Lightbox styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 31, 77, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.lightbox-image-wrap {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 3px solid #ffffff;
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
  padding: 10px;
  user-select: none;
}

.lightbox-arrow:hover {
  color: var(--primary);
  transform: translateY(-50%) scale(1.15);
}

.lightbox-arrow-left {
  left: -80px;
}

.lightbox-arrow-right {
  right: -80px;
}

@media (max-width: 968px) {
  .homepage-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-arrow-left { left: 10px; }
  .lightbox-arrow-right { right: 10px; }
  .lightbox-arrow { font-size: 2rem; background: rgba(0,0,0,0.3); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
}

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

/* ==========================================================================
   HERO SECTION PREMIUM REFINEMENTS
   ========================================================================== */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  color: var(--primary);
  font-size: 1rem;
}

.hero-media-side {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-doctor-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.hero-doc-img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
}

.hero-doc-main {
  position: relative;
  z-index: 2;
  margin-right: -40px;
}

.hero-doc-sec {
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

/* Premium Video Tour Card overlaying doctor images */
.hero-video-card-premium {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 260px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
  background: #000;
}

.hero-video-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 31, 77, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.video-tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
}

.video-tour-badge {
  background: var(--primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.video-tour-duration {
  opacity: 0.9;
}

.hero-video-card-premium .hero-video-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 15px rgba(27, 168, 232, 0.5);
  animation: pulse-glow 2s infinite;
}

.video-tour-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-video-element {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-card-premium.playing .hero-video-overlay-glass {
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 168, 232, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(27, 168, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 168, 232, 0);
  }
}

@media (max-width: 968px) {
  .hero-media-side {
    height: 380px;
    margin-top: 40px;
  }
  .hero-doc-img {
    max-height: 350px;
  }
  .hero-video-card-premium {
    width: 220px;
    height: 130px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }
}

/* ==========================================================================
   DENTAL CARE PROCESS ANIMATIONS
   ========================================================================== */
/* Dental Process Step Animations */
@keyframes stepFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}
.step-circle:hover {
  transform: scale(1.1) !important;
  border-color: rgba(27,168,232,0.8) !important;
  box-shadow: 0 0 30px rgba(27,168,232,0.3);
}
.process-step:hover .step-circle {
  transform: scale(1.12);
}


/* ==========================================================================
   Homepage video, treatments, reels and before/after refinements
   ========================================================================== */
.hero-section {
  padding: 150px 0 92px;
  min-height: 88vh;
  background:
    radial-gradient(circle at 78% 24%, rgba(27,168,232,0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 46%, #eef9ff 100%);
}

.hero-premium-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 6vw, 92px);
}

.hero-rating-badge {
  gap: 10px;
  color: var(--secondary);
  box-shadow: 0 14px 40px rgba(11,31,77,0.07);
}

.hero-rating-badge > span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: 0;
}

.hero-title span {
  display: inline-block;
  margin-top: 10px;
}

.hero-subtitle {
  max-width: 570px;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-benefit-list .trust-item {
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(226,232,240,0.85);
  box-shadow: none;
}

.hero-benefit-list .trust-item svg {
  color: var(--accent);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta-row .btn {
  min-height: 52px;
  padding: 14px 24px;
}

.hero-whatsapp-chip {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37,211,102,0.28);
}

.hero-premium-media {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-premium-media::before {
  content: "";
  position: absolute;
  inset: 10% 2% 8% 14%;
  border-radius: 42px;
  background: radial-gradient(circle at 35% 18%, rgba(20,198,198,0.2), transparent 28%), rgba(255,255,255,0.54);
  filter: blur(1px);
}

.hero-doctor-depth {
  position: absolute;
  right: 0;
  top: 18px;
  width: 62%;
  height: 76%;
  z-index: 1;
  pointer-events: none;
}

.hero-doctor-depth img {
  position: absolute;
  bottom: 0;
  width: 58%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(11,31,77,0.18));
}

.hero-doctor-depth img:first-child {
  right: 30%;
}

.hero-doctor-depth img:last-child {
  right: 0;
  opacity: 0.92;
}

.hero-feature-video-card {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  min-height: 430px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 32px 80px rgba(11,31,77,0.18);
}

.hero-feature-video-card::after {
  background: linear-gradient(180deg, rgba(11,31,77,0.04), rgba(11,31,77,0.52));
}

.hero-feature-video-card .hero-video {
  min-height: 430px;
}

.video-duration {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(12px);
}

.patients-trust {
  background:
    radial-gradient(circle at 14% 42%, rgba(27,168,232,0.08), transparent 34%),
    #f8fafc;
}

.trust-collage-grid {
  grid-template-columns: minmax(470px, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
}

.trust-collage {
  min-height: 610px;
  isolation: isolate;
}

.collage-glow,
.collage-blur,
.accent-dot {
  position: absolute;
  display: block;
  pointer-events: none;
}

.collage-glow {
  inset: 10% 5% 6% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,168,232,0.24), rgba(20,198,198,0.12) 42%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.collage-blur {
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.65;
  z-index: 0;
}

.collage-blur-one {
  width: 150px;
  height: 150px;
  left: 2%;
  top: 12%;
  background: rgba(20,198,198,0.32);
}

.collage-blur-two {
  width: 190px;
  height: 190px;
  right: 7%;
  bottom: 8%;
  background: rgba(27,168,232,0.24);
}

.trust-img {
  z-index: 1;
  border: 6px solid #ffffff;
  box-shadow: 0 26px 62px rgba(11,31,77,0.18);
}

.trust-img-main {
  left: 4%;
  top: 6%;
  width: 60%;
  height: 82%;
  object-fit: contain;
  object-position: bottom center;
  background: linear-gradient(180deg, #e9f7ff, #ffffff);
  border-radius: 46% 54% 48% 52% / 30% 30% 70% 70%;
  clip-path: ellipse(45% 50% at 50% 50%);
  z-index: 2;
}

.trust-img-top {
  right: 5%;
  top: 6%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  z-index: 4;
}

.trust-img-bottom {
  right: 1%;
  bottom: 8%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  z-index: 3;
}

.trust-stat {
  z-index: 5;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.9);
}

.trust-stat-rating {
  left: 1%;
  bottom: 18%;
}

.trust-stat-smiles {
  right: 4%;
  top: 47%;
}

.accent-dot {
  z-index: 6;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(27,168,232,0.22);
}

.accent-dot-one {
  width: 14px;
  height: 14px;
  left: 67%;
  top: 7%;
  background: var(--accent);
}

.accent-dot-two {
  width: 18px;
  height: 18px;
  right: 3%;
  top: 34%;
  background: var(--primary);
}

.accent-dot-three {
  width: 10px;
  height: 10px;
  left: 20%;
  bottom: 8%;
  background: var(--secondary);
}

.dental-float-two {
  display: none;
}

.appointment-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.appointment-shell {
  padding: clamp(22px, 4vw, 42px);
  border-radius: 32px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 28px 80px rgba(11,31,77,0.08);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.appointment-form-card,
.clinic-info-card {
  border-radius: 24px;
  overflow: hidden;
}

.appointment-form-card {
  box-shadow: none;
  border: 1px solid var(--border-light);
}

.clinic-info-card {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(11,31,77,0.92), rgba(27,168,232,0.84)),
    url('../images/clinic/op-area.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clinic-info-card .section-kicker,
.clinic-info-card h2,
.clinic-info-card strong {
  color: #fff;
}

.clinic-info-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 8px 0 28px;
}

.clinic-info-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.clinic-info-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
}

.clinic-info-list span,
.clinic-info-list p {
  color: rgba(255,255,255,0.76);
}

.clinic-info-list span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.clinic-info-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.clinic-info-list p {
  margin: 0;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.timeline-card {
  position: relative;
  z-index: 1;
  min-height: 116px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 14px 34px rgba(11,31,77,0.06);
}

.timeline-card span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.timeline-card strong {
  color: var(--secondary);
  font-size: 0.98rem;
}

.contact-premium-section + .section-padding.reveal {
  display: none;
}

.contact-premium-section {
  background: #f7fbff;
  padding-bottom: 90px;
}

.contact-map-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.contact-map-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,251,255,0.98) 0%, rgba(247,251,255,0.88) 42%, rgba(247,251,255,0.22) 100%);
  z-index: 1;
  pointer-events: none;
}

.contact-map-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
}

.contact-map-overlay {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.contact-intro-card {
  width: min(100%, 520px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: 0 30px 86px rgba(11,31,77,0.16);
  backdrop-filter: blur(18px);
}

.contact-intro-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin: 8px 0 14px;
}

.contact-intro-card > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-compact-form {
  padding: 0;
  gap: 16px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -46px;
  position: relative;
  z-index: 4;
}

.contact-info-strip article {
  min-height: 160px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 20px 52px rgba(11,31,77,0.1);
}

.contact-info-strip span {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.contact-info-strip strong {
  display: block;
  color: var(--secondary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-info-strip p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-info-strip a {
  color: var(--primary);
  font-weight: 800;
}
.hero-video-layout { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr); }
.hero-video-panel { display: flex; flex-direction: column; gap: 18px; align-items: stretch; }
.hero-video-card { position: relative; min-height: 430px; border-radius: 18px; overflow: hidden; background: #0f172a; box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22); border: 1px solid rgba(255,255,255,0.4); }
.hero-video-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.08), rgba(15,23,42,0.56)); pointer-events: none; }
.hero-video { width: 100%; height: 100%; min-height: 430px; object-fit: cover; display: block; }
.hero-video-caption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 4; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; color: #fff; text-align: left; }
.hero-video-caption h3 { color: #fff; font-size: 1.1rem; margin: 4px 0 0; max-width: 310px; }
.video-kicker { display: inline-flex; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #bae6fd; }
.video-duration { background: rgba(15,23,42,0.8); color: #fff; border-radius: 6px; padding: 5px 8px; font-size: 0.78rem; font-weight: 700; }
.video-play-button { position: absolute; inset: 0; margin: auto; z-index: 5; width: 58px; height: 58px; border-radius: 50%; background: #ffffff; box-shadow: 0 16px 40px rgba(15,23,42,0.28); display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease, opacity 0.2s ease; }
.video-play-button span { width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid var(--secondary); margin-left: 4px; }
.video-play-button:hover { transform: scale(1.06); }
.is-playing .video-play-button { opacity: 0; pointer-events: none; }
.hero-video-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-video-stats div { background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; box-shadow: var(--shadow-sm); }
.hero-video-stats strong { display: block; color: var(--primary); font-size: 1.35rem; line-height: 1; margin-bottom: 4px; }
.hero-video-stats span { color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.clean-heading { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.clean-heading p { color: var(--secondary); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.clean-heading h2 { font-size: clamp(2rem, 4vw, 2.65rem); margin-bottom: 12px; letter-spacing: 0; }
.clean-heading span { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.signature-section { background: #f8fafc; }
.signature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.signature-card { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(15,23,42,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.signature-card[hidden] { display: none; }
.signature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(15,23,42,0.10); }
.signature-video { position: relative; height: 290px; overflow: hidden; background: #0f172a; }
.signature-video video, .signature-video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.signature-video::after, .reel-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.04), rgba(15,23,42,0.48)); pointer-events: none; }
.signature-video small { position: absolute; top: 14px; left: 14px; z-index: 4; background: rgba(255,255,255,0.92); color: var(--primary); border-radius: 999px; padding: 6px 10px; font-size: 0.72rem; font-weight: 800; }
.signature-content { padding: 22px; text-align: left; }
.signature-content h3 { font-size: 1.18rem; margin-bottom: 8px; }
.signature-content p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 18px; }
.signature-content a { color: var(--secondary); font-weight: 800; font-size: 0.9rem; }
.signature-action { margin-top: 38px; }
.treatment-filter { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin: -18px auto 34px; }
.treatment-filter-btn { min-height: 42px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(14,165,233,0.2); background: #fff; color: var(--primary); font-size: 0.88rem; font-weight: 800; box-shadow: 0 8px 20px rgba(15,23,42,0.04); transition: all 0.2s ease; }
.treatment-filter-btn:hover, .treatment-filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-1px); }
.signature-grid > [data-treatment-category][hidden] { display: none !important; }
.faq-redesign { background: #cfc5d0; padding: 110px 0; }
.faq-redesign-panel { display: grid; grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr); gap: clamp(34px, 6vw, 86px); align-items: center; background: #fff; padding: clamp(34px, 5vw, 64px); border-radius: 0; box-shadow: 0 24px 70px rgba(15,23,42,0.12); }
.faq-copy { text-align: left; }
.faq-kicker { color: #6d5dfc; font-size: 0.82rem; font-weight: 800; margin-bottom: 14px; }
.faq-copy h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin-bottom: 14px; max-width: 430px; }
.faq-copy h2::first-line { color: var(--primary); }
.faq-copy span { display: block; max-width: 430px; color: var(--muted); line-height: 1.7; margin-bottom: 26px; }
.faq-copy img { max-width: min(280px, 82%); margin-top: 12px; }
.faq-accordion { max-width: none; margin: 0; display: grid; gap: 16px; }
.faq-accordion .accordion-item { border-radius: 14px; background: #f8fafc; border: 1px solid #edf0f5; box-shadow: 0 12px 28px rgba(15,23,42,0.06); overflow: hidden; }
.faq-accordion .accordion-header { padding: 18px 20px; }
.faq-accordion .accordion-header h4 { font-size: 0.98rem; }
.faq-accordion .accordion-icon { width: 28px; height: 28px; border-radius: 50%; background: #7c5cff; color: #fff; display: grid; place-items: center; }
.faq-accordion .accordion-content-inner { padding: 0 20px 20px; font-size: 0.9rem; color: var(--muted); }
.before-after-home { background: #fff; }
.before-after-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.before-after-card { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); text-align: left; }
.before-after-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-light); }
.before-after-images div { position: relative; height: 180px; overflow: hidden; background: #e2e8f0; }
.before-after-images img { width: 100%; height: 100%; object-fit: cover; }
.before-after-images span { position: absolute; left: 8px; bottom: 8px; background: rgba(15,23,42,0.82); color: #fff; border-radius: 5px; padding: 3px 7px; font-size: 0.68rem; font-weight: 800; }
.before-after-card h3 { padding: 16px 16px 4px; font-size: 1rem; }
.before-after-card p { padding: 0 16px 18px; color: var(--muted); font-size: 0.85rem; line-height: 1.55; margin: 0; }
.video-testimonials-section { background: #f8fafc; }
.reels-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.reel-card { position: relative; aspect-ratio: 9 / 16; min-height: 390px; border-radius: 18px; overflow: hidden; background: #0f172a; box-shadow: 0 16px 42px rgba(15,23,42,0.14); border: 1px solid rgba(15,23,42,0.08); }
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-label { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 4; color: #fff; text-align: left; }
.reel-label strong { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.reel-label span { font-size: 0.78rem; color: #dbeafe; font-weight: 700; }
.treatment-hero { padding: 160px 0 78px; background: linear-gradient(135deg, #0f172a 0%, #10304f 100%); color: #fff; }
.treatment-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr); gap: 56px; align-items: center; }
.treatment-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 12px 0 18px; letter-spacing: 0; }
.treatment-hero p { color: #cbd5e1; font-size: 1.08rem; line-height: 1.75; max-width: 720px; }
.treatment-eyebrow { color: #7dd3fc; font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.treatment-hero-media { border-radius: 18px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.14); }
.treatment-hero-media img { width: 100%; height: 390px; object-fit: cover; }
.treatment-detail-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: start; }
.treatment-content-block { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 34px; box-shadow: var(--shadow-sm); margin-bottom: 24px; text-align: left; }
.treatment-content-block h2, .treatment-content-block h3 { margin-bottom: 16px; }
.treatment-content-block p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.treatment-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.treatment-feature, .process-card, .faq-card { border: 1px solid var(--border-light); border-radius: 12px; padding: 18px; background: #fff; }
.treatment-feature strong, .process-card strong { display: block; color: var(--primary); margin-bottom: 6px; }
.treatment-feature span, .process-card span, .faq-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; counter-reset: process; }
.process-card { counter-increment: process; position: relative; padding-top: 46px; }
.process-card::before { content: counter(process, decimal-leading-zero); position: absolute; top: 16px; left: 18px; color: var(--secondary); font-weight: 900; font-size: 0.82rem; }
.suitable-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.suitable-list li { padding: 14px 16px; border: 1px solid var(--border-light); border-radius: 10px; color: var(--primary); background: #f8fafc; font-weight: 650; }
.treatment-sidebar { position: sticky; top: 98px; display: grid; gap: 18px; }
.treatment-side-card { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-md); }
.treatment-side-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.treatment-side-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 16px; }
.treatment-side-list { display: grid; gap: 10px; margin: 18px 0; padding: 0; list-style: none; }
.treatment-side-list li { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.treatment-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Premium homepage additions */
.treatment-ticker {
  height: 58px;
  background: #0B1F4D;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(27,168,232,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.treatment-ticker-track {
  display: flex;
  width: max-content;
  animation: treatmentTicker 26s linear infinite;
}

.treatment-ticker:hover .treatment-ticker-track {
  animation-play-state: paused;
}

.treatment-ticker-row {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.treatment-ticker-row i {
  color: #14C6C6;
  font-style: normal;
  font-size: 0.82rem;
  text-shadow: 0 0 18px rgba(20,198,198,0.72);
}

@keyframes treatmentTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-orbit-divider {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin: -28px 0 -42px;
  pointer-events: none;
}

.brand-orbit-divider-compact {
  margin: -44px 0 -36px;
}

.brand-orbit {
  width: clamp(120px, 13vw, 160px);
  height: clamp(120px, 13vw, 160px);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 22px 60px rgba(11,31,77,0.16), 0 0 40px rgba(27,168,232,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-orbit::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(27,168,232,0.28);
  box-shadow: inset 0 0 22px rgba(20,198,198,0.12);
}

.brand-orbit-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: brandOrbitSpin 22s linear infinite;
}

.brand-orbit-text text {
  fill: #0B1F4D;
  font-size: 9.8px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-orbit-logo {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(240,249,255,0.9));
  border: 1px solid rgba(27,168,232,0.16);
  box-shadow: 0 12px 28px rgba(11,31,77,0.1);
}

.brand-orbit-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes brandOrbitSpin {
  to { transform: rotate(360deg); }
}

.section-kicker {
  color: #1BA8E8;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.facility-showcase {
  background:
    radial-gradient(circle at 12% 18%, rgba(20,198,198,0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.facility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.02fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.facility-copy h2,
.trust-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: #0B1F4D;
}

.facility-copy > p:not(.section-kicker),
.trust-copy > p:not(.section-kicker) {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 34px;
}

.facility-features {
  display: grid;
  gap: 14px;
}

.facility-features div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(226,232,240,0.95);
}

.facility-features span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(27,168,232,0.13), rgba(20,198,198,0.13));
  color: #1BA8E8;
  font-weight: 900;
}

.facility-features strong {
  color: #0B1F4D;
  font-size: 1rem;
}

.facility-features small {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.facility-media {
  position: relative;
  min-height: 600px;
}

.facility-media::before {
  content: '';
  position: absolute;
  right: -34px;
  top: 32px;
  width: 88%;
  height: 88%;
  border-radius: 46% 54% 34% 66% / 46% 34% 66% 54%;
  background: linear-gradient(135deg, rgba(27,168,232,0.16), rgba(20,198,198,0.16));
}

.facility-image-mask {
  position: absolute;
  inset: 0 0 0 42px;
  overflow: hidden;
  border-radius: 44% 56% 32% 68% / 34% 28% 72% 66%;
  clip-path: path('M 92 0 L 520 0 C 590 8 636 72 625 145 L 590 386 C 578 472 515 546 428 565 L 128 630 C 48 648 -12 584 3 504 L 58 191 C 74 99 4 42 92 0 Z');
  box-shadow: 0 34px 80px rgba(11,31,77,0.18);
  border: 1px solid rgba(255,255,255,0.76);
}

.facility-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facility-floating-card {
  position: absolute;
  left: 0;
  bottom: 74px;
  width: 245px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: 0 22px 48px rgba(11,31,77,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.facility-floating-card strong {
  display: block;
  color: #0B1F4D;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.facility-floating-card span {
  color: #64748b;
  font-weight: 750;
  font-size: 0.9rem;
}

.patients-trust {
  background: #f8fafc;
  overflow: hidden;
}

.trust-collage-grid {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(0, 0.9fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.trust-collage {
  position: relative;
  min-height: 650px;
}

.trust-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 28px 68px rgba(11,31,77,0.16);
  border: 8px solid #ffffff;
}

.trust-img-main {
  left: 4%;
  top: 8%;
  width: 58%;
  height: 74%;
  border-radius: 34% 66% 44% 56% / 24% 40% 60% 76%;
  clip-path: ellipse(48% 50% at 50% 50%);
}

.trust-img-top {
  right: 3%;
  top: 0;
  width: 45%;
  height: 38%;
  border-radius: 40% 60% 34% 66% / 42% 32% 68% 58%;
  clip-path: polygon(12% 0, 100% 0, 100% 78%, 78% 100%, 0 92%, 0 16%);
}

.trust-img-bottom {
  right: 5%;
  bottom: 4%;
  width: 48%;
  height: 42%;
  border-radius: 62% 38% 56% 44% / 50% 62% 38% 50%;
  clip-path: ellipse(50% 47% at 50% 50%);
}

.trust-stat {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 18px 44px rgba(11,31,77,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.trust-stat strong {
  color: #0B1F4D;
  font-size: 2rem;
  line-height: 1;
}

.trust-stat span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-stat-rating {
  left: 0;
  bottom: 16%;
}

.trust-stat-smiles {
  right: 0;
  top: 40%;
}

.dental-float {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #1BA8E8, #14C6C6);
  box-shadow: 0 16px 32px rgba(27,168,232,0.28);
}

.dental-float-one {
  left: 58%;
  top: 7%;
}

.dental-float-two {
  right: 17%;
  bottom: 0;
}

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

.trust-metrics div {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 14px 34px rgba(11,31,77,0.07);
}

.trust-metrics strong {
  display: block;
  color: #0B1F4D;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-metrics span {
  color: #64748b;
  font-weight: 800;
  font-size: 0.88rem;
}

@supports not (clip-path: path('M0 0')) {
  .facility-image-mask {
    clip-path: none;
    border-radius: 44% 56% 32% 68% / 34% 28% 72% 66%;
  }
}

@media (max-width: 1080px) {
  .hero-premium-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }
  .hero-premium-media {
    min-height: 520px;
  }
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
  .contact-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .signature-grid, .treatment-index-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-strip { grid-template-columns: repeat(2, 1fr); }
  .reels-row { overflow-x: auto; display: flex; padding-bottom: 12px; scroll-snap-type: x mandatory; }
  .reel-card { flex: 0 0 245px; scroll-snap-align: start; }
  .treatment-detail-wrap, .treatment-hero-grid { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }
  .facility-grid,
  .trust-collage-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .facility-media,
  .trust-collage {
    min-height: 560px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 968px) {
  .hero-section {
    min-height: auto;
    padding: 112px 0 64px;
  }
  .hero-video-layout { grid-template-columns: 1fr; }
  .hero-video-card, .hero-video, .hero-video-card video { min-height: 320px; }
  .section-padding {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .hero-benefit-list {
    grid-template-columns: 1fr;
  }
  .hero-cta-row .btn {
    width: auto;
  }
  .hero-premium-media {
    min-height: 430px;
  }
  .hero-doctor-depth {
    width: 74%;
    height: 64%;
  }
  .hero-feature-video-card,
  .hero-feature-video-card .hero-video {
    min-height: 330px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .appointment-shell {
    border-radius: 24px;
    padding: 16px;
  }
  .contact-map-stage,
  .contact-map-overlay {
    min-height: 680px;
  }
  .contact-map-stage::before {
    background: linear-gradient(180deg, rgba(247,251,255,0.98) 0%, rgba(247,251,255,0.9) 56%, rgba(247,251,255,0.28) 100%);
  }
  .contact-info-strip,
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-strip {
    margin-top: 18px;
  }
  .hero-title {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-booking-card {
    padding: 18px;
    border-radius: 20px;
  }
  .hero-booking-form-grid {
    grid-template-columns: 1fr;
  }
  .hero-booking-btn {
    grid-column: auto;
    min-height: 54px;
  }
  .hero-trust-indicators {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trust-item {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(226,232,240,0.85);
  }
  #trust-bar .container > div {
    flex-direction: column;
  }
  #trust-bar .container > div > div {
    width: 100%;
    border-right: 0 !important;
    border-bottom: 1px solid #e2e8f0;
  }
  .treatment-ticker {
    height: 54px;
  }
  .treatment-ticker-row {
    gap: 24px;
    padding-right: 24px;
    font-size: 0.82rem;
  }
  .brand-orbit-divider {
    margin: -18px 0 -30px;
  }
  .facility-copy h2,
  .trust-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .facility-media {
    min-height: 460px;
  }
  .facility-image-mask {
    inset: 0 0 0 0;
    border-radius: 38% 62% 34% 66% / 28% 34% 66% 72%;
    clip-path: ellipse(49% 50% at 50% 50%);
  }
  .facility-media::before {
    right: -18px;
    top: 26px;
    width: 92%;
    height: 86%;
  }
  .facility-floating-card {
    left: 14px;
    bottom: 24px;
    width: min(245px, calc(100% - 28px));
  }
  .facility-features div {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
  }
  .trust-collage {
    min-height: 520px;
  }
  .trust-img-main {
    left: 0;
    top: 8%;
    width: 64%;
    height: 74%;
  }
  .trust-img-top {
    right: 0;
    width: 45%;
    height: 34%;
  }
  .trust-img-bottom {
    right: 0;
    bottom: 7%;
    width: 54%;
    height: 42%;
  }
  .trust-stat {
    min-width: 132px;
    padding: 14px 16px;
  }
  .trust-stat strong {
    font-size: 1.6rem;
  }
  .trust-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .signature-grid, .before-after-strip, .treatment-feature-grid, .process-grid, .treatment-index-grid { grid-template-columns: 1fr; }
  .signature-video { height: 250px; }
  .hero-video-stats { grid-template-columns: 1fr; }
  .treatment-content-block { padding: 24px; }
  .before-after-images div { height: 150px; }
  .reel-card {
    flex-basis: 78vw;
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-padding {
    padding: 58px 0;
  }
  .hero-section {
    padding-top: 92px;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-whatsapp-chip {
    width: 50px;
    height: 50px;
  }
  .clean-heading {
    margin-bottom: 32px;
  }
  .clean-heading h2 {
    font-size: 1.85rem;
  }
  .brand-orbit {
    width: 122px;
    height: 122px;
  }
  .facility-media {
    min-height: 390px;
  }
  .facility-floating-card {
    padding: 16px;
    border-radius: 20px;
  }
  .trust-collage {
    min-height: 430px;
  }
  .trust-img {
    border-width: 5px;
  }
  .trust-stat-smiles {
    top: 43%;
  }
}

/* Final premium redesign overrides keep the requested homepage/contact layouts above older rules. */
.hero-section {
  padding: 150px 0 92px;
  min-height: 88vh;
  background:
    radial-gradient(circle at 78% 24%, rgba(27,168,232,0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 46%, #eef9ff 100%);
}

.hero-video-layout.hero-premium-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 6vw, 92px);
}

.hero-premium-media {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-feature-video-card.hero-video-card {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  min-height: 430px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 32px 80px rgba(11,31,77,0.18);
}

.hero-feature-video-card .hero-video {
  min-height: 430px;
}

.hero-video-stats,
.hero-booking-card {
  display: none;
}

.patients-trust .trust-collage-grid {
  grid-template-columns: minmax(470px, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
}

.patients-trust .trust-collage {
  min-height: 610px;
  isolation: isolate;
}

.patients-trust .trust-img {
  border: 6px solid #ffffff;
  box-shadow: 0 26px 62px rgba(11,31,77,0.18);
}

.patients-trust .trust-img-main {
  left: 4%;
  top: 6%;
  width: 60%;
  height: 82%;
  object-fit: contain;
  object-position: bottom center;
  background: linear-gradient(180deg, #e9f7ff, #ffffff);
  border-radius: 46% 54% 48% 52% / 30% 30% 70% 70%;
  clip-path: ellipse(45% 50% at 50% 50%);
  z-index: 2;
}

.patients-trust .trust-img-top {
  right: 5%;
  top: 6%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  z-index: 4;
}

.patients-trust .trust-img-bottom {
  right: 1%;
  bottom: 8%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  z-index: 3;
}

.patients-trust .trust-stat {
  z-index: 5;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.9);
}

.patients-trust .trust-stat-rating {
  left: 1%;
  bottom: 18%;
}

.patients-trust .trust-stat-smiles {
  right: 4%;
  top: 47%;
}

.patients-trust .dental-float {
  display: none;
}

@media (max-width: 1080px) {
  .hero-video-layout.hero-premium-grid,
  .patients-trust .trust-collage-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .hero-premium-media {
    min-height: 430px;
  }

  .hero-feature-video-card.hero-video-card,
  .hero-feature-video-card .hero-video {
    min-height: 330px;
  }

  .patients-trust .trust-img-main {
    left: 0;
    top: 8%;
    width: 64%;
    height: 74%;
  }

  .patients-trust .trust-img-top {
    right: 0;
    width: 45%;
    height: 34%;
  }

  .patients-trust .trust-img-bottom {
    right: 0;
    bottom: 7%;
    width: 54%;
    height: 42%;
  }

  .process-timeline,
  .contact-info-strip,
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PREMIUM TREATMENT DETAIL PAGES
   ========================================================================== */
.premium-treatment-page {
  background: #f7fafc;
}

.premium-treatment-page .header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.premium-treatment-hero {
  padding: 80px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(20,198,198,0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2fbff 48%, #eaf8ff 100%);
  overflow: hidden;
}

.premium-treatment-hero-grid,
.premium-two-col,
.premium-booking-grid,
.premium-aftercare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.premium-treatment-hero h1 {
  color: #0b1f4d;
  font-size: clamp(2.45rem, 5.8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 12px 0 18px;
}

.premium-treatment-hero h2 {
  color: #1ba8e8;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.premium-treatment-hero p,
.premium-section p {
  color: #64748b;
  line-height: 1.72;
}

.premium-treatment-hero p {
  font-size: 1.08rem;
  max-width: 700px;
  margin-bottom: 26px;
}

.premium-kicker {
  color: #1ba8e8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.premium-trust-row,
.premium-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-trust-row span,
.premium-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(27,168,232,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: #0b1f4d;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11,31,77,0.06);
}

.premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.premium-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1f4d;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 28px 72px rgba(11,31,77,0.18);
}

.premium-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.premium-video-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  z-index: 2;
}

.premium-video-card::after,
.premium-reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,77,0.04) 15%, rgba(11,31,77,0.72) 100%);
  pointer-events: none;
}

.premium-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #1ba8e8;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  flex: 0 0 auto;
}

.premium-hero-video {
  border-radius: 28px;
}

.premium-section {
  padding: 88px 0;
  background: #ffffff;
}

.premium-soft-band,
.premium-booking-section {
  background: #f7fafc;
}

.premium-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.premium-section-heading h2,
.premium-two-col h2,
.premium-aftercare-grid h2,
.premium-booking-grid h2,
.premium-pricing-panel h2 {
  color: #0b1f4d;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 10px 0 14px;
}

.premium-explainer-grid,
.premium-card-grid,
.premium-risk-grid,
.premium-benefit-grid,
.premium-tech-grid,
.premium-results-grid,
.premium-reel-grid,
.premium-package-grid {
  display: grid;
  gap: 18px;
}

.premium-explainer-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.premium-card-grid,
.premium-risk-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.premium-tech-grid,
.premium-results-grid,
.premium-reel-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.premium-mini-panel,
.premium-treatment-card,
.premium-risk-card,
.premium-benefit-card,
.premium-tech-card,
.premium-food-grid article,
.premium-pricing-panel,
.premium-appointment-form,
.premium-process-step {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(11,31,77,0.06);
}

.premium-mini-panel,
.premium-treatment-card,
.premium-risk-card,
.premium-benefit-card,
.premium-tech-card,
.premium-food-grid article {
  padding: 22px;
}

.premium-mini-panel span,
.premium-process-step span,
.premium-result-copy span,
.premium-clinic-hours strong {
  color: #1ba8e8;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.premium-mini-panel p {
  margin-top: 8px;
  font-size: 0.94rem;
}

.premium-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(27,168,232,0.14), rgba(20,198,198,0.14));
  color: #0b1f4d;
  font-weight: 900;
}

.premium-treatment-card h3,
.premium-risk-card h3,
.premium-benefit-card h3,
.premium-tech-card h3,
.premium-process-step h3,
.premium-result-copy h3,
.premium-food-grid h3 {
  color: #0b1f4d;
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.premium-treatment-card p,
.premium-risk-card p,
.premium-benefit-card p,
.premium-tech-card p,
.premium-process-step p,
.premium-food-grid p {
  font-size: 0.92rem;
  margin: 0;
}

.warning-card {
  border-color: rgba(20,198,198,0.25);
}

.premium-risk-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.premium-benefits-section {
  background:
    linear-gradient(135deg, rgba(11,31,77,0.96), rgba(11,31,77,0.9)),
    url('../images/clinic/op-area.jpg');
  background-size: cover;
  background-position: center;
}

.premium-benefits-section .premium-kicker,
.premium-benefits-section h2 {
  color: #ffffff;
}

.premium-benefit-card {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.premium-benefit-card h3 {
  color: #ffffff;
}

.premium-benefit-card p {
  color: #dbeafe;
}

.premium-benefit-card .premium-icon {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

.premium-process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: treatment-step;
}

.premium-process-step {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-step-video {
  border-radius: 14px;
  box-shadow: none;
  margin-top: auto;
}

.premium-step-video .premium-play,
.premium-tech-video .premium-play {
  width: 36px;
  height: 36px;
  font-size: 0.78rem;
}

.premium-result-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(226,232,240,0.95);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(11,31,77,0.08);
}

.premium-result-card .ba-slider {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #e2e8f0;
  user-select: none;
}

.premium-result-card .ba-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.premium-result-card .ba-before {
  z-index: 1;
}

.premium-result-card .ba-after {
  z-index: 2;
  width: 50%;
  border-right: 3px solid #ffffff;
}

.premium-result-card .ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  z-index: 4;
  cursor: ew-resize;
}

.premium-result-card .ba-handle-line {
  width: 3px;
  height: 100%;
  background: #ffffff;
}

.premium-result-card .ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1ba8e8;
  color: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 16px 34px rgba(11,31,77,0.18);
}

.premium-result-card .ba-label {
  position: absolute;
  top: 16px;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,31,77,0.78);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-result-card .ba-label-before {
  left: 16px;
}

.premium-result-card .ba-label-after {
  right: 16px;
}

.premium-result-copy {
  padding: 22px;
}

.premium-clinic-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.premium-clinic-collage img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(11,31,77,0.12);
}

.premium-clinic-collage img:first-child {
  grid-row: span 2;
  min-height: 470px;
}

.premium-check-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.premium-check-grid div,
.premium-package-grid div,
.premium-how-it-works div,
.premium-clinic-hours {
  padding: 16px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.95);
}

.premium-check-grid strong,
.premium-package-grid strong,
.premium-how-it-works strong {
  display: block;
  color: #0b1f4d;
  margin-bottom: 4px;
}

.premium-check-grid span,
.premium-package-grid span,
.premium-clinic-hours span {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.premium-tech-card {
  padding: 0;
  overflow: hidden;
}

.premium-tech-card h3,
.premium-tech-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.premium-tech-card h3 {
  padding-top: 20px;
}

.premium-tech-card p {
  padding-bottom: 22px;
}

.premium-tech-video {
  border-radius: 0;
  box-shadow: none;
}

.premium-aftercare-grid {
  align-items: start;
}

.premium-recovery-timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.premium-recovery-timeline div {
  position: relative;
  padding: 18px 18px 18px 28px;
  border-left: 3px solid #14c6c6;
  background: #ffffff;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 12px 28px rgba(11,31,77,0.05);
}

.premium-recovery-timeline strong {
  color: #0b1f4d;
}

.premium-food-grid {
  display: grid;
  gap: 16px;
}

.premium-faq-wrap {
  max-width: 1000px;
}

.premium-faq-accordion {
  display: grid;
  gap: 14px;
}

.premium-faq-accordion .accordion-item {
  border-radius: 16px;
  border: 1px solid rgba(226,232,240,0.95);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(11,31,77,0.05);
  overflow: hidden;
}

.premium-faq-accordion .accordion-header {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.premium-faq-accordion .accordion-header h4 {
  color: #0b1f4d;
  font-size: 1rem;
  margin: 0;
}

.premium-faq-accordion .accordion-content-inner {
  padding: 0 20px 20px;
  color: #64748b;
  line-height: 1.65;
}

.premium-testimonial-band {
  background: #f7fafc;
}

.premium-reel-card {
  position: relative;
  min-height: 430px;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1f4d;
  box-shadow: 0 18px 46px rgba(11,31,77,0.14);
}

.premium-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.premium-reel-card .premium-play {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.premium-reel-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
}

.premium-reel-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}

.premium-reel-card p {
  color: #dbeafe;
  font-size: 0.9rem;
  margin: 0;
}

.premium-pricing-panel {
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(circle at 96% 0%, rgba(20,198,198,0.14), transparent 34%),
    #ffffff;
}

.premium-package-grid {
  grid-template-columns: 1fr;
}

.premium-booking-section {
  padding-bottom: 104px;
}

.premium-booking-grid {
  align-items: start;
}

.premium-how-it-works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.premium-how-it-works span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #1ba8e8;
  color: #ffffff;
  font-weight: 900;
}

.premium-clinic-hours {
  display: grid;
  gap: 7px;
}

.premium-appointment-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.premium-appointment-form label {
  display: grid;
  gap: 8px;
  color: #0b1f4d;
  font-size: 0.86rem;
  font-weight: 800;
}

.premium-appointment-form input,
.premium-appointment-form select,
.premium-appointment-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 13px;
  color: #0b1f4d;
  background: #f8fafc;
  font: inherit;
}

.premium-form-wide,
.premium-whatsapp-link {
  grid-column: 1 / -1;
}

.premium-whatsapp-link {
  text-align: center;
  color: #0b1f4d;
  font-weight: 800;
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .premium-treatment-hero-grid,
  .premium-two-col,
  .premium-booking-grid,
  .premium-aftercare-grid,
  .premium-pricing-panel {
    grid-template-columns: 1fr;
  }

  .premium-card-grid,
  .premium-risk-grid,
  .premium-benefit-grid,
  .premium-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-process-timeline,
  .premium-reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .premium-treatment-hero {
    padding: 112px 0 58px;
  }

  .premium-section {
    padding: 62px 0;
  }

  .premium-treatment-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .premium-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .premium-explainer-grid,
  .premium-card-grid,
  .premium-risk-grid,
  .premium-benefit-grid,
  .premium-tech-grid,
  .premium-results-grid,
  .premium-process-timeline,
  .premium-reel-grid,
  .premium-how-it-works,
  .premium-appointment-form {
    grid-template-columns: 1fr;
  }

  .premium-clinic-collage {
    grid-template-columns: 1fr 1fr;
  }

  .premium-clinic-collage img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .premium-clinic-collage img {
    min-height: 170px;
  }

  .premium-result-card .ba-slider {
    height: 280px;
  }

  .premium-reel-card {
    min-height: 360px;
  }
}

/* ==========================================================================
   HOMEPAGE REDESIGN OVERRIDES & PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* Brand & Global Variables */
:root {
  --brand-primary: #1BA8E8;
  --brand-secondary: #0B1F4D;
  --brand-accent: #14C6C6;
  --brand-bg: #F7FAFC;
  --brand-card-bg: #FFFFFF;
  --apple-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --stripe-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Global Cleanup */
.home section {
  background-color: var(--brand-bg);
}

/* 1. Hero Redesign — Simplilearn-style 48/52 balanced layout */
.hero-section {
  padding: 190px 0 100px;
  background: url('../images/DesktopBG.png') center / cover no-repeat;
  overflow: hidden;
}
.hero-section .container {
  max-width: 1320px;
  padding-left: 48px;
  padding-right: 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow-text {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-headings);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  max-width: 600px;
}
.hero-supporting-copy {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-cat-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-secondary);
  background: rgba(11, 31, 77, 0.05);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(11, 31, 77, 0.08);
  transition: var(--apple-transition);
}
.hero-cat-tag:hover {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px);
}
.hero-cta-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-cta-buttons .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.hero-cta-buttons iconify-icon { flex: 0 0 auto; font-size: 1.2rem; }
.btn-primary-navy {
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(11, 31, 77, 0.2);
  transition: var(--stripe-transition);
  border: 2px solid var(--brand-secondary);
  text-decoration: none;
  display: inline-block;
}
.btn-primary-navy:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(27, 168, 232, 0.3);
  transform: translateY(-2px);
  color: #fff;
}
.btn-accent-outline {
  background: transparent;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--brand-secondary);
  transition: var(--stripe-transition);
  text-decoration: none;
  display: inline-block;
}
.btn-accent-outline:hover {
  background: rgba(11, 31, 77, 0.05);
  transform: translateY(-2px);
}

/* Widescreen Video 16:9 — Premium floating card */
.hero-right-media {
  position: relative;
  width: 100%;
  max-width: 720px;
  justify-self: end;
}
.hero-right-media::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(27, 168, 232, 0.16) 0%, rgba(20, 198, 198, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}
.hero-video-wrapper-16-9 {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(11, 31, 77, 0.18), 0 8px 30px rgba(27, 168, 232, 0.1);
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

@media (min-width: 1600px) {
  .hero-section .container {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hero-section .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.hero-widescreen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--apple-transition);
  z-index: 5;
}
.video-play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.video-play-button-overlay[hidden] { display: none !important; }
.play-icon-arrow {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--brand-secondary);
  margin-left: 4px;
}
.video-duration-badge-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(11, 31, 77, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  z-index: 5;
}
.glass-video-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11,31,77,0.85) 100%);
  color: #fff;
  z-index: 4;
}
.glass-video-overlay-caption h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-top: 4px;
}
.video-caption-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.1em;
}

/* 2. Quick Appointment Promo Banner & Ticker */
.appointment-promo-section {
  padding: 20px 0 80px;
}
.appointment-promo-banner {
  background: linear-gradient(135deg, rgba(27, 168, 232, 0.08) 0%, rgba(20, 198, 198, 0.05) 50%, rgba(11, 31, 77, 0.08) 100%);
  border: 1px solid rgba(27, 168, 232, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.03);
}
.promo-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.promo-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}
.promo-text p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.promo-trust-indicators {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.promo-trust-indicators li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkmark-icon {
  color: var(--brand-primary);
  font-weight: 900;
}
.promo-right {
  display: flex;
  justify-content: flex-end;
}
.btn-promo-cta {
  background: var(--brand-secondary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(11, 31, 77, 0.15);
  transition: var(--stripe-transition);
  text-decoration: none;
  display: inline-block;
}
.btn-promo-cta:hover {
  background: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(27, 168, 232, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

/* Scrolling Marquee Ticker */
.scrolling-treatment-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 24px 0 0;
  position: relative;
}
.scrolling-treatment-marquee::before,
.scrolling-treatment-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.scrolling-treatment-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--brand-bg) 0%, rgba(247, 250, 252, 0) 100%);
}
.scrolling-treatment-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--brand-bg) 0%, rgba(247, 250, 252, 0) 100%);
}
.marquee-track {
  display: inline-block;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(11, 31, 77, 0.25);
  margin-right: 40px;
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 3. Why Patients Trust layered layout */
.why-trust-section {
  background: #fff !important;
  padding: 120px 0;
}
.trust-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-collage-side {
  position: relative;
  height: 520px;
}
.collage-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.collage-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--apple-transition);
  background: #fff;
}
.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-card:hover {
  transform: scale(1.03) translateY(-10px);
  z-index: 10;
}
.card-img-1 {
  width: 58%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2;
}
.card-img-2 {
  width: 50%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.card-img-3 {
  width: 45%;
  height: 48%;
  top: 15%;
  right: 10%;
  z-index: 1;
}

/* Organic Masks */
.mask-organic-1 {
  clip-path: ellipse(48% 46% at 50% 50%);
}
.mask-organic-2 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.mask-organic-3 {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(11, 31, 77, 0.12);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}
.floating-badge strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-secondary);
}
.floating-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 2px;
}
.badge-top-right { top: 20px; right: 10px; }
.badge-bottom-left { bottom: 20px; left: 10px; }
.badge-top-left { top: 15px; left: 10px; }
.badge-bottom-right { bottom: 20px; right: 20px; }

.section-kicker-brand {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.trust-content-side h2 {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 24px;
}
.trust-lead-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}
.trust-premium-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trust-feat-row {
  display: flex;
  gap: 20px;
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27, 168, 232, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-feat-row h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 6px;
}
.trust-feat-row p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* 4. Signature Treatments Refined Styles */
.signature-card-new {
  background: var(--brand-card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--apple-transition);
  display: flex;
  flex-direction: column;
}
.signature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(11, 31, 77, 0.06);
  border-color: rgba(27, 168, 232, 0.3);
}
.signature-video-new {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.signature-video-new video,
.signature-video-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.5s ease;
}
.signature-card-new:hover .signature-video-new video,
.signature-card-new:hover .signature-video-new img {
  transform: scale(1.05);
}
.card-treatment-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--brand-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.signature-content-new {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.signature-content-new h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}
.signature-content-new p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 20px;
  flex-grow: 1;
}
.signature-content-new a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--stripe-transition);
}
.signature-content-new a:hover {
  color: var(--brand-secondary);
}

/* 5. Modern Dental Facility Redesign */
.facility-showcase-new {
  background: var(--brand-bg);
  padding: 120px 0;
}
.facility-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.facility-copy-new h2 {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 24px;
}
.facility-lead-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}
.facility-numbered-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.facility-num-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 10px rgba(11, 31, 77, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--apple-transition);
}
.facility-num-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 168, 232, 0.3);
  box-shadow: 0 10px 20px rgba(11, 31, 77, 0.05);
}
.num-card-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  opacity: 0.8;
}
.num-card-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}
.num-card-content p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}
.facility-media-new {
  display: flex;
  justify-content: center;
}
.facility-mask-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.facility-mask-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mask-organic-facility {
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
}

/* 6. Doctor Expertise editorial style */
.doctors-editorial-section {
  background: #fff !important;
  padding: 120px 0;
}
.doctors-asymmetrical-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-gap: 30px;
  margin-top: 50px;
}
.doctor-editorial-card {
  background: var(--brand-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-md);
  transition: var(--apple-transition);
  display: flex;
  flex-direction: column;
}
.doctor-editorial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(11, 31, 77, 0.05);
}
.doctor-card-large {
  grid-column: span 1;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 520px;
}
.doctor-card-large .doctor-photo-wrap {
  height: 100%;
}
.doctor-card-medium .doctor-photo-wrap,
.doctor-card-medium-alt .doctor-photo-wrap {
  height: 220px;
}
.doctor-editorial-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doctor-card-large .doctor-editorial-content {
  padding: 40px;
}
.doctor-card-medium .doctor-editorial-content,
.doctor-card-medium-alt .doctor-editorial-content {
  padding: 30px;
}
.doctor-title-block {
  margin-bottom: 20px;
}
.doctor-title-block h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}
.doctor-specialty {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.doctor-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}
.doctor-metrics-list {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.doctor-metrics-list div {
  display: flex;
  flex-direction: column;
}
.doctor-metrics-list div strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-secondary);
}
.doctor-metrics-list div span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.btn-doctor-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-secondary);
  text-decoration: none;
  margin-top: auto;
  transition: var(--stripe-transition);
}
.btn-doctor-link:hover {
  color: var(--brand-primary);
}

/* 7. Before & After Results with Drag Sliders */
.before-after-slider-section {
  background: var(--brand-bg);
  padding: 120px 0;
}
.slider-transformations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}
.transformation-case-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-md);
  transition: var(--apple-transition);
}
.transformation-case-card:hover {
  box-shadow: var(--shadow-lg), 0 20px 35px rgba(11, 31, 77, 0.05);
}
.interactive-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #000;
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  z-index: 1;
}
.ba-after {
  z-index: 2;
  overflow: hidden;
  border-right: 2px solid #fff;
}
.ba-after img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}
.ba-label {
  position: absolute;
  top: 20px;
  background: rgba(11, 31, 77, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  z-index: 4;
}
.ba-label-before {
  right: 20px;
}
.ba-label-after {
  left: 20px;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fff;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.ba-handle-line {
  width: 100%;
  height: 100%;
}
.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 10px rgba(11, 31, 77, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
}
.ba-handle-button svg {
  width: 16px;
  height: 16px;
}
.ba-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.case-outcome-details {
  padding: 30px;
}
.case-outcome-details h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}
.case-meta-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.case-meta-item {
  font-size: 0.85rem;
  color: var(--muted);
}
.case-meta-item strong {
  color: var(--brand-secondary);
}
.case-outcome-details p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* 8. Portrait Video Testimonials reels */
.video-testimonials-section-new {
  background: #fff !important;
  padding: 120px 0;
}
.reels-row-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.reel-card-new {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 31, 77, 0.12);
  background: #000;
  cursor: pointer;
}
.reel-card-new video,
.reel-poster-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-poster-new {
  opacity: 0.94;
  transition: transform 220ms ease, opacity 180ms ease;
}
.reel-card-new:hover .reel-poster-new {
  transform: scale(1.025);
  opacity: 1;
}
.reel-card-new .video-play-button {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  margin: 0;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(11, 31, 77, 0.2);
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  touch-action: manipulation;
}
.reel-card-new .video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.28);
}

/* Premium homepage hero showcase - final override */
.home .hero-section {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(72px, 7vw, 110px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 45%, rgba(27, 168, 232, 0.22), transparent 32%),
    radial-gradient(circle at 72% 76%, rgba(20, 198, 198, 0.1), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fcff 48%, #edf9ff 100%);
}

.home .hero-section .container {
  width: 100%;
  max-width: 1480px !important;
  padding-right: clamp(28px, 4vw, 64px) !important;
  padding-left: clamp(28px, 4vw, 64px) !important;
}

.home .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.48fr) !important;
  gap: clamp(48px, 5vw, 82px) !important;
  align-items: center !important;
}

.home .hero-left-content { max-width: 700px !important; }
.home .hero-headline { max-width: 700px !important; font-size: clamp(3.8rem, 5vw, 5.4rem) !important; line-height: 1.03 !important; }

.home .hero-right-media {
  width: 100%;
  max-width: 650px !important;
  justify-self: end;
}

.home .hero-right-media::before {
  top: 4%;
  right: -3%;
  width: 106%;
  height: 96%;
  background: radial-gradient(circle, rgba(27, 168, 232, 0.26), rgba(20, 198, 198, 0.1) 42%, transparent 72%);
  filter: blur(56px);
}

.home .hero-reel-stage {
  position: relative;
  z-index: 2;
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 255, 0.82));
  box-shadow: 0 42px 110px rgba(11, 31, 77, 0.2), 0 14px 38px rgba(27, 168, 232, 0.12), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
}

.hero-video-showcase-header {
  min-height: 70px;
  padding: 4px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-video-feature-label { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hero-video-feature-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; color: #087fb5; border-radius: 14px; background: linear-gradient(135deg, #e6f7ff, #dff8f6); }
.hero-video-feature-icon iconify-icon { font-size: 1.55rem; }
.hero-video-feature-label > span:last-child { display: grid; gap: 2px; }
.hero-video-feature-label small { color: #138ec5; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.hero-video-feature-label strong { color: #0b1f4d; font-size: 0.98rem; line-height: 1.25; }
.hero-video-watch-label { flex: 0 0 auto; padding: 8px 12px; color: #0b1f4d; border-radius: 999px; background: #eaf6fc; font-size: 0.76rem; font-weight: 800; }

.home .hero-video-wrapper-16-9 {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 58px rgba(5, 18, 45, 0.26) !important;
}

.home .hero-widescreen-video { object-position: center 42% !important; transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.home .hero-video-wrapper-16-9:hover .hero-widescreen-video { transform: scale(1.025); }
.home .hero-reel-shade { inset: 30% 0 0; background: linear-gradient(180deg, transparent, rgba(3, 13, 34, 0.34) 34%, rgba(3, 13, 34, 0.95) 100%); }
.home .hero-reel-copy { right: 34px; bottom: 30px; left: 34px; gap: 8px; }
.home .hero-reel-copy strong { max-width: 440px; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.15; }
.home .hero-reel-copy span { max-width: 480px; color: rgba(255, 255, 255, 0.84); font-size: clamp(0.86rem, 1.05vw, 1rem); }

.home .video-play-button-overlay {
  top: 45% !important;
  width: 94px !important;
  height: 94px !important;
  box-shadow: 0 20px 48px rgba(3, 13, 34, 0.32), 0 0 0 12px rgba(255, 255, 255, 0.13) !important;
}

.home .play-icon-arrow { border-top-width: 12px !important; border-bottom-width: 12px !important; border-left-width: 19px !important; }
.home .hero-reel-badge { top: 22px; right: 22px; min-width: 190px; padding: 12px 15px; }
.home .hero-floating-card { display: none !important; }

.hero-video-trust-footer {
  min-height: 66px;
  padding: 15px 10px 2px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-video-trust-footer span { display: flex; align-items: center; justify-content: center; gap: 6px; color: #60718c; font-size: 0.76rem; white-space: nowrap; }
.hero-video-trust-footer iconify-icon { color: #13a5db; font-size: 1.1rem; }
.hero-video-trust-footer strong { color: #0b1f4d; font-size: 0.86rem; }

@media (min-width: 1101px) and (max-width: 1400px) {
  .home .hero-grid { grid-template-columns: minmax(0, 0.5fr) minmax(520px, 0.5fr) !important; gap: 48px !important; }
  .home .hero-headline { font-size: clamp(3.45rem, 4.6vw, 4.5rem) !important; }
  .home .hero-right-media { max-width: 600px !important; }
}

@media (max-width: 1100px) {
  .home .hero-section { min-height: auto; padding: 72px 0; }
  .home .hero-grid { grid-template-columns: 1fr !important; gap: 52px !important; }
  .home .hero-left-content { max-width: 760px !important; margin: 0 auto; text-align: center; }
  .home .hero-headline { max-width: 760px !important; }
  .home .hero-supporting-copy { margin-right: auto !important; margin-left: auto !important; }
  .home .hero-right-media { width: min(100%, 720px); max-width: 720px !important; margin: 0 auto !important; justify-self: center; }
}

@media (max-width: 767px) {
  .home .hero-section { padding: 28px 0 48px !important; }
  .home .hero-section .container { padding-right: 18px !important; padding-left: 18px !important; }
  .home .hero-grid { gap: 38px !important; }
  .home .hero-left-content { text-align: left; }
  .home .hero-headline { font-size: clamp(2.35rem, 11vw, 3.05rem) !important; }
  .home .hero-reel-stage { padding: 7px !important; border-radius: 24px; }
  .hero-video-showcase-header { min-height: 60px; padding: 4px 6px 10px; }
  .hero-video-feature-icon { flex-basis: 38px; width: 38px; height: 38px; border-radius: 12px; }
  .hero-video-feature-label small { font-size: 0.56rem; }
  .hero-video-feature-label strong { font-size: 0.8rem; }
  .hero-video-watch-label { display: none; }
  .home .hero-video-wrapper-16-9 { aspect-ratio: 16 / 10 !important; border-radius: 18px !important; }
  .home .video-play-button-overlay { width: 70px !important; height: 70px !important; }
  .home .hero-reel-copy { right: 18px; bottom: 18px; left: 18px; }
  .home .hero-reel-copy strong { font-size: 1.03rem; }
  .home .hero-reel-copy span { display: none; }
  .home .hero-reel-badge { top: 13px; right: 13px; min-width: 0; padding: 8px 10px; }
  .home .hero-reel-badge span { font-size: 0.64rem; }
  .hero-video-trust-footer { min-height: 56px; padding-top: 11px; }
  .hero-video-trust-footer span { display: grid; justify-items: center; gap: 1px; font-size: 0.6rem; }
  .hero-video-trust-footer iconify-icon { display: none; }
  .hero-video-trust-footer strong { font-size: 0.75rem; }
}
.reel-card-new .video-play-button:active {
  transform: translate(-50%, -50%) scale(0.96);
}
.reel-card-new .video-play-button[hidden] { display: none; }
.reel-card-new.is-loading .video-play-button {
  pointer-events: none;
  opacity: 0.72;
}
.reel-card-new.is-loading .video-play-button::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(27, 168, 232, 0.22);
  border-top-color: #1ba8e8;
  border-radius: 50%;
  animation: reel-loading-spin 700ms linear infinite;
}
.reel-card-new.is-playing .reel-label-new {
  opacity: 0;
  pointer-events: none;
}
.reel-video-new {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
}
@keyframes reel-loading-spin {
  to { transform: rotate(360deg); }
}
.reel-label-new {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11, 31, 77, 0.9) 100%);
  color: #fff;
  z-index: 2;
  transition: opacity 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .reel-card-new:hover {
    box-shadow: 0 18px 38px rgba(11, 31, 77, 0.17);
  }
}

@media (max-width: 767px) {
  .video-testimonials-section-new {
    padding: 72px 0;
  }
  .video-testimonials-section-new .container {
    padding-right: 68px;
  }
  .reels-row-new {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .reel-card-new {
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(11, 31, 77, 0.11);
  }
  .reel-card-new .video-play-button {
    top: 50%;
    width: 56px;
    height: 56px;
    backdrop-filter: none;
    box-shadow: 0 7px 18px rgba(11, 31, 77, 0.18);
  }
  .reel-card-new .video-play-button span {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
  }
  .reel-label-new {
    padding: 18px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-poster-new,
  .reel-card-new .video-play-button,
  .reel-label-new {
    transition: none;
  }
  .reel-card-new:hover .reel-poster-new { transform: none; }
}
.reel-label-new strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.reel-label-new span {
  font-size: 0.78rem;
  color: var(--brand-primary);
  font-weight: 600;
}

/* 9. Bento Grid Advanced Technology */
.bento-technology-section {
  background: var(--brand-bg);
  padding: 120px 0;
}
.bento-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.bento-tile {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--apple-transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 36px;
}
.bento-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 20px 35px rgba(11, 31, 77, 0.04);
  border-color: rgba(27, 168, 232, 0.25);
}
.tile-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tile-img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--apple-transition);
}
.bento-tile:hover .tile-img-overlay img {
  transform: scale(1.05);
}
.bento-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 77, 0) 30%, rgba(11, 31, 77, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.tile-content {
  position: relative;
  z-index: 3;
  color: #fff;
}
.tile-content h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.tile-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.tile-tag-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.tile-large-horizontal {
  grid-column: span 8;
}
.tile-vertical {
  grid-column: span 4;
  grid-row: span 2;
}
.tile-small {
  grid-column: span 4;
}

/* 10. Written Testimonials Editorial Grid */
.written-testimonials-section {
  background: #fff !important;
  padding: 120px 0;
}
.testimonial-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.editorial-quote-card {
  background: var(--brand-bg);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--apple-transition);
}
.editorial-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 168, 232, 0.2);
}
.card-quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(27, 168, 232, 0.15);
  position: absolute;
  top: 24px;
  left: 30px;
}
.quote-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-secondary);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.quote-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.quote-author-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.quote-author-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 2px;
}
.quote-author-meta span {
  font-size: 0.78rem;
  color: var(--muted);
}
.quote-stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 0.95rem;
}

/* 11. Appointment & Visit Planning Redesign */
.appointment-journey-section {
  background: var(--brand-bg);
  padding: 120px 0;
}
.appointment-layout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: flex-start;
}
.booking-form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-xl), 0 20px 40px rgba(11, 31, 77, 0.02);
}
.form-header-premium {
  margin-bottom: 32px;
}
.form-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
}
.form-header-premium h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 6px 0;
}
.form-header-premium p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.consult-form-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group-premium {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label-premium {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control-premium {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: var(--brand-bg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--brand-secondary);
  transition: var(--stripe-transition);
}
.form-control-premium:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 168, 232, 0.15);
}
select.form-control-premium {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1F4D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
}
.btn-primary-form {
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--stripe-transition);
  box-shadow: 0 4px 14px rgba(11, 31, 77, 0.2);
  margin-top: 10px;
  text-align: center;
}
.btn-primary-form:hover {
  background: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(27, 168, 232, 0.3);
}

.planning-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-block-timings {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}
.block-kicker, .timeline-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
}
.info-block-timings h3, .treatment-journey-timeline h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 6px 0 16px;
}
.timing-address {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.timings-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timing-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 10px;
}
.timing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.timing-row strong {
  font-size: 0.92rem;
  color: var(--brand-secondary);
}
.timing-row span {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

/* Timeline Journey */
.treatment-journey-timeline {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-top: 24px;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 20px;
  width: 2px;
  background: rgba(27, 168, 232, 0.15);
  z-index: 1;
}
.journey-step-item {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-bg);
  border: 2px solid rgba(27, 168, 232, 0.25);
  color: var(--brand-secondary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--stripe-transition);
}
.journey-step-item:hover .step-badge {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.step-desc h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}
.step-desc p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* 12. FAQ Section Redesign */
.faq-redesign-section {
  background: #fff !important;
  padding: 120px 0;
}
.faq-layout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}
.faq-left-trust h2 {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 8px 0 20px;
}
.faq-left-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
}
.faq-trust-floating-card {
  background: var(--brand-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.trust-indicator-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--brand-secondary);
}
.trust-indicator-card-item strong {
  color: var(--brand-primary);
  font-weight: 800;
}
.trust-checkmark {
  color: var(--brand-primary);
  font-weight: 900;
}
.faq-image-collage {
  position: relative;
  width: 100%;
  height: 320px;
}
.faq-consult-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.faq-consult-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mask-organic-faq {
  clip-path: ellipse(50% 45% at 50% 50%);
}
.floating-faq-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(11, 31, 77, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-secondary);
  border: 1px solid rgba(226, 232, 240, 0.8);
}
.floating-faq-badge.badge-top { top: 20px; left: 10px; }
.floating-faq-badge.badge-middle { top: 50%; right: -10px; transform: translateY(-50%); }
.floating-faq-badge.badge-bottom { bottom: 20px; left: 20px; }

/* Rounded Accordions right side */
.faq-accordion-container {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(11, 31, 77, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.faq-accordion-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  overflow: hidden;
  transition: var(--apple-transition);
}
.faq-accordion-header {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-accordion-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin: 0;
  transition: var(--stripe-transition);
}
.faq-accordion-icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.4s ease;
}
.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 30px;
}
.faq-accordion-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  padding-bottom: 24px;
  margin: 0;
}

/* Expanded FAQ Styles */
.faq-accordion-item.active {
  border-color: rgba(27, 168, 232, 0.3);
  background: rgba(27, 168, 232, 0.03);
  box-shadow: 0 4px 15px rgba(27, 168, 232, 0.05);
  border-left: 4px solid var(--brand-primary);
}
.faq-accordion-item.active .faq-accordion-header h4 {
  color: var(--brand-primary);
}
.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(45deg);
  color: var(--brand-primary);
}

/* Bottom still have questions card */
.faq-still-questions-card {
  position: relative;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #030d22 100%);
  border-radius: 20px;
  padding: 30px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.still-questions-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,168,232,0.3) 0%, rgba(27,168,232,0) 70%);
  filter: blur(10px);
  pointer-events: none;
}
.still-questions-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.still-questions-content h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.still-questions-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}
.still-questions-actions {
  display: flex;
  gap: 12px;
}
.btn-call-now-still {
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--stripe-transition);
}
.btn-call-now-still:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  color: #fff;
}
.btn-whatsapp-still {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--stripe-transition);
}
.btn-whatsapp-still:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  color: #fff;
}

/* 13. Final CTA Section Styles */
.final-appointment-cta-section {
  background-color: #0b1f4d;
  background-image:
    linear-gradient(rgba(11, 31, 77, 0.48), rgba(11, 31, 77, 0.58)),
    url('../images/bg3.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #fff;
  min-height: 560px;
  padding: clamp(120px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.final-appointment-cta-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .final-appointment-cta-section {
    background-attachment: fixed;
  }
}

@media (max-width: 767px) {
  .final-appointment-cta-section {
    min-height: 520px;
    padding: 120px 0;
    background-attachment: scroll;
    background-size: cover, 100% auto !important;
    background-position: center center, center bottom !important;
  }
}
.cta-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 16px;
}
.final-appointment-cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 16px rgba(3, 15, 40, 0.28);
}
.cta-actions-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-cta {
  background: #fff;
  color: var(--brand-secondary);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: var(--stripe-transition);
  text-decoration: none;
  display: inline-block;
}
.btn-primary-cta:hover {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-cta {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: var(--stripe-transition);
  text-decoration: none;
  display: inline-block;
}
.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   PREMIUM FLOATING ACTION BUTTONS — 60px modern SaaS circles
   Icon centered, label slides from right on hover
   ============================================================ */
.premium-floating-actions-bar {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

/* Row container — label left, icon right */
.premium-float-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.premium-float-btn:hover {
  transform: translateY(-5px) scale(1.06);
}

/* 60px circle shell */
.premium-float-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: box-shadow 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.premium-float-btn:hover .premium-float-icon-wrapper {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Background Colors */
.float-whatsapp-btn .premium-float-icon-wrapper {
  background: linear-gradient(135deg, #25D366 0%, #1aae52 100%);
}
.float-call-btn .premium-float-icon-wrapper {
  background: linear-gradient(135deg, #0B1F4D 0%, #162d6b 100%);
}
.float-appointment-btn .premium-float-icon-wrapper {
  background: linear-gradient(135deg, #1BA8E8 0%, #0e90cc 100%);
}

/* SVG Icon sizing */
.premium-float-svg-icon,
.premium-float-icon-wrapper iconify-icon {
  width: 26px;
  height: 26px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.float-whatsapp-btn .premium-float-svg-icon {
  fill: #ffffff;
}
.float-call-btn .premium-float-svg-icon {
  stroke: #ffffff;
  fill: none;
}
.float-appointment-btn .premium-float-svg-icon {
  stroke: #ffffff;
  fill: none;
}

/* Label — hidden by default, slides in from right on hover */
.premium-float-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(11, 31, 77, 0.92);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 30px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.premium-float-btn:hover .premium-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobile: 48px, no labels */
@media (max-width: 767px) {
  .premium-floating-actions-bar {
    bottom: 20px;
    right: 16px;
    gap: 12px;
  }
  .premium-float-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  .premium-float-svg-icon,
  .premium-float-icon-wrapper iconify-icon {
    width: 22px;
    height: 22px;
  }
  .premium-float-label {
    display: none !important;
  }
}

/* Responsive Mobile Layouts */
@media (max-width: 1024px) {
  .hero-grid, .facility-grid-new, .appointment-layout-grid, .faq-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-grid-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-left-content, .trust-content-side, .facility-copy-new {
    text-align: center;
  }
  .hero-headline {
    font-size: 2.8rem;
    max-width: 100%;
  }
  .hero-supporting-copy {
    margin: 0 auto 32px;
    max-width: 100%;
  }
  /* Reset grid overflow on tablet */
  .hero-video-wrapper-16-9 {
    transform: none;
  }
  .hero-categories, .hero-cta-buttons {
    justify-content: center;
  }
  .appointment-promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .promo-left {
    flex-direction: column;
  }
  .promo-trust-indicators {
    justify-items: center;
  }
  .promo-right {
    justify-content: center;
  }
  .doctors-asymmetrical-grid {
    grid-template-columns: 1fr;
  }
  .doctor-card-large {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .doctor-card-large .doctor-photo-wrap {
    height: 300px;
  }
  .slider-transformations-grid, .testimonial-editorial-grid {
    grid-template-columns: 1fr;
  }
  .reels-row-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-grid-container {
    grid-template-columns: 1fr;
  }
  .tile-large-horizontal, .tile-vertical, .tile-small {
    grid-column: span 12;
  }
  .faq-image-collage {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .reels-row-new {
    grid-template-columns: 1fr;
  }
  .facility-numbered-cards {
    grid-template-columns: 1fr;
  }
  .booking-form-panel {
    padding: 24px;
  }
  .faq-trust-floating-card {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SIMPLIFIED HOMEPAGE REFINEMENT ADDITIONS
   ========================================================================== */

/* 1. Quick Appointment Promo Banner (Simple) */
.appointment-promo-banner-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 24px 40px;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.03);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.promo-simple-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.promo-teeth-img {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}

.promo-simple-text h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.promo-simple-text p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-promo-simple-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--brand-secondary);
  color: #FFFFFF !important;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(11, 31, 77, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--brand-secondary);
}

.btn-promo-simple-circle:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(27, 168, 232, 0.25);
}

/* 2. Symmetric Doctor Card & Buttons */
.doctor-card-simple {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card-simple:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(11, 31, 77, 0.08) !important;
  border-color: rgba(27, 168, 232, 0.3) !important;
}

.btn-outline-blue {
  border: 1.5px solid var(--brand-primary) !important;
  color: var(--brand-primary) !important;
  background: transparent !important;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(27, 168, 232, 0.2);
}

/* 3. Before & After Simple Cards */
.before-after-card-simple {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 15px rgba(11, 31, 77, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.before-after-card-simple:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(11, 31, 77, 0.06);
  border-color: rgba(27, 168, 232, 0.25);
}

.before-after-images-simple {
  display: flex;
  width: 100%;
}

.before-after-images-simple .img-half {
  position: relative;
  width: 50%;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
}

.before-after-images-simple .img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-badge-simple {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 31, 77, 0.75);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 5;
  pointer-events: none;
}

.ba-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ba-card-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 0 0 8px 0;
}

.ba-card-content p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* 4. Testimonials Premium Slider */
.testimonial-premium-card {
  display: flex;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 31, 77, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 24px;
}

.testimonial-premium-img-wrap {
  width: 40%;
  position: relative;
  min-height: 420px;
  background: #000;
}

.testimonial-premium-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.testimonial-premium-img.active {
  opacity: 0.85;
  z-index: 2;
}

.testimonial-premium-content {
  width: 60%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: #FFFFFF;
}

.testimonial-premium-quote-icon {
  position: absolute;
  top: 40px;
  left: 40px;
  color: rgba(27, 168, 232, 0.08);
  pointer-events: none;
}

.testimonial-premium-slider {
  position: relative;
  z-index: 3;
}

.testimonial-premium-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-premium-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-premium-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--brand-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-premium-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-premium-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-premium-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin: 0 0 2px 0;
}

.testimonial-premium-info p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.testimonial-premium-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.testimonial-premium-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-premium-source {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-premium-nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(27, 168, 232, 0.2);
}

.testimonial-nav-btn:hover {
  background: var(--brand-secondary);
  box-shadow: 0 6px 15px rgba(11, 31, 77, 0.25);
  transform: translateY(-2px);
}

/* 5. Stacked Floating Action Circles */
/* Floating buttons — see master definition above at line 6455 */

/* Responsive Additions */
@media (max-width: 992px) {
  .appointment-promo-banner-simple {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 30px 24px;
    margin-top: -10px;
  }
  .promo-simple-left {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-premium-card {
    flex-direction: column;
  }
  .testimonial-premium-img-wrap {
    width: 100%;
    min-height: 280px;
  }
  .testimonial-premium-content {
    width: 100%;
    padding: 40px 30px;
  }
}

/* ==========================================================================
   USER-SPECIFIED LAYOUT REFINEMENTS (V3 REFINED)
   ========================================================================== */

/* 1. Full-Width Bright Blue Quick Appointment Banner */
.appointment-promo-section-blue-fullwidth {
  background-color: var(--brand-primary) !important;
  width: 100% !important;
  padding: 24px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(27, 168, 232, 0.15);
}

.appointment-promo-banner-simple-refined {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.appointment-promo-banner-simple-refined .promo-simple-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.appointment-promo-banner-simple-refined .promo-teeth-img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.appointment-promo-banner-simple-refined .promo-simple-text h3 {
  font-family: var(--font-headings);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.appointment-promo-banner-simple-refined .promo-simple-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 2. Quick Appointment CTA Pill Button */
.btn-promo-simple-pill-refined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background-color: #0B1F4D !important;
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid #0B1F4D;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(11, 31, 77, 0.15);
  flex-shrink: 0;
}

.btn-promo-simple-pill-refined:hover {
  background-color: #1BA8E8 !important;
  border-color: #1BA8E8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27, 168, 232, 0.3);
}

/* 3. Top Treatment Ticker Marquee Strip */
.looping-treatment-marquee-banner {
  background-color: #0B1F4D !important;
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 9;
}

.marquee-track-refined {
  display: inline-block;
  animation: marquee-refined 30s linear infinite;
  padding-left: 100%;
}

.marquee-track-refined span {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF !important;
  margin-right: 32px;
  vertical-align: middle;
}

.marquee-track-refined .teal-dot {
  color: #14C6C6 !important;
  margin-right: 32px;
  font-size: 1.1rem;
  vertical-align: middle;
  display: inline-block;
}

@keyframes marquee-refined {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Marquee Logo */
.marquee-logo-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 2px 8px;
}
.marquee-logo-img {
  height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}


/* 4. Bento Grid Trust Section (Why Patients Trust) */
.why-trust-refined-section {
  background-color: #F7FAFC !important;
  padding: 100px 0;
  overflow: hidden;
}

.trust-layout-grid-refined {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: space-between;
}

.trust-bento-grid-left {
  width: 55%;
}

.trust-editorial-right {
  flex: 1;
  min-width: 0;
}

.trust-bento-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.trust-bento-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-bento-col.col-left {
  width: 52%;
}

.trust-bento-col.col-right {
  width: 48%;
}

.trust-bento-card {
  background: #FFFFFF !important;
  border-radius: 24px !important;
  padding: 24px !important;
  border: 1px solid rgba(11, 31, 77, 0.04) !important;
  box-shadow: 0 20px 60px rgba(11, 31, 77, 0.08) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.trust-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(11, 31, 77, 0.12) !important;
}

.trust-bento-card.card-large {
  justify-content: space-between;
  min-height: 480px;
}

.trust-bento-card .bento-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.trust-bento-card .bento-img-wrap img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.trust-bento-card.card-large .bento-img-wrap img {
  height: 250px;
}

.trust-bento-card .bento-content h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.trust-bento-card .bento-content p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

.trust-bento-card .bento-cta-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
  transition: all 0.2s ease;
}

.trust-bento-card .bento-cta-link:hover {
  color: var(--brand-secondary);
  transform: translateX(3px);
}

/* Right Editorial Content */
.trust-editorial-right .section-kicker-brand {
  color: var(--brand-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 16px;
}

.trust-editorial-headline {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-secondary);
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.trust-editorial-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px 0;
}

.trust-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 36px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 0.92rem;
}

.checklist-item .check-mark {
  color: var(--brand-primary);
  font-weight: 900;
  font-size: 1.05rem;
}

.trust-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-trust-primary-pill {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  border: 1px solid var(--brand-primary);
}

.btn-trust-primary-pill:hover {
  background: var(--brand-secondary) !important;
  border-color: var(--brand-secondary);
  transform: translateY(-2px);
}

.btn-trust-secondary-pill {
  border: 2px solid #0B1F4D !important;
  background: transparent !important;
  color: #0B1F4D !important;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-trust-secondary-pill:hover {
  background: rgba(11, 31, 77, 0.05) !important;
  transform: translateY(-2px);
}

/* 5. Unified Trust Strip Banner (Above Footer) */
.trust-strip-section-wrap-bottom {
  background-color: #FFFFFF !important;
  padding: 40px 0;
  border-top: 1px solid rgba(11, 31, 77, 0.08) !important;
  border-bottom: 1px solid rgba(11, 31, 77, 0.08) !important;
  width: 100%;
  box-sizing: border-box;
}

.trust-strip-container-inner {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.trust-strip-block {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 33.333%;
  box-sizing: border-box;
}

.trust-strip-block.block-left {
  border-right: 1px solid rgba(11, 31, 77, 0.08);
  padding-right: 30px;
}

.trust-strip-block.block-center {
  border-right: 1px solid rgba(11, 31, 77, 0.08);
  padding-right: 30px;
  padding-left: 20px;
}

.trust-strip-block.block-right {
  padding-left: 40px;
  justify-content: flex-start;
}

.trust-strip-block .block-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-strip-block .block-icon-wrap.icon-blue {
  background: rgba(27, 168, 232, 0.1);
  color: var(--brand-primary);
}

.trust-strip-block .block-icon-wrap.icon-teal {
  background: rgba(20, 198, 198, 0.1);
  color: var(--brand-accent);
}

.trust-strip-block .block-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.trust-strip-block .block-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.trust-strip-block .block-content h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 0 0 3px 0;
  line-height: 1.25;
}

.trust-strip-block .block-content p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.trust-strip-block .btn-strip-action {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.trust-strip-block .btn-strip-action:hover {
  color: var(--brand-secondary);
  transform: translateX(3px);
}

/* Google Ratings inside bottom strip */
.google-badge-header-strip {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.google-verified-strip {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-secondary);
}

.google-rating-content-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.google-rating-content-strip .rating-row-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.google-rating-content-strip .rating-val-strip {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-secondary);
}

.google-rating-content-strip .rating-stars-strip {
  color: #fbbf24;
  font-size: 0.95rem;
}

.google-rating-content-strip .reviews-count-strip {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

/* 6. Premium Rotating Logo (Inside Patient Stories Section) */
.story-rotating-logo-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  overflow: visible;
}

.divider-rotating-badge {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 25px rgba(11, 31, 77, 0.04));
  overflow: visible;
}

.rotating-badge-svg {
  animation: rotate-slow 22s linear infinite;
  display: block;
}

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 7. Simplified Modern Dental Facility Layout */
.facility-grid-simple {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.facility-copy-simple h2 {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.facility-copy-simple p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 30px 0;
}

.facility-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.facility-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 0.95rem;
}

.facility-feature-item .feat-check {
  color: var(--brand-primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.facility-media-simple img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  height: 380px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* 8. Priority Booking Background Overlay */
.appointment-journey-section {
  background: linear-gradient(135deg, rgba(247, 250, 252, 0.9) 0%, rgba(247, 250, 252, 0.95) 100%), 
              url('../images/FooterBg.png') no-repeat center center / cover !important;
}

/* 9. Your Smile Journey Section Styles */
.smile-journey-section {
  background-color: #FFFFFF !important;
  padding: 100px 0;
  overflow: hidden;
}

.smile-journey-grid-container {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

.journey-collage-left {
  width: 55%;
}

.journey-timeline-right {
  width: 40%;
}

.journey-collage-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

.journey-img-main-wrap {
  position: absolute;
  left: 0;
  top: 10%;
  width: 70%;
  height: 80%;
  box-shadow: 0 30px 70px rgba(11, 31, 77, 0.12);
  z-index: 1;
}

.mask-organic-journey {
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  overflow: hidden;
}

.journey-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-img-overlap-tr {
  position: absolute;
  right: 5%;
  top: 0;
  width: 35%;
  height: 45%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 31, 77, 0.15);
  border: 4px solid #ffffff;
  z-index: 2;
}

.journey-img-tr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-img-overlap-br {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 40%;
  height: 45%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(11, 31, 77, 0.15);
  border: 4px solid #ffffff;
  z-index: 2;
}

.journey-img-br {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-badge-floating {
  position: absolute;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(11, 31, 77, 0.08);
  display: flex;
  flex-direction: column;
  z-index: 3;
  border: 1px solid rgba(11, 31, 77, 0.04);
}

.badge-satisfaction {
  left: -5%;
  bottom: 15%;
}

.badge-experience {
  right: 35%;
  top: -5%;
}

.journey-badge-floating .badge-num {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1BA8E8;
  line-height: 1;
}

.journey-badge-floating .badge-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0B1F4D;
  margin-top: 2px;
}

.journey-headline {
  font-family: var(--font-headings);
  font-size: 2.3rem;
  font-weight: 800;
  color: #0B1F4D;
  line-height: 1.25;
  margin: 0 0 36px 0;
  letter-spacing: -0.01em;
}

.vertical-timeline-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vertical-timeline-steps::before {
  content: '';
  position: absolute;
  left: 16px; /* Center of the 32px step circle */
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: rgba(27, 168, 232, 0.2);
  z-index: 1;
}

.timeline-step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.timeline-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1BA8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1BA8E8;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(27, 168, 232, 0.1);
  z-index: 3;
}

.timeline-step-content {
  flex-grow: 1;
}

.timeline-step-content h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0B1F4D;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.timeline-step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* 10. Clinic Gallery Section Styles */
.clinic-gallery-section {
  background-color: #F7FAFC !important;
  padding: 100px 0;
}

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

.gallery-item-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
  border: 1px solid rgba(11, 31, 77, 0.04);
  aspect-ratio: 4 / 3;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #FFFFFF;
}

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

.gallery-item-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11, 31, 77, 0.12);
}

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

/* 11. Testimonial Tightening & Inline styles elimination */
.testimonial-premium-card {
  box-shadow: 0 20px 60px rgba(11, 31, 77, 0.06) !important;
  border: 1px solid rgba(11, 31, 77, 0.05) !important;
}

.testimonial-premium-img.active {
  opacity: 1.0 !important;
}

.testimonial-premium-content {
  padding: 40px 48px !important;
}

.testimonial-premium-quote-icon {
  top: 30px !important;
  left: 40px !important;
}

.testimonial-premium-text {
  font-size: 1.15rem !important;
  line-height: 1.75 !important;
  margin-bottom: 20px !important;
}

.testimonial-premium-slider hr {
  margin: 16px 0 !important;
}

/* 12. Floating Actions — see master definition above */


.story-rotating-logo-badge-wrap.cta-rotating-logo-badge-wrap {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .appointment-promo-banner-simple-refined {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .appointment-promo-banner-simple-refined .promo-simple-left {
    flex-direction: column;
    gap: 12px;
  }
  .trust-layout-grid-refined {
    flex-direction: column;
    gap: 48px;
  }
  .trust-bento-grid-left, .trust-image-left-wrap, .trust-editorial-right {
    width: 100% !important;
    flex: unset !important;
  }
  .trust-bento-grid {
    flex-direction: column;
    gap: 20px;
  }
  .trust-bento-col {
    width: 100% !important;
    gap: 20px;
  }
  .trust-bento-card.card-large {
    min-height: auto;
  }
  .trust-editorial-right {
    text-align: center;
  }
  .trust-checklist-grid {
    justify-items: center;
  }
  .trust-cta-actions {
    justify-content: center;
  }
  
  /* Smile Journey Mobile */
  .smile-journey-grid-container {
    flex-direction: column;
    gap: 50px;
  }
  .journey-collage-left, .journey-timeline-right {
    width: 100% !important;
  }
  .journey-collage-wrapper {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }
  .journey-headline {
    text-align: center;
    font-size: 2rem;
  }
  .vertical-timeline-steps {
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Clinic Gallery Mobile */
  .gallery-grid-refined {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .trust-strip-container-inner {
    flex-direction: column;
    height: auto !important;
    min-height: auto;
    padding: 30px 24px !important;
    gap: 30px;
    align-items: flex-start;
  }
  .trust-strip-block {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(11, 31, 77, 0.08);
    padding-bottom: 24px;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .trust-strip-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .facility-grid-simple {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .facility-features-list {
    justify-items: center;
  }
  .facility-media-simple img {
    height: 300px;
  }
  
  /* Testimonials Mobile Stack */
  .testimonial-premium-card {
    flex-direction: column;
    height: auto !important;
  }
  .testimonial-premium-img-wrap {
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
  }
  .testimonial-premium-content {
    width: 100% !important;
    padding: 30px 24px !important;
  }
  .testimonial-premium-quote-icon {
    top: 20px !important;
    left: 20px !important;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .gallery-grid-refined {
    grid-template-columns: 1fr;
  }
  .smile-journey-section, .clinic-gallery-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   MOBILE HERO REDESIGN & LAYOUT UPDATES (V5 REFINED)
   ========================================================================== */

/* Utility for Mobile-Only Display */
.mobile-only-flex {
  display: none !important;
}
.mobile-only-block {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-only-flex {
    display: flex !important;
  }
  .mobile-only-block {
    display: block !important;
  }
  
  /* Mobile Hero Container Spacing */
  .hero-section {
    padding-top: 112px !important;
    padding-bottom: 48px !important;
    margin-top: 0 !important;
    min-height: auto !important;
    background: url('../images/MobileBG.png') center top / cover no-repeat !important;
  }
  .hero-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero-right-media::before { display: none; }
  
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .hero-left-content {
    padding-top: 0 !important;
    text-align: left !important;
  }
  
  /* Mobile Hero Eyebrow */
  .hero-eyebrow-text {
    font-size: 0.82rem !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.05em !important;
    display: inline-block;
  }
  
  /* Mobile Hero Headline */
  .hero-headline {
    font-size: 2.15rem !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: var(--brand-secondary) !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
  }
  
  /* Mobile Hero Description */
  .hero-supporting-copy {
    font-size: 1.02rem !important;
    line-height: 1.48 !important;
    color: var(--muted) !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }
  
  /* Mobile Hero Trust Pill Row */
  .hero-trust-row {
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 24px !important;
  }
  
  .trust-pill-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B1F4D;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .trust-pill-check {
    color: #14C6C6;
    font-weight: 800;
  }
  
  /* Remove Category Tags on Mobile Hero */
  .hero-categories {
    display: none !important;
  }
  
  /* Premium CTA Buttons (Stripe / Apple Inspired) */
  .hero-cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-bottom: 28px !important;
    width: 100%;
  }
  
  .hero-cta-buttons .btn {
    width: 100% !important;
    height: 56px !important;
    border-radius: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .hero-cta-buttons .btn-primary-navy {
    background-color: #0B1F4D !important;
    color: #ffffff !important;
    border: none !important;
  }
  
  .hero-cta-buttons .btn-accent-outline {
    background-color: #ffffff !important;
    color: #0B1F4D !important;
    border: 2px solid #0B1F4D !important;
  }
  
  /* Video Card Redesign */
  .hero-right-media {
    width: 100% !important;
    margin: 0 !important;
  }
  
  .hero-video-wrapper-16-9 {
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.06) !important;
    overflow: hidden !important;
    transform: none !important;
  }
  
  .video-play-button-overlay {
    width: 72px !important;
    height: 72px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 20px rgba(11, 31, 77, 0.15) !important;
  }
  
  .play-icon-arrow {
    border-width: 9px 0 9px 16px !important;
    margin-left: 3px !important;
  }
}

/* Why Patients Trust Single Image Layout */
.trust-image-left-wrap {
  width: 50%;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 31, 77, 0.10);
}

.trust-single-img {
  width: 100%;
  height: 460px;
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .trust-single-img {
    height: 400px;
    max-height: 400px;
  }
}

@media (max-width: 992px) {
  .trust-image-left-wrap {
    width: 100% !important;
    border-radius: 16px;
  }
  .trust-single-img {
    height: auto !important;
    max-height: 380px !important;
    min-height: unset !important;
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .trust-image-left-wrap {
    width: 100% !important;
    border-radius: 14px !important;
  }
  .trust-single-img {
    height: 260px !important;
    max-height: 260px !important;
    object-position: center top !important;
  }
}
/* ==========================================================================
   BEFORE-AFTER RESULTS SWIPE CAROUSEL (V5 REFINED)
   ========================================================================== */

@media (max-width: 767px) {
  #before-after-results .grid-4 {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 0 16px 20px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  #before-after-results .grid-4::-webkit-scrollbar {
    display: none !important;
  }
  
  #before-after-results .before-after-card-simple {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.05) !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  #before-after-results .before-after-images-simple {
    height: 240px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
  }
  
  #before-after-results .ba-card-content {
    padding: 0 !important;
    text-align: left !important;
  }
  
  #before-after-results .ba-card-content h3 {
    font-size: 1.25rem !important;
    margin-bottom: 6px !important;
    color: #0B1F4D !important;
  }
  
  #before-after-results .ba-card-content p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
  }
  
  .ba-card-info-row {
    display: flex !important;
    justify-content: space-between !important;
    border-top: 1px solid rgba(11, 31, 77, 0.05);
    border-bottom: 1px solid rgba(11, 31, 77, 0.05);
    padding: 10px 0 !important;
    margin-bottom: 16px !important;
    font-size: 0.85rem !important;
    color: var(--muted);
  }
  
  .ba-card-info-row strong {
    color: #0B1F4D;
  }
  
  .btn-ba-view-result {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    line-height: 48px !important;
    text-align: center !important;
    background-color: rgba(11, 31, 77, 0.05) !important;
    color: #0B1F4D !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
  }
  
  .btn-ba-view-result:hover {
    background-color: #0B1F4D !important;
    color: #ffffff !important;
  }
  
  /* Carousel Pagination Dots */
  .ba-carousel-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px;
    margin-top: 24px !important;
    margin-bottom: 16px !important;
  }
  
  .ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(11, 31, 77, 0.15);
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .ba-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: #0B1F4D;
  }
}

/* Tablet Overrides */
@media (min-width: 768px) and (max-width: 992px) {
  #before-after-results .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ==========================================================================
   PREMIUM BEFORE / AFTER — REAL SMILE TRANSFORMATIONS
   Interactive drag slider, 2-col desktop, swipe carousel mobile
   ========================================================================== */

/* ── Section Shell ── */
.ba-premium-section {
  position: relative;
  background: #F7FAFC;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Background glow accents */
.ba-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ba-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,168,232,0.07) 0%, transparent 70%);
  top: -100px;
  right: -150px;
}
.ba-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,198,198,0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -120px;
}

.ba-premium-section .container {
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.ba-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.ba-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1BA8E8;
  margin-bottom: 16px;
}
.ba-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #0B1F4D;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ba-subheadline {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Cards Grid ── */
.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ── Individual Card ── */
.ba-premium-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 4px 24px rgba(11,31,77,0.06), 0 1px 4px rgba(11,31,77,0.04);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.32s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease;
  cursor: default;
}
.ba-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(11,31,77,0.11), 0 4px 12px rgba(11,31,77,0.06);
  border-color: rgba(27,168,232,0.35);
}

/* ── Slider Wrapper (top 68%) ── */
.ba-slider-wrap {
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
  background: #0B1F4D;
  border-radius: 0;
}

/* ── Slider Container (inner, draggable) ── */
.ba-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
}

/* ── After image (bottom, always full width) ── */
.ba-img-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-img-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── Before image (top, clipped to left of handle) ── */
.ba-img-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0); /* starts at 50%, JS updates this */
  will-change: clip-path;
  transition: clip-path 0.02s linear;
}
.ba-img-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── BEFORE / AFTER Badges ── */
.ba-label {
  position: absolute;
  bottom: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 3;
}
.ba-label-before {
  left: 12px;
  right: auto;
  background: rgba(255,255,255,0.88);
  color: #0B1F4D;
}
.ba-label-after {
  left: auto;
  right: 12px;
  background: rgba(11,31,77,0.78);
  color: #ffffff;
}

/* Premium before/after card controls: image-first, minimal UI */
.ba-premium-card {
  border-radius: 16px;
  border-color: rgba(220, 234, 245, 0.95);
  box-shadow: 0 8px 28px rgba(11, 31, 77, 0.07);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

.ba-premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 168, 232, 0.28);
  box-shadow: 0 18px 46px rgba(11, 31, 77, 0.12);
}

.ba-premium-card .ba-slider-wrap {
  height: 370px;
  background: #eaf7fd;
}

.ba-premium-card .ba-slider-container::before,
.ba-premium-card .ba-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 40px;
  pointer-events: none;
}

.ba-premium-card .ba-slider-container::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 31, 77, 0.2), transparent);
}

.ba-premium-card .ba-slider-container::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 31, 77, 0.2), transparent);
}

.ba-premium-card .ba-label {
  top: 10px;
  bottom: auto;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #0b1f4d;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(11, 31, 77, 0.08);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}

.ba-premium-card .ba-label-before { left: 10px; right: auto; }
.ba-premium-card .ba-label-after { right: 10px; left: auto; }

.ba-premium-card .ba-img-before {
  transition: clip-path 60ms linear;
}

.ba-premium-card .ba-handle {
  width: 30px;
}

.ba-premium-card .ba-handle-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 5px rgba(11, 31, 77, 0.12);
}

.ba-premium-card .ba-handle-circle {
  width: 30px;
  height: 30px;
  gap: 0;
  border: 1px solid #e2e8f0;
  color: #0b1f4d;
  box-shadow: 0 4px 12px rgba(11, 31, 77, 0.14);
}

.ba-premium-card:hover .ba-handle-circle {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(11, 31, 77, 0.18);
}

.ba-premium-card .ba-handle-circle svg {
  width: 11px;
  height: 11px;
  stroke-width: 2;
}

.ba-premium-card .ba-card-info {
  padding: 18px 20px 20px;
}

@media (max-width: 760px) {
  .ba-premium-card .ba-slider-wrap {
    height: 290px !important;
  }

  .ba-premium-card .ba-slider-container::before,
  .ba-premium-card .ba-slider-container::after {
    width: 36px;
  }

  .ba-premium-card .ba-label {
    min-height: 19px;
    padding: 2px 7px;
    font-size: 8px;
  }

  .ba-premium-card .ba-handle { width: 24px; }
  .ba-premium-card .ba-handle-circle { width: 24px; height: 24px; }
  .ba-premium-card .ba-handle-circle svg { width: 9px; height: 9px; }
}

/* ── Drag Handle ── */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  gap: 0;
  will-change: left;
}
.ba-handle-line {
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 8px rgba(27,168,232,0.4);
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(11,31,77,0.2), 0 0 0 2px rgba(27,168,232,0.25);
  color: #0B1F4D;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.ba-premium-card:hover .ba-handle-circle {
  box-shadow: 0 6px 22px rgba(11,31,77,0.25), 0 0 0 3px rgba(27,168,232,0.5);
  transform: scale(1.08);
}
.ba-handle-circle svg {
  flex-shrink: 0;
}

/* ── Hidden range input for accessibility + drag logic ── */
.ba-range-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  margin: 0;
}

/* ── Card Info Area (bottom 32%) ── */
.ba-card-info {
  padding: 22px 24px 24px;
  background: #ffffff;
}
.ba-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.ba-treatment-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B1F4D;
  line-height: 1.25;
  margin: 0;
}
.ba-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-result-summary {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 16px;
}
.ba-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ba-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}
.ba-meta-pill svg {
  color: #64748b;
  flex-shrink: 0;
}
.ba-pill-blue {
  color: #1BA8E8 !important;
  background: rgba(27,168,232,0.08) !important;
  border-color: rgba(27,168,232,0.2) !important;
}

/* ── Pagination dots (hidden on desktop) ── */
.ba-carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
}
.ba-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(11,31,77,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ba-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #0B1F4D;
}

/* ── Tablet: 1 col ── */
@media (max-width: 1024px) {
  .ba-cards-grid {
    gap: 24px;
  }
  .ba-slider-wrap {
    height: 280px;
  }
}

@media (max-width: 860px) {
  .ba-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ba-headline {
    font-size: 2.1rem;
  }
}

/* ── Mobile: swipe carousel ── */
@media (max-width: 767px) {

  .ba-premium-section {
    padding: 64px 0 48px;
  }
  .ba-section-header {
    margin-bottom: 36px;
    padding: 0 4px;
  }
  .ba-headline {
    font-size: 1.8rem !important;
  }
  .ba-subheadline {
    font-size: 0.92rem;
  }

  /* Horizontal swipe carousel */
  .ba-cards-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 4px 20px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scroll-padding-left: 20px;
  }
  .ba-cards-grid::-webkit-scrollbar { display: none !important; }

  .ba-premium-card {
    flex: 0 0 calc(100% - 40px) !important;
    scroll-snap-align: start !important;
    border-radius: 18px !important;
  }

  .ba-slider-wrap {
    height: 260px !important;
  }

  .ba-handle-circle {
    width: 40px;
    height: 40px;
  }

  .ba-card-info {
    padding: 16px 18px 18px !important;
  }
  .ba-treatment-name {
    font-size: 1.05rem !important;
  }
  .ba-meta-pill {
    font-size: 0.76rem !important;
    padding: 4px 10px !important;
  }

  /* Show dots on mobile */
  .ba-carousel-dots {
    display: flex !important;
  }
}
/* Premium homepage brand story */
.home-about-section {
    --about-primary: #1ba8e8;
    --about-navy: #0b1f4d;
    --about-accent: #14c6c6;
    position: relative;
    overflow: hidden;
    padding: clamp(88px, 9vw, 132px) 0;
    background: #f7fafc;
}

.home-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: clamp(56px, 7vw, 108px);
}

.home-about-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-main-art {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    isolation: isolate;
}

.home-about-main-art img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 38px rgba(11, 31, 77, .16));
}

.home-about-blob {
    position: absolute;
    z-index: 1;
    inset: 7% 5% 5% 9%;
    border-radius: 43% 57% 62% 38% / 45% 43% 57% 55%;
    background: linear-gradient(145deg, rgba(27, 168, 232, .19), rgba(20, 198, 198, .08));
    transform: rotate(-7deg);
}

.home-about-floating-image {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 7%;
    width: clamp(132px, 13vw, 178px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 24px 48px rgba(11, 31, 77, .2);
    animation: homeAboutFloat 5.5s ease-in-out infinite;
}

.home-about-floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-about-seal {
    position: absolute;
    z-index: 6;
    right: 1%;
    bottom: 0;
    width: 136px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--about-navy);
    box-shadow: 0 22px 44px rgba(11, 31, 77, .2);
    transition: transform .35s ease, box-shadow .35s ease;
}

.home-about-seal:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 54px rgba(11, 31, 77, .25);
}

.home-about-seal-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: homeAboutRotate 22s linear infinite;
}

.home-about-seal-ring text {
    fill: currentColor;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.25px;
}

.home-about-seal-center {
    position: relative;
    z-index: 2;
    width: 62px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--about-navy);
    color: #fff;
}

.home-about-seal-center svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-about-star {
    position: absolute;
    z-index: 4;
    width: 30px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--about-primary), var(--about-accent));
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    filter: drop-shadow(0 8px 12px rgba(27, 168, 232, .25));
}

.home-about-star-one { left: 5%; top: 12%; }
.home-about-star-two { right: 5%; top: 24%; width: 15px; }

.home-about-dot {
    position: absolute;
    z-index: 1;
    left: 12%;
    top: 23%;
    width: 13px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--about-accent);
    box-shadow: 0 0 0 9px rgba(20, 198, 198, .1);
}

.home-about-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-about-orb-one {
    width: 390px;
    height: 390px;
    left: -230px;
    top: -160px;
    background: radial-gradient(circle, rgba(27, 168, 232, .13), transparent 69%);
}

.home-about-orb-two {
    width: 330px;
    height: 330px;
    right: -170px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(20, 198, 198, .12), transparent 69%);
}

.home-about-content { max-width: 610px; }

.home-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--about-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.home-about-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-accent));
}

.home-about-content h2 {
    margin: 0;
    color: var(--about-navy);
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.home-about-content h2 span {
    color: var(--about-primary);
    background: linear-gradient(100deg, var(--about-primary), var(--about-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-about-content > p {
    max-width: 590px;
    margin: 24px 0 30px;
    color: #53627b;
    font-size: 17px;
    line-height: 1.75;
}

.home-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    margin-bottom: 36px;
}

.home-about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    border-bottom: 1px solid #dceaf5;
    color: var(--about-navy);
    font-size: 14px;
    font-weight: 700;
}

.home-about-feature-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    background: linear-gradient(145deg, var(--about-primary), var(--about-accent));
    box-shadow: 0 7px 16px rgba(27, 168, 232, .22);
}

.home-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-about-primary,
.home-about-secondary {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.home-about-primary {
    background: linear-gradient(120deg, var(--about-primary), #168ed0);
    color: #fff;
    box-shadow: 0 15px 30px rgba(27, 168, 232, .27);
}

.home-about-secondary {
    border-color: rgba(11, 31, 77, .16);
    background: rgba(255, 255, 255, .72);
    color: var(--about-navy);
    box-shadow: 0 10px 24px rgba(11, 31, 77, .07);
}

.home-about-primary:hover,
.home-about-secondary:hover { transform: translateY(-3px); }

.home-about-primary:hover {
    color: #fff;
    box-shadow: 0 19px 36px rgba(27, 168, 232, .34);
}

.home-about-secondary:hover {
    color: var(--about-navy);
    background: #fff;
    box-shadow: 0 16px 30px rgba(11, 31, 77, .11);
}

@keyframes homeAboutRotate { to { transform: rotate(360deg); } }

@keyframes homeAboutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@media (max-width: 1050px) {
    .home-about-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
        gap: 44px;
    }

    .home-about-visual { min-height: 520px; }
    .home-about-content h2 { font-size: clamp(40px, 4.8vw, 52px); }
    .home-about-seal { width: 120px; }
}

@media (max-width: 850px) {
    .home-about-grid { grid-template-columns: 1fr; gap: 52px; }

    .home-about-visual {
        width: min(100%, 670px);
        min-height: 560px;
        margin: 0 auto;
    }

    .home-about-content {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .home-about-eyebrow { justify-content: center; }
    .home-about-content > p { margin-right: auto; margin-left: auto; }
    .home-about-feature { text-align: left; }
    .home-about-actions { justify-content: center; }
}

@media (max-width: 560px) {
    .home-about-section { padding: 72px 0 78px; }
    .home-about-grid { gap: 38px; }

    .home-about-visual {
        min-height: 405px;
        align-items: flex-start;
    }

    .home-about-main-art { width: 100%; }

    .home-about-floating-image {
        left: -2px;
        bottom: 3%;
        width: 112px;
        border-width: 6px;
    }

    .home-about-seal {
        right: -2px;
        bottom: -1%;
        width: 102px;
    }

    .home-about-seal-center { width: 47px; }
    .home-about-seal-center svg { width: 20px; }
    .home-about-seal-ring text { font-size: 8.4px; letter-spacing: .9px; }
    .home-about-star-one { left: 1%; top: 8%; width: 23px; }
    .home-about-star-two { right: 2%; top: 20%; }

    .home-about-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: .14em;
    }

    .home-about-content h2 {
        font-size: clamp(35px, 10vw, 44px);
        line-height: 1.08;
    }

    .home-about-content > p {
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.7;
    }

    .home-about-features { grid-template-columns: 1fr; margin-bottom: 30px; }
    .home-about-feature { min-height: 54px; }
    .home-about-actions { display: grid; grid-template-columns: 1fr; }
    .home-about-primary, .home-about-secondary { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .home-about-seal-ring,
    .home-about-floating-image { animation: none; }
}

/* Keep the premium hero treatment above later legacy background declarations. */
.hero-section {
  background: url('../images/DesktopBG.png') center / cover no-repeat !important;
}

@media (max-width: 767px) {
  .hero-section { background: url('../images/MobileBG.png') center top / cover no-repeat !important; }
}

@media (max-width: 768px) {
  .hero-section {
    background-image: url('../images/MobileBG.png') !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/* ==========================================================================
   ABOUT US PAGE HERO BACKGROUND
   ========================================================================== */
/* ==========================================================================
   ABOUT US PAGE HERO BACKGROUND & OVERLAY
   ========================================================================== */
.page-hero.about-hero {
  margin-top: 0; /* Shift below fixed header on desktop */
  background-color: #0b1f4d !important;
  background-image: linear-gradient(90deg, #0b1f4d 35%, rgba(11, 31, 77, 0.85) 65%, rgba(11, 31, 77, 0.2) 100%), url('../images/abtSectionHeader_desktop.png') !important;
  background-size: cover !important;
  background-position: right top !important;
  background-repeat: no-repeat !important;
  padding: 100px 0;
  text-align: left !important;
  display: flex;
  align-items: center;
  min-height: 480px;
}

.about-hero-content {
  max-width: 620px;
  position: relative;
  z-index: 5;
}

.about-hero-kicker {
  color: #1BA8E8;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 20px;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.page-hero.about-hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.about-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 36px;
  font-family: 'Inter', sans-serif;
}

.about-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-hero-contact {
  display: inline-block;
  background-color: #ffffff !important;
  color: #0B1F4D !important;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  border: none !important;
  letter-spacing: 0.02em;
}

.btn-hero-contact:hover {
  background-color: #f8fafc !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  display: inline-block;
  background-color: transparent !important;
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.02em;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .page-hero.about-hero {
    margin-top: 0; /* Reset top margin since body has padding-top */
    text-align: center !important;
    padding: 80px 0;
    min-height: auto;
    background-image: linear-gradient(180deg, rgba(11, 31, 77, 0.9) 0%, rgba(11, 31, 77, 0.8) 100%), url('../images/abtSectionHeader_mobile.png') !important;
    background-size: cover !important;
    background-position: center top !important;
  }
  .about-hero-content {
    margin: 0 auto;
    max-width: 100%;
  }
  .about-hero-sub {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero-actions {
    justify-content: center;
  }
  .page-hero.about-hero h1 {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   REDESIGNED ABOUT US SECTIONS & DETAILS
   ========================================================================== */

/* Service Cards (TOP) */
.abt-service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.abt-service-card {
  background-color: #ffffff;
  padding: 45px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.03);
  border: 1px solid rgba(11, 31, 77, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 330px;
}

.abt-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 31, 77, 0.08);
}

.abt-card-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(27, 168, 232, 0.05);
  border: 1px solid rgba(27, 168, 232, 0.15);
  color: #1BA8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.abt-service-card:hover .abt-card-icon-wrapper {
  background-color: #1BA8E8;
  border-color: #1BA8E8;
  color: #ffffff;
  transform: scale(1.05);
}

.abt-card-svg-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.abt-service-card h3 {
  color: #0B1F4D;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.abt-service-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.abt-card-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1BA8E8;
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-top: auto;
  padding-top: 24px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.abt-card-read-more:hover {
  color: #0B1F4D;
  border-bottom-color: #0B1F4D;
}

/* Floating Statistics Bar (MIDDLE) */
.abt-stats-overlap {
  position: relative;
  z-index: 10;
  margin: 0 auto -60px;
  background: linear-gradient(90deg, #1BA8E8 0%, #0B1F4D 100%);
  border-radius: 12px;
  padding: 35px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 20px 40px rgba(11, 31, 77, 0.15);
  border: none;
}

.abt-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.abt-stat-icon-wrapper {
  color: #ffffff;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt-stat-svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.abt-stat-text {
  display: flex;
  flex-direction: column;
}

.abt-stat-number {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.abt-stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Two-Column Layout (BOTTOM) */
.abt-why-choose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-top: 140px;
}

.abt-why-choose-media {
  position: relative;
}

.abt-featured-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 31, 77, 0.12);
  background-color: #ffffff;
}

.abt-featured-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.abt-featured-image-container:hover .abt-featured-img {
  transform: scale(1.02);
}

.abt-why-choose-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.abt-why-eyebrow {
  color: #1BA8E8;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.abt-why-choose-content h2 {
  color: #0B1F4D;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.abt-why-desc {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.abt-why-features-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  width: 100%;
}

.abt-why-features-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.abt-feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(27, 168, 232, 0.10);
  color: #1BA8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.abt-feature-text {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}

.abt-why-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.abt-why-read-more-btn {
  background-color: #1BA8E8;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(27, 168, 232, 0.15);
}

.abt-why-read-more-btn:hover {
  background-color: #0b1f4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 31, 77, 0.2);
}

/* Mission, Vision & Values Section */
.abt-section-tag {
  color: #14C6C6;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.abt-section-header h2 {
  color: #0B1F4D;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.abt-section-header p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.abt-value-card {
  background-color: #F7FAFC;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 77, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abt-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(11, 31, 77, 0.06);
  background-color: #ffffff;
  border-color: rgba(27, 168, 232, 0.15);
}

.abt-value-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.abt-value-card:hover .abt-value-icon-wrapper {
  transform: scale(1.1);
}

.abt-value-icon-wrapper svg {
  width: 28px;
  height: 28px;
  display: block;
}

.icon-mission {
  background-color: rgba(20, 198, 198, 0.1);
  color: #14C6C6;
}

.icon-vision {
  background-color: rgba(27, 168, 232, 0.1);
  color: #1BA8E8;
}

.icon-values {
  background-color: rgba(11, 31, 77, 0.08);
  color: #0B1F4D;
}

.abt-value-card h3 {
  color: #0B1F4D;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.abt-value-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Redesigned Final CTA Section */
.abt-final-cta-section {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

.abt-final-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 31, 77, 0.85) 0%, rgba(11, 31, 77, 0.95) 100%), url('../images/bg6.png') no-repeat center center / cover !important;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(11, 31, 77, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.abt-final-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(27, 168, 232, 0.15) 0%, rgba(20, 198, 198, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.abt-cta-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.abt-cta-desc {
  color: #94a3b8;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.abt-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-primary {
  background-color: #ffffff !important;
  color: #0B1F4D !important;
  font-weight: 700;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: #f1f5f9 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-cta-outline {
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  font-weight: 600;
  background-color: transparent !important;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background-color: #ffffff !important;
  color: #0B1F4D !important;
  transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .abt-service-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .abt-stats-overlap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .abt-why-choose-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 100px;
  }
  .abt-why-choose-img {
    height: 380px;
  }
  .abt-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .abt-final-cta-card {
    padding: 40px 24px;
  }
  .abt-cta-title {
    font-size: 2rem;
  }
  .abt-cta-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .abt-stats-overlap {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .abt-why-choose-content h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   PREMIUM THIN AND TRANSPARENT COMPARISON SLIDERS (OVERRIDE ALL)
   ========================================================================== */

/* 1. Divider Line styling - Wide target zone for easy grabbing, visually thin and glassmorphic line */
.ba-premium-card .ba-handle,
.ba-slider .ba-handle,
.premium-result-card .ba-handle,
.tp-featured-result .ba-handle {
  width: 44px !important; /* Easy-grab hit target */
  background: transparent !important; /* Transparent container so the image is visible */
  box-shadow: none !important;
  cursor: ew-resize !important;
  pointer-events: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Visually thin (2px) vertical divider line with transparency and blur/glass effect */
.ba-premium-card .ba-handle-line,
.ba-slider .ba-handle-line,
.premium-result-card .ba-handle-line,
.tp-featured-result .ba-handle-line {
  display: block !important;
  width: 2px !important; /* 2px vertical divider line */
  height: 100% !important;
  background: rgba(255, 255, 255, 0.45) !important; /* 45% opacity semi-transparent white */
  backdrop-filter: blur(2px) !important; /* Subtle glass effect */
  -webkit-backdrop-filter: blur(2px) !important;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2) !important;
  flex: 1 !important;
}

/* Ensure no double dividers or extra borders on cropped after layers */
.premium-result-card .ba-after,
.tp-featured-result .ba-after,
.ba-slider-after,
.ba-img-after {
  border-right: none !important;
}

/* 2. Drag Handle Button/Circle styling (Glassmorphism, 48px size) */
.ba-premium-card .ba-handle-circle,
.ba-slider .ba-handle-button,
.premium-result-card .ba-handle-button,
.tp-featured-result .ba-handle-button {
  width: 48px !important; /* 44px-52px size */
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.45) !important; /* White glassmorphism base */
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important; /* Thin borders */
  box-shadow: 0 8px 32px rgba(11, 31, 77, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important; /* Soft premium shadows */
  color: #0b1f4d !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important; /* Perfectly centered on divider */
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  z-index: 15 !important;
  cursor: ew-resize !important;
  pointer-events: auto !important;
}

/* Hover & Active animations for the handles */
.ba-premium-card:hover .ba-handle-circle,
.ba-slider:hover .ba-handle-button,
.ba-slider .ba-handle:hover .ba-handle-button,
.premium-result-card:hover .ba-handle-button,
.premium-result-card .ba-handle:hover .ba-handle-button,
.tp-featured-result:hover .ba-handle-button,
.tp-featured-result .ba-handle:hover .ba-handle-button {
  transform: translate(-50%, -50%) scale(1.08) !important; /* Sleek scale animation */
  background: rgba(255, 255, 255, 0.65) !important; /* Increased opacity on hover for visibility */
  border-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 12px 40px rgba(11, 31, 77, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

/* Inside SVGs / arrows layout */
.ba-premium-card .ba-handle-circle svg,
.ba-slider .ba-handle-button svg,
.premium-result-card .ba-handle-button svg,
.tp-featured-result .ba-handle-button svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #0b1f4d !important;
  stroke-width: 2.5 !important;
  transition: transform 0.25s ease !important;
}

/* 3. Mobile adjustments (Compact sizing) */
@media (max-width: 768px) {
  .ba-premium-card .ba-handle,
  .ba-slider .ba-handle,
  .premium-result-card .ba-handle,
  .tp-featured-result .ba-handle {
    width: 36px !important;
  }
  .ba-premium-card .ba-handle-circle,
  .ba-slider .ba-handle-button,
  .premium-result-card .ba-handle-button,
  .tp-featured-result .ba-handle-button {
    width: 36px !important; /* Scale down for compact mobile screens */
    height: 36px !important;
  }
  .ba-premium-card .ba-handle-circle svg,
  .ba-slider .ba-handle-button svg,
  .premium-result-card .ba-handle-button svg,
  .tp-featured-result .ba-handle-button svg {
    width: 11px !important;
    height: 11px !important;
  }
}

/* ==========================================================================
   BLOG DETAIL PAGES SPECIFIC STYLES
   ========================================================================== */

/* Blog Layout Grid */
.blog-detail-container {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Sidebar ToC Styling */
.blog-sidebar {
  position: sticky;
  top: 140px;
  z-index: 100;
}

.blog-toc-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.05);
  border: 1px solid var(--border-light);
}

.blog-toc-card h3 {
  font-size: 1.15rem;
  color: #0B1F4D;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border-bottom: 2px solid #F7FAFC;
  padding-bottom: 12px;
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-toc-item {
  margin-bottom: 10px;
}

.blog-toc-link {
  color: #64748B;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
  padding: 4px 0;
}

.blog-toc-link:hover {
  color: #1BA8E8;
  transform: translateX(4px);
}

.blog-toc-link.active {
  color: #1BA8E8;
  font-weight: 600;
  border-left: 2px solid #1BA8E8;
  padding-left: 8px;
}

/* Main Blog Content Typography */
.blog-content-area {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-content-area p {
  margin-bottom: 24px;
}

.blog-content-area h2 {
  font-size: 1.85rem;
  color: #0B1F4D;
  margin: 40px 0 16px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  scroll-margin-top: 140px; /* Offset for sticky header when scrolling to anchors */
}

.blog-content-area h3 {
  font-size: 1.35rem;
  color: #0B1F4D;
  margin: 28px 0 12px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.blog-content-area ul, .blog-content-area ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-content-area li {
  margin-bottom: 8px;
}

/* Callout and Highlight Boxes */
.blog-callout {
  background-color: #F8FAFC;
  border-left: 4px solid #1BA8E8;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.blog-callout p {
  margin: 0;
  font-style: italic;
  color: #475569;
}

.blog-warning {
  background-color: #FFFBEB;
  border-left: 4px solid #F59E0B;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.blog-warning-title {
  font-weight: 700;
  color: #B45309;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-warning p {
  margin: 0;
  color: #78350F;
  font-size: 0.95rem;
}

/* Expert Tip Card */
.blog-expert-card {
  background: linear-gradient(135deg, rgba(20, 198, 198, 0.06) 0%, rgba(27, 168, 232, 0.03) 100%);
  border: 1px solid rgba(20, 198, 198, 0.15);
  border-radius: 20px;
  padding: 32px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
  align-items: start;
}

.blog-expert-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #0b1f4d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(11, 31, 77, 0.1);
}

.blog-expert-info h4 {
  font-size: 1.15rem;
  color: #0B1F4D;
  margin-bottom: 4px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.blog-expert-info .expert-title {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.blog-expert-info p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .blog-expert-card {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
}

/* Routine Cards (Morning/Night) */
.routine-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.routine-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 25px rgba(11, 31, 77, 0.03);
}

.routine-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
}

.routine-card.morning .routine-card-title {
  color: #1BA8E8;
}

.routine-card.night .routine-card-title {
  color: #0B1F4D;
}

.routine-list {
  padding-left: 20px;
  margin: 0;
}

.routine-list li {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .routine-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Comparison Table */
.blog-table-container {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.blog-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.blog-comparison-table th {
  background-color: #0B1F4D;
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.blog-comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  color: #475569;
}

.blog-comparison-table tr:last-child td {
  border-bottom: none;
}

.blog-comparison-table tr:nth-child(even) {
  background-color: #F8FAFC;
}

/* Related Treatments */
.blog-related-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.blog-related-title {
  font-size: 1.75rem;
  color: #0B1F4D;
  margin-bottom: 32px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

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

@media (max-width: 992px) {
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

.blog-related-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.blog-related-card:hover {
  transform: translateY(-3px);
  border-color: #1BA8E8;
  box-shadow: 0 8px 20px rgba(27, 168, 232, 0.1);
}

.blog-related-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(27, 168, 232, 0.1);
  color: #1BA8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-related-card h4 {
  font-size: 1rem;
  color: #0B1F4D;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

/* FAQ Accordion Styling inside Blog */
.blog-faq-section {
  padding: 60px 0;
  background-color: #F8FAFC;
  border-radius: 24px;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.blog-faq-title {
  font-size: 1.75rem;
  color: #0B1F4D;
  margin-bottom: 32px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

/* Final testimonial performance and mobile interaction guardrails */
.video-testimonials-section-new {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.reel-card-new {
  contain: layout paint;
}

@media (max-width: 767px) {
  .video-testimonials-section-new .reels-row-new {
    grid-template-columns: 1fr;
  }
}

/* Doctor-focused trust section */
.doctor-trust-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.doctor-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.doctor-trust-visual {
  position: relative;
  min-width: 0;
  width: min(100%, 455px);
  padding: 20px 16px 26px 20px;
  isolation: isolate;
}

.doctor-trust-glow {
  position: absolute;
  inset: 11% 5% 5% 10%;
  z-index: -1;
  border-radius: 40px;
  background: rgba(27, 168, 232, 0.14);
  filter: blur(38px);
  pointer-events: none;
}

.doctor-trust-image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  border: 1px solid rgba(11, 31, 77, 0.08);
  border-radius: 24px;
  background: #f4f9fc;
  box-shadow: 0 18px 42px rgba(11, 31, 77, 0.1);
}

.doctor-trust-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 74%, rgba(11, 31, 77, 0.05));
  pointer-events: none;
}

.doctor-trust-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.06);
}

.doctor-stat-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(11, 31, 77, 0.1);
  color: #52617a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  line-height: 1.18;
  backdrop-filter: blur(8px);
}

.doctor-stat-badge iconify-icon {
  flex: 0 0 auto;
  color: #1ba8e8;
  font-size: 1.4rem;
}

.doctor-stat-badge span {
  display: flex;
  flex-direction: column;
}

.doctor-stat-badge strong {
  color: #0b1f4d;
  font-size: 1rem;
  font-weight: 750;
}

.doctor-stat-experience {
  top: 3px;
  left: 0;
}

.doctor-stat-patients {
  bottom: 0;
  left: 0;
}

.doctor-stat-reviews {
  right: 0;
  bottom: 13%;
}

.doctor-stat-reviews iconify-icon {
  color: #f5aa19;
}

.doctor-trust-content {
  max-width: 620px;
}

.doctor-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #1ba8e8;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.doctor-trust-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: #1ba8e8;
}

.doctor-trust-content h2 {
  margin: 0;
  color: #0b1f4d;
  font-family: 'Outfit', sans-serif;
  max-width: 590px;
  font-size: clamp(2.1rem, 3.1vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.doctor-trust-description {
  max-width: 590px;
  margin: 18px 0 0;
  color: #60708a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.doctor-trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  margin-top: 25px;
}

.doctor-trust-point {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #23385f;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 550;
  line-height: 1.35;
}

.doctor-trust-point iconify-icon {
  flex: 0 0 auto;
  color: #1ba8e8;
  font-size: 1.05rem;
}

.doctor-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.doctor-trust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.doctor-trust-btn iconify-icon {
  font-size: 1.15rem;
}

.doctor-trust-btn:hover {
  transform: translateY(-2px);
}

.doctor-trust-btn-primary {
  background: #0b1f4d;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 31, 77, 0.14);
}

.doctor-trust-btn-primary:hover {
  background: #143575;
  color: #ffffff;
}

.doctor-trust-btn-secondary {
  border-color: rgba(11, 31, 77, 0.2);
  background: #ffffff;
  color: #0b1f4d;
}

.doctor-trust-btn-secondary:hover {
  border-color: #1ba8e8;
  color: #087eba;
}

@media (max-width: 1050px) {
  .doctor-trust-grid {
    gap: 48px;
  }

  .doctor-stat-badge {
    min-height: 54px;
    padding: 9px 12px;
    font-size: 0.7rem;
  }

  .doctor-stat-badge strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  .doctor-trust-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .doctor-trust-visual {
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .doctor-trust-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
  }

  .doctor-trust-eyebrow,
  .doctor-trust-actions {
    justify-content: center;
  }

  .doctor-trust-description {
    margin-right: auto;
    margin-left: auto;
  }

  .doctor-trust-point { justify-content: flex-start; text-align: left; }
}

@media (max-width: 600px) {
  .doctor-trust-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .doctor-trust-grid {
    gap: 38px;
  }

  .doctor-trust-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }

  .doctor-trust-glow {
    inset: 4% 2% 28% 2%;
    filter: blur(30px);
  }

  .doctor-trust-image-card {
    grid-column: 1 / -1;
    aspect-ratio: 1 / 1.16;
    border-radius: 20px;
  }

  .doctor-stat-badge {
    position: static;
    min-height: 58px;
    border-color: rgba(27, 168, 232, 0.12);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(11, 31, 77, 0.08);
    backdrop-filter: none;
  }

  .doctor-stat-reviews {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .doctor-trust-eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .doctor-trust-content h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.12;
  }

  .doctor-trust-description {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .doctor-trust-points {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 25px;
  }

  .doctor-trust-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .doctor-trust-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doctor-trust-btn {
    transition: none;
  }
}

/* About page: full-width care story */
.about-care-section {
  padding: clamp(78px, 8vw, 118px) 0;
  background: #f7fbfe;
}

.about-care-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: end;
  gap: clamp(42px, 7vw, 110px);
  margin-bottom: 38px;
}

.about-care-eyebrow,
.about-team-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #159ed9;
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-care-heading h2,
.about-team-header h2 {
  margin: 0;
  color: #0b1f4d;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.about-care-copy > p {
  margin: 0;
  color: #62728a;
  font-size: 1rem;
  line-height: 1.72;
}

.about-care-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin-top: 18px;
}

.about-care-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #263c60;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.about-care-points iconify-icon {
  color: #1ba8e8;
  font-size: 1rem;
}

.about-care-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(390px, 48vw, 650px);
  margin: 0;
  border-radius: 28px;
  background: #dfeef5;
  box-shadow: 0 22px 54px rgba(11, 31, 77, 0.11);
}

.about-care-image::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 23, 53, 0.72));
  pointer-events: none;
}

.about-care-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.about-care-image figcaption {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 52px);
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
}

.about-care-image figcaption span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-care-image figcaption strong {
  max-width: 510px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 550;
  line-height: 1.2;
  text-align: right;
}

/* About page: specialist team */
.about-team-section {
  padding: clamp(82px, 9vw, 126px) 0;
  background: #ffffff;
}

.about-team-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.about-team-header p {
  margin: 0 0 5px;
  color: #68788f;
  font-size: 1rem;
  line-height: 1.7;
}

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

.about-doctor-card {
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(11, 31, 77, 0.07);
  transition: transform 200ms ease, border-color 200ms ease;
}

.about-doctor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 168, 232, 0.3);
}

.about-doctor-photo {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  background: #eef6fa;
}

.about-doctor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 350ms ease;
}

.about-doctor-card:hover .about-doctor-photo img {
  transform: scale(1.025);
}

.about-doctor-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0b1f4d;
  box-shadow: 0 8px 20px rgba(11, 31, 77, 0.13);
}

.about-doctor-arrow iconify-icon {
  font-size: 1.25rem;
}

.about-doctor-content {
  padding: 24px 24px 26px;
}

.about-doctor-role {
  display: block;
  min-height: 2em;
  color: #159ed9;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.about-doctor-content h3 {
  margin: 8px 0 10px;
  color: #0b1f4d;
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.about-doctor-content p {
  min-height: 5.2em;
  margin: 0 0 18px;
  color: #66768d;
  font-size: 0.88rem;
  line-height: 1.65;
}

.about-doctor-content > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b1f4d;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.about-doctor-content > a iconify-icon {
  color: #1ba8e8;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.about-doctor-content > a:hover iconify-icon {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .about-care-heading,
  .about-team-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-care-heading {
    margin-bottom: 26px;
  }

  .about-care-heading h2,
  .about-team-header h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .about-care-image {
    min-height: 420px;
    border-radius: 20px;
  }

  .about-care-image figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .about-care-image figcaption strong {
    text-align: left;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-doctor-card {
    border-radius: 20px;
  }

  .about-doctor-content p,
  .about-doctor-role {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-doctor-card,
  .about-doctor-photo img,
  .about-doctor-content > a iconify-icon {
    transition: none;
  }
}

/* Results page visibility and hierarchy */
.results-page .results-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(27, 168, 232, 0.28), transparent 28%),
    linear-gradient(135deg, #0b1f4d 0%, #123873 100%);
}

.results-page .results-gallery-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  min-height: 480px;
}

.results-page .ba-premium-card {
  visibility: visible;
  content-visibility: auto;
  contain-intrinsic-size: 680px;
}

/* About page: compact trust story and image placeholders */
.about-page .home-about-section {
  padding: 64px 0 72px;
}

.about-page .home-about-visual {
  min-height: 470px;
}

.about-page .home-about-grid {
  gap: clamp(44px, 6vw, 76px);
}

.about-page .about-care-section {
  padding: 76px 0 84px;
}

.about-care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-care-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(11, 31, 77, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.about-care-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(11, 31, 77, 0.13);
}

.about-care-image {
  display: block;
  width: 100%;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  object-position: center;
  background: #eaf7fd;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-care-card:hover .about-care-image {
  transform: scale(1.025);
}

.about-care-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  aspect-ratio: 4 / 3;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(27, 168, 232, 0.12), rgba(20, 198, 198, 0.08)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.6) 18px 19px);
  color: #159ed9;
  text-align: center;
}

.about-care-placeholder iconify-icon {
  font-size: 2.5rem;
}

.about-care-placeholder span {
  color: #57708f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-care-card-copy {
  position: relative;
  padding: 23px 64px 25px 24px;
}

.about-care-card-copy > span {
  color: #159ed9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-care-card-copy h3 {
  margin: 7px 0 9px;
  color: #0b1f4d;
  font-size: 1.2rem;
  line-height: 1.25;
}

.about-care-card-copy p {
  margin: 0;
  color: #68788f;
  font-size: 0.86rem;
  line-height: 1.6;
}

.about-care-card-copy a {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b1f4d;
  color: #ffffff;
}

/* Contact page: map-led appointment experience */
.contact-page .contact-page-hero {
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 78% 24%, rgba(27, 168, 232, 0.3), transparent 26%),
    linear-gradient(135deg, #0b1f4d, #123873);
}

.contact-hero-kicker,
.contact-section-label {
  display: block;
  color: #55c9f4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-page-hero > .container > p {
  max-width: 620px;
  margin: 0 auto 20px;
  color: #d7e7f4;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-premium-section {
  padding: 76px 0 88px;
  background: linear-gradient(180deg, #f6fbfe 0%, #ffffff 100%);
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 30px;
  align-items: stretch;
}

.contact-map-card,
.contact-booking-card {
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(11, 31, 77, 0.11);
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  filter: saturate(0.85) contrast(0.96);
}

.contact-map-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.18);
  backdrop-filter: blur(10px);
}

.contact-map-badge iconify-icon {
  color: #1ba8e8;
  font-size: 2rem;
}

.contact-map-badge strong,
.contact-map-badge span {
  display: block;
}

.contact-map-badge strong { color: #0b1f4d; }
.contact-map-badge span { margin-top: 2px; color: #68788f; font-size: 0.78rem; }

.contact-booking-card {
  padding: clamp(28px, 4vw, 42px);
}

.contact-booking-card h2,
.contact-hours-panel h2 {
  margin: 9px 0 12px;
  color: #0b1f4d;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.contact-booking-card > p {
  margin: 0 0 25px;
  color: #68788f;
  line-height: 1.65;
}

.contact-page-form {
  display: grid;
  gap: 14px;
}

.contact-page-form .form-group { margin: 0; }
.contact-page-form .form-label { margin-bottom: 7px; font-size: 0.76rem; }
.contact-page-form .form-control { min-height: 52px; border-radius: 14px; background: #f6f9fc; }
.contact-page-form textarea.form-control { min-height: 92px; resize: vertical; }
.contact-page-form .form-submit-btn { width: 100%; min-height: 56px; margin-top: 3px; gap: 8px; border-radius: 15px; }

.contact-success-message {
  display: none;
  padding: 50px 20px;
  text-align: center;
}

.contact-success-message iconify-icon { color: #16a36a; font-size: 4rem; }

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-option-card {
  min-width: 0;
  padding: 23px;
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 20px;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 12px 34px rgba(11, 31, 77, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-option-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(11, 31, 77, 0.12); }
.contact-option-card iconify-icon { color: #1ba8e8; font-size: 2rem; }
.contact-option-card span { display: block; margin: 14px 0 7px; color: #159ed9; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; }
.contact-option-card strong { display: block; overflow-wrap: anywhere; color: #0b1f4d; font-size: 1rem; }
.contact-option-card p { margin: 7px 0 0; overflow-wrap: anywhere; color: #718096; font-size: 0.78rem; line-height: 1.5; }

.contact-hours-panel {
  width: 100%;
  margin-top: 28px;
  background: #0b1f4d;
  color: #ffffff;
}

.contact-hours-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.contact-hours-panel h2 { color: #ffffff; }
.contact-hours-panel p { margin: 0; color: #bdd0e2; line-height: 1.65; }
.contact-hours-list p { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.13); }
.contact-hours-list p span { color: #bdd0e2; }
.contact-hours-list p strong { color: #ffffff; }
.contact-hours-list a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: #55c9f4; font-weight: 750; }

@media (max-width: 980px) {
  .about-care-grid,
  .contact-options-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-visit-grid { grid-template-columns: 1fr; }
  .contact-map-card,
  .contact-map-card iframe { min-height: 460px; }
}

@media (max-width: 640px) {
  .results-page .results-hero,
  .contact-page .contact-page-hero { padding: 62px 0 54px; }
  .about-page .home-about-section { padding: 48px 0 56px; }
  .about-page .home-about-visual { min-height: 390px; }
  .about-page .about-care-section { padding: 58px 0 64px; }
  .about-care-grid,
  .contact-options-grid,
  .contact-form-row,
  .contact-hours-inner { grid-template-columns: 1fr; }
  .contact-premium-section { padding: 52px 0 64px; }
  .contact-map-card,
  .contact-map-card iframe { min-height: 360px; }
  .contact-map-badge { right: 14px; bottom: 14px; left: 14px; max-width: calc(100% - 28px); }
  .contact-booking-card { border-radius: 22px; }
  .contact-hours-inner { gap: 28px; }
}

/* Contact page: treatment loop, urgent care, directions, and page-only footer */
.contact-treatment-marquee {
  overflow: hidden;
  padding: 76px 0 82px;
  border-top: 1px solid rgba(11, 31, 77, 0.07);
  border-bottom: 1px solid rgba(11, 31, 77, 0.07);
  background: #ffffff;
}

.contact-marquee-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-marquee-heading h2 {
  max-width: 620px;
  margin: 0;
  color: #0b1f4d;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.15;
  text-align: right;
}

.contact-marquee-window {
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.contact-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: contact-treatment-loop 46s linear infinite;
}

.contact-marquee-window:hover .contact-marquee-track {
  animation-play-state: paused;
}

.contact-marquee-track a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  padding: 13px 18px 13px 13px;
  border: 1px solid rgba(11, 31, 77, 0.09);
  border-radius: 18px;
  background: #f8fcff;
  color: #0b1f4d;
  box-shadow: 0 8px 24px rgba(11, 31, 77, 0.06);
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-marquee-track a:hover {
  border-color: rgba(27, 168, 232, 0.28);
  background: #ffffff;
  transform: translateY(-3px);
}

.contact-marquee-track img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 5px;
  border-radius: 13px;
  background: #eaf7fd;
}

@keyframes contact-treatment-loop {
  to { transform: translateX(calc(-50% - 8px)); }
}

.contact-support-section {
  padding: 86px 0;
  background: #f5f9fc;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.contact-emergency-card,
.contact-directions-card {
  min-width: 0;
  border-radius: 26px;
}

.contact-emergency-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 480px;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  background: #0b1f4d;
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(11, 31, 77, 0.2);
}

.contact-emergency-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 51, 0.97) 0%, rgba(8, 30, 68, 0.88) 46%, rgba(8, 30, 68, 0.28) 76%, rgba(8, 30, 68, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 20, 51, 0.72), transparent 60%);
  content: '';
}

.contact-emergency-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-emergency-card:hover > img {
  transform: scale(1.025);
}

.contact-emergency-content {
  max-width: 500px;
}

.contact-emergency-card span {
  color: #67d1f6;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-emergency-card h2,
.contact-directions-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.contact-emergency-card h2 { color: #ffffff; }
.contact-emergency-card p { max-width: 440px; margin: 0 0 19px; color: #d7e5f2; line-height: 1.65; }

.contact-emergency-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.contact-emergency-signals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dff5ff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-emergency-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #0b1f4d;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(5, 20, 51, 0.22);
  font-weight: 800;
}

.contact-directions-card {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(11, 31, 77, 0.09);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(11, 31, 77, 0.09);
}

.contact-directions-card h2 { color: #0b1f4d; }
.contact-directions-card > p { margin: 0; color: #68788f; line-height: 1.7; }

.contact-landmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.contact-landmarks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #eef8fd;
  color: #244264;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-landmarks iconify-icon { color: #1ba8e8; font-size: 1rem; }
.contact-directions-card > a { display: inline-flex; align-items: center; gap: 8px; color: #0b1f4d; font-weight: 800; }

.contact-page .contact-footer {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(100deg, rgba(5, 20, 51, 0.97), rgba(11, 31, 77, 0.9)),
    url('../images/bg6.png') center / cover no-repeat;
}

.contact-page .contact-premium-section ~ .section-padding.reveal {
  display: none !important;
}

.contact-page .contact-footer::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(27, 168, 232, 0.24), transparent 32%);
  content: '';
}

.contact-page .contact-footer .footer-map {
  display: none !important;
}

.contact-page .contact-footer .footer-top {
  padding-top: 18px;
}

.contact-page .contact-footer .footer-title,
.contact-page .contact-footer .footer-contact-text h5 {
  color: #ffffff;
}

.contact-page .contact-footer .footer-about,
.contact-page .contact-footer .footer-links a,
.contact-page .contact-footer .footer-contact-text p,
.contact-page .contact-footer .footer-bottom,
.contact-page .contact-footer .footer-bottom a {
  color: #c5d4e4;
}

.contact-page .contact-footer .footer-links a:hover,
.contact-page .contact-footer .footer-bottom a:hover {
  color: #67d1f6;
}

.contact-page .contact-footer .social-icon {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.contact-page .contact-footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.13);
}

@media (max-width: 820px) {
  .contact-marquee-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .contact-marquee-heading h2 { text-align: left; }
  .contact-support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .contact-treatment-marquee { padding: 58px 0 62px; }
  .contact-marquee-track { gap: 12px; }
  .contact-marquee-track a { min-width: 184px; padding: 11px 14px 11px 11px; }
  .contact-marquee-track img { width: 43px; height: 43px; }
  .contact-support-section { padding: 62px 0; }
  .contact-emergency-card {
    min-height: 540px;
    padding: 28px 22px;
  }
  .contact-emergency-card::after {
    background: linear-gradient(0deg, rgba(5, 20, 51, 0.98) 0%, rgba(8, 30, 68, 0.84) 48%, rgba(8, 30, 68, 0.14) 82%);
  }
  .contact-emergency-card > img { object-position: 62% center; }
  .contact-emergency-card h2 { font-size: 2rem; }
  .contact-emergency-card a { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-marquee-track {
    animation-play-state: paused;
  }
}

/* Homepage hero: premium editorial layout */
.hero-section {
  min-height: 0 !important;
  padding: clamp(82px, 6.5vw, 96px) 0 clamp(68px, 5.5vw, 82px) !important;
  background:
    radial-gradient(circle at 82% 34%, rgba(27, 168, 232, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbfe 58%, #edf8fd 100%) !important;
  overflow: hidden;
}

.hero-section .container {
  width: 100%;
  max-width: 1240px !important;
  padding-right: clamp(64px, 5vw, 80px) !important;
  padding-left: clamp(64px, 5vw, 80px) !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 500px) minmax(340px, 380px) !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(100px, 10vw, 150px) !important;
}

.hero-left-content {
  width: 100%;
  max-width: 500px;
  padding: 0 !important;
  text-align: left !important;
}

.hero-eyebrow-text {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px !important;
  color: #159ed9 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.hero-eyebrow-text::before {
  width: 30px;
  height: 1px;
  background: #1ba8e8;
  content: '';
}

.hero-headline {
  max-width: 500px;
  margin: 0 !important;
  color: #0b1f4d !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(3.4rem, 4.8vw, 4.8rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.052em !important;
  line-height: 1.08 !important;
}

.hero-supporting-copy {
  max-width: 470px !important;
  margin: 28px 0 0 !important;
  color: #60718c !important;
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem) !important;
  line-height: 1.65 !important;
}

.hero-cta-buttons {
  display: flex !important;
  flex-wrap: wrap;
  gap: 14px !important;
  margin-top: 34px !important;
}

.hero-cta-buttons .btn {
  min-height: 56px;
  padding: 0 25px !important;
  border-radius: 999px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.hero-right-media {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.hero-reel-stage {
  position: relative;
  width: min(100%, 380px);
  padding: 10px;
}

.hero-reel-stage::before {
  position: absolute;
  inset: 8% -11% 4%;
  border-radius: 50%;
  background: rgba(27, 168, 232, 0.18);
  filter: blur(52px);
  content: '';
}

.hero-video-wrapper-16-9 {
  position: relative !important;
  z-index: 1;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 32px !important;
  background: #0b1f4d !important;
  box-shadow: 0 38px 90px rgba(11, 31, 77, 0.24), 0 12px 34px rgba(27, 168, 232, 0.15) !important;
  transform: none !important;
}

.hero-widescreen-video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 42% !important;
}

.hero-reel-shade {
  position: absolute;
  z-index: 1;
  inset: 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 45, 0.86));
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-reel-copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: grid;
  gap: 7px;
  color: #ffffff;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-reel-copy strong {
  max-width: 290px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.hero-reel-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-video-wrapper-16-9.is-playing .hero-reel-copy,
.hero-video-wrapper-16-9.is-playing .hero-reel-shade {
  opacity: 0;
  transform: translateY(8px);
}

.video-play-button-overlay {
  position: absolute !important;
  z-index: 3 !important;
  top: 45% !important;
  left: 50% !important;
  display: grid !important;
  place-items: center;
  width: 74px !important;
  height: 74px !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 16px 38px rgba(7, 24, 56, 0.22) !important;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%) !important;
  transition: transform 180ms ease, background-color 180ms ease !important;
}

.video-play-button-overlay:hover {
  background: #ffffff !important;
  transform: translate(-50%, -50%) scale(1.06) !important;
}

.play-icon-arrow {
  width: 0 !important;
  height: 0 !important;
  margin-left: 5px;
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 14px solid #0b1f4d !important;
}

.hero-reel-badge {
  position: absolute;
  z-index: 4;
  top: 34px;
  right: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 12px 15px;
  border: 1px solid rgba(11, 31, 77, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #61718a;
  box-shadow: 0 14px 36px rgba(11, 31, 77, 0.14);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-reel-badge iconify-icon {
  flex: 0 0 auto;
  color: #1ba8e8;
  font-size: 1.7rem;
}

.hero-reel-badge strong {
  display: block;
  color: #0b1f4d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px) !important;
    gap: 64px !important;
  }

  .hero-headline {
    font-size: clamp(3rem, 5vw, 3.9rem) !important;
  }

}

@media (max-width: 820px) {
  .hero-section {
    padding: 78px 0 72px !important;
  }

  .hero-section .container {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 58px !important;
  }

  .hero-left-content {
    max-width: 620px;
  }

  .hero-right-media {
    justify-content: flex-start;
  }

  .hero-reel-stage {
    width: min(100%, 400px);
  }

}

@media (max-width: 600px) {
  .hero-section {
    padding: 62px 0 58px !important;
    background:
      radial-gradient(circle at 75% 48%, rgba(27, 168, 232, 0.12), transparent 28%),
      linear-gradient(155deg, #ffffff 0%, #f6fbfe 100%) !important;
  }

  .hero-section .container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .hero-grid {
    gap: 42px !important;
  }

  .hero-eyebrow-text {
    margin-bottom: 17px !important;
    font-size: 0.65rem !important;
  }

  .hero-eyebrow-text::before {
    width: 22px;
  }

  .hero-headline {
    font-size: clamp(2.45rem, 11.5vw, 3.15rem) !important;
    letter-spacing: -0.05em !important;
    line-height: 1.05 !important;
  }

  .hero-supporting-copy {
    margin-top: 20px !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
  }

  .hero-cta-buttons {
    display: grid !important;
    grid-template-columns: 1fr;
    margin-top: 28px !important;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-right-media {
    justify-content: center;
  }

  .hero-reel-stage {
    width: min(100%, 340px);
    padding: 8px;
  }

  .hero-video-wrapper-16-9 {
    border-radius: 26px !important;
  }

  .hero-reel-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .hero-reel-copy strong {
    font-size: 1.1rem;
  }

  .hero-reel-copy span {
    font-size: 0.74rem;
  }

  .video-play-button-overlay {
    width: 60px !important;
    height: 60px !important;
  }

  .hero-reel-badge {
    top: 32px;
    right: -5px;
    min-width: 158px;
    padding: 10px 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-reel-copy,
  .hero-reel-shade,
  .video-play-button-overlay {
    transition: none !important;
  }
}

/* ==========================================================================
   HOMEPAGE HERO: LARGE SCREEN OPTIMIZATIONS (>1400px)
   ========================================================================== */

/* Default styles for new elements (hidden on screens <= 1400px) */
.hero-trust-metrics,
.hero-benefit-checklist,
.hero-floating-card {
  display: none !important;
}

@media (min-width: 1401px) {
  /* Increase container width on large screens to fit the enhanced layout */
  .hero-section .container {
    max-width: 1360px !important;
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 640px) 450px !important;
    gap: 80px !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .hero-left-content {
    max-width: 640px !important;
  }

  /* 1. Trust Metrics Row */
  .hero-trust-metrics {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 32px 0 0 !important;
    padding: 24px 0;
    border-top: 1px solid rgba(11, 31, 77, 0.08);
    border-bottom: 1px solid rgba(11, 31, 77, 0.08);
    width: 100%;
  }

  .metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .metric-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b1f4d;
    line-height: 1.1;
  }

  .metric-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #60718c;
    font-weight: 500;
    line-height: 1.2;
  }

  /* Adjust spacing for CTA buttons */
  .hero-cta-buttons {
    margin-top: 32px !important;
  }

  /* 2. Benefit Checklist */
  .hero-benefit-checklist {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 28px 0 0 !important;
    width: 100%;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(27, 168, 232, 0.12);
    color: #1ba8e8;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
  }

  .benefit-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* 3. Wider Video Card (Increase width by ~18% and lock height) */
  .hero-reel-stage {
    width: 450px !important;
    padding: 0 !important;
  }

  .hero-video-wrapper-16-9 {
    width: 450px !important;
    height: 300px !important;
    aspect-ratio: auto !important;
    box-shadow: 0 42px 100px rgba(11, 31, 77, 0.28), 0 16px 40px rgba(27, 168, 232, 0.18) !important;
  }

  .hero-reel-stage::before {
    inset: 8% -8% 4%;
  }

  /* 4. Floating Trust Elements */
  .hero-floating-card {
    display: flex !important;
    position: absolute;
    z-index: 5;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #52617a;
    box-shadow: 0 16px 36px rgba(11, 31, 77, 0.1);
    backdrop-filter: blur(8px);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    line-height: 1.2;
    transition: transform 0.3s ease;
  }

  .hero-floating-card:hover {
    transform: scale(1.05);
  }

  .hero-floating-card iconify-icon {
    flex: 0 0 auto;
    font-size: 1.4rem;
  }

  .hero-floating-card strong {
    color: #0b1f4d;
    font-size: 0.95rem;
    font-weight: 750;
    display: block;
  }

  /* Position floating elements around the wider video card */
  .hero-floating-rating {
    top: 70px;
    left: -65px;
    animation: float 4.5s ease-in-out infinite alternate;
  }

  .hero-floating-rating iconify-icon {
    color: #fbbf24;
  }

  .hero-floating-tech {
    bottom: 50px;
    left: -55px;
    animation: float 5s ease-in-out infinite alternate-reverse;
  }

  .hero-floating-tech iconify-icon {
    color: #1ba8e8;
  }
}

/* ==========================================================================
   TREATMENT HERO: LARGE SCREEN OPTIMIZATIONS (>1400px)
   ========================================================================== */

/* Default styles for new elements (hidden on screens <= 1400px) */
.premium-hero-checklist,
.premium-hero-metrics,
.premium-hero-float {
  display: none !important;
}

@media (min-width: 1401px) {
  /* Increase container width on large screens to fit the enhanced layout */
  .premium-treatment-hero .container {
    max-width: 1360px !important;
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .premium-treatment-hero-grid {
    grid-template-columns: 0.58fr 0.42fr !important;
    gap: 60px !important;
    align-items: center !important;
  }

  .premium-treatment-hero-copy {
    max-width: 760px !important;
  }

  /* 1. Benefits Checklist (2-column grid) */
  .premium-hero-checklist {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
    width: 100%;
  }

  .checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .checklist-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(27, 168, 232, 0.12);
    color: #1ba8e8;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
  }

  .checklist-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* 2. Trust Metrics Row (statistic chips) */
  .premium-hero-metrics {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px !important;
    margin-bottom: 28px !important;
    width: 100%;
  }

  .metric-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 31, 77, 0.06);
    padding: 6px 14px;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(11, 31, 77, 0.03);
    backdrop-filter: blur(4px);
  }

  .metric-bullet {
    color: #1ba8e8;
    font-size: 1.1rem;
    line-height: 1;
  }

  .metric-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #52617a;
    font-weight: 600;
  }

  /* Adjust action buttons spacing */
  .premium-hero-actions {
    margin-top: 24px !important;
  }

  /* 3. Wider Video Card (Increase width by ~15-20% and lock height) */
  .premium-hero-media {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .premium-video-card.premium-hero-video {
    width: 530px !important;
    height: 300px !important;
    aspect-ratio: auto !important;
    box-shadow: 0 32px 80px rgba(11, 31, 77, 0.22), 0 12px 30px rgba(27, 168, 232, 0.12) !important;
  }

  /* 4. Floating Elements */
  .premium-hero-float {
    display: flex !important;
    position: absolute;
    z-index: 5;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: #52617a;
    box-shadow: 0 12px 28px rgba(11, 31, 77, 0.08);
    backdrop-filter: blur(8px);
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    line-height: 1.25;
    transition: transform 0.2s ease;
  }

  .premium-hero-float:hover {
    transform: scale(1.05);
  }

  .premium-hero-float iconify-icon {
    flex: 0 0 auto;
    font-size: 1.3rem;
    color: #1ba8e8;
  }

  .premium-hero-float strong {
    color: #0b1f4d;
    font-size: 0.9rem;
    font-weight: 750;
    display: block;
  }

  /* Position floating elements around the wider video card */
  .float-consultation {
    top: -24px;
    left: -20px;
    animation: float 4.5s ease-in-out infinite alternate;
  }

  .float-tech {
    bottom: -20px;
    right: -20px;
    animation: float 5s ease-in-out infinite alternate-reverse;
    animation-delay: 0.5s;
  }

  .float-team {
    bottom: 60px;
    left: -35px;
    animation: float 4.8s ease-in-out infinite alternate;
    animation-delay: 1s;
  }
}

/* Final authority for the homepage featured-video hero */
.home .hero-section {
  min-height: calc(100svh - var(--header-height)) !important;
  padding: clamp(72px, 7vw, 110px) 0 !important;
  display: flex !important;
  align-items: center !important;
}
.home .hero-section .container { max-width: 1480px !important; padding-right: clamp(28px, 4vw, 64px) !important; padding-left: clamp(28px, 4vw, 64px) !important; }
.home .hero-grid { grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.48fr) !important; gap: clamp(48px, 5vw, 82px) !important; align-items: center !important; }
.home .hero-left-content { max-width: 700px !important; }
.home .hero-headline { max-width: 700px !important; font-size: clamp(2.6rem, 3.6vw, 3.8rem) !important; line-height: 1.03 !important; }
.home .hero-right-media { width: 100% !important; max-width: 650px !important; justify-self: end !important; }
.home .hero-reel-stage { width: 100% !important; padding: 12px !important; border-radius: 34px !important; background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(239,248,255,.82)) !important; border: 1px solid rgba(255,255,255,.88) !important; box-shadow: 0 42px 110px rgba(11,31,77,.2), 0 14px 38px rgba(27,168,232,.12), inset 0 1px 0 #fff !important; }
.home .hero-video-wrapper-16-9 { width: 100% !important; height: auto !important; aspect-ratio: 16 / 10 !important; border-radius: 24px !important; box-shadow: 0 24px 58px rgba(5,18,45,.26) !important; }
.home .video-play-button-overlay { top: 45% !important; width: 94px !important; height: 94px !important; box-shadow: 0 20px 48px rgba(3,13,34,.32), 0 0 0 12px rgba(255,255,255,.13) !important; }
.home .hero-widescreen-video { object-position: center 34% !important; }
.home .hero-reel-shade { inset: 0 !important; background: linear-gradient(135deg, rgba(3,13,34,.04), rgba(3,13,34,.16)) !important; }
.home .hero-reel-badge {
  top: 12px !important;
  right: 18px !important;
  width: 126px !important;
  height: 126px !important;
  min-width: 126px !important;
  padding: 15px !important;
  display: grid !important;
  place-content: center !important;
  justify-items: center !important;
  gap: 3px !important;
  border: 2px solid rgba(27,168,232,.42) !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 18px 44px rgba(11,31,77,.2), inset 0 0 0 5px rgba(223,246,255,.92) !important;
  text-align: center !important;
  transform: rotate(3deg);
}
.home .hero-reel-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(19,142,197,.5);
  border-radius: 50%;
  pointer-events: none;
}
.home .hero-reel-badge iconify-icon { position: relative; z-index: 1; font-size: 1.55rem !important; }
.home .hero-reel-badge > span { position: relative; z-index: 1; display: grid; justify-items: center; line-height: 1.05; }
.home .hero-reel-badge strong { font-size: 1.08rem !important; letter-spacing: .08em; }
.home .hero-reel-badge b { color: #0b1f4d; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.home .hero-reel-badge small { margin-top: 5px; color: #60718c; font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.home .hero-floating-card { display: none !important; }

@media (min-width: 1101px) and (max-width: 1400px) {
  .home .hero-grid { grid-template-columns: minmax(0, .5fr) minmax(520px, .5fr) !important; gap: 48px !important; }
  .home .hero-headline { font-size: clamp(3.45rem, 4.6vw, 4.5rem) !important; }
  .home .hero-right-media { max-width: 600px !important; }
}
@media (max-width: 1100px) {
  .home .hero-section { min-height: auto !important; padding: 72px 0 !important; }
  .home .hero-grid { grid-template-columns: 1fr !important; gap: 52px !important; }
  .home .hero-left-content { max-width: 760px !important; margin: 0 auto !important; text-align: center !important; }
  .home .hero-right-media { width: min(100%, 720px) !important; max-width: 720px !important; margin: 0 auto !important; justify-self: center !important; }
}
@media (max-width: 767px) {
  .home .hero-section { padding: 28px 0 48px !important; }
  .home .hero-section .container { padding-right: 18px !important; padding-left: 18px !important; }
  .home .hero-grid { gap: 38px !important; }
  .home .hero-left-content { text-align: left !important; }
  .home .hero-headline { font-size: clamp(2.35rem, 11vw, 3.05rem) !important; }
  .home .hero-reel-stage { padding: 7px !important; border-radius: 24px !important; }
  .home .hero-video-wrapper-16-9 { aspect-ratio: 16 / 10 !important; border-radius: 18px !important; }
  .home .video-play-button-overlay { width: 70px !important; height: 70px !important; }
  .home .hero-reel-badge {
    top: 54px !important;
    right: 13px !important;
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    padding: 10px !important;
  }
  .home .hero-reel-badge::before { inset: 6px; }
  .home .hero-reel-badge iconify-icon { font-size: 1.05rem !important; }
  .home .hero-reel-badge strong { font-size: .78rem !important; }
  .home .hero-reel-badge b { font-size: .5rem; }
  .home .hero-reel-badge small { margin-top: 3px; font-size: .4rem; }
  .hero-video-feature-label { min-width: 0; overflow: hidden; }
  .hero-video-feature-label > span:last-child { min-width: 0; }
  .hero-video-feature-label strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}



/* ==========================================================================
   REDESIGNED CONTACT PAGE STYLES
   ========================================================================== */
/* Premium Redesigned Contact Page Styles */
    .contact-page {
      background-color: #f8fafc;
    }
    
    .contact-page .page-hero {
      background: linear-gradient(rgba(11, 31, 77, 0.75), rgba(11, 31, 77, 0.75)), url('../images/ContactsectionHeaderBG.png') no-repeat center center;
      background-size: cover;
      padding: clamp(140px, 12vw, 180px) 0 clamp(80px, 8vw, 110px);
      text-align: center;
      color: #ffffff;
      position: relative;
    }
    
    .contact-page .page-hero h1 {
      color: #ffffff;
      font-size: clamp(2.25rem, 5vw, 3.25rem);
      font-weight: 800;
      margin-bottom: 16px;
      font-family: var(--font-headings);
      letter-spacing: -0.02em;
    }
    
    .contact-page .breadcrumbs {
      display: flex;
      justify-content: center;
      gap: 8px;
      font-size: 0.95rem;
      color: var(--primary);
      font-weight: 600;
    }
    
    .contact-page .breadcrumbs a {
      color: #cbd5e1;
      transition: color var(--transition-fast);
    }
    
    .contact-page .breadcrumbs a:hover {
      color: var(--primary);
    }
    
    /* Layout styling */
    .contact-section {
      padding: clamp(80px, 8vw, 120px) 0;
      position: relative;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 48fr 52fr;
      gap: clamp(40px, 5vw, 80px);
      align-items: start;
    }
    
    /* Left side styles */
    .contact-info-column {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .contact-badge {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      background: rgba(27, 168, 232, 0.08);
      color: var(--primary);
      border: 1px solid rgba(27, 168, 232, 0.15);
      padding: 6px 16px;
      border-radius: 99px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: 'Outfit', sans-serif;
    }
    
    .contact-headline {
      font-family: var(--font-headings);
      font-size: clamp(2.25rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--secondary);
      line-height: 1.2;
      margin: 0;
      letter-spacing: -0.01em;
    }
    
    .contact-subtext {
      font-family: var(--font-body);
      font-size: 1.1rem;
      color: var(--muted);
      line-height: 1.65;
      margin: 0;
    }
    
    /* Contact details cards */
    .contact-details-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .contact-detail-card {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    }
    
    .contact-detail-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(27, 168, 232, 0.3);
    }
    
    .contact-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(27, 168, 232, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }
    
    .contact-card-icon svg {
      width: 24px;
      height: 24px;
    }
    
    .contact-card-info h4 {
      font-family: var(--font-headings);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--secondary);
      margin: 0 0 6px 0;
    }
    
    .contact-card-info p {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }
    
    .contact-card-info a {
      color: var(--primary);
      font-weight: 600;
      transition: color var(--transition-fast);
    }
    
    .contact-card-info a:hover {
      color: var(--secondary);
    }
    
    /* Trust Statistics Cards */
    .trust-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    
    .stat-chip {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 16px 12px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 4px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-normal);
    }
    
    .stat-chip:hover {
      transform: translateY(-2px);
      border-color: rgba(20, 198, 198, 0.3);
      box-shadow: var(--shadow-md);
    }
    
    .stat-number {
      font-family: var(--font-headings);
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--primary);
    }
    
    .stat-label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    
    /* Google Rating Card */
    .google-rating-card {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-normal);
    }
    
    .google-rating-card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(251, 191, 36, 0.3);
    }
    
    .rating-badge {
      background: rgba(251, 191, 36, 0.08);
      color: #f59e0b;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    
    .rating-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    
    .stars {
      color: #fbbf24;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 2px;
    }
    
    .rating-text {
      font-family: var(--font-headings);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--secondary);
      margin: 0;
    }
    
    .rating-subtext {
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: var(--muted);
      margin: 0;
    }
    
    /* WhatsApp Green Card */
    .whatsapp-cta-card {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: #ffffff;
      border-radius: 24px;
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      box-shadow: 0 12px 30px rgba(18, 140, 126, 0.25);
      transition: transform var(--transition-normal), box-shadow var(--transition-normal);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .whatsapp-cta-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 35px rgba(18, 140, 126, 0.35);
    }
    
    .whatsapp-card-text {
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-width: 65%;
    }
    
    .whatsapp-card-text h4 {
      font-family: var(--font-headings);
      font-size: 1.25rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }
    
    .whatsapp-card-text p {
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
      margin: 0;
    }
    
    .btn-whatsapp-cta {
      background: #ffffff;
      color: #128C7E;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 99px;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all var(--transition-fast);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: none;
      text-decoration: none;
    }
    
    .btn-whatsapp-cta:hover {
      background: var(--secondary);
      color: #ffffff;
      transform: scale(1.04);
      box-shadow: 0 8px 20px rgba(11, 31, 77, 0.2);
    }
    
    /* Right Side Styles - Floating Booking Card */
    .consult-sidebar {
      position: sticky;
      top: 140px;
      z-index: 10;
    }
    
    .consult-card {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: clamp(28px, 4vw, 40px);
      box-shadow: var(--shadow-xl);
      box-sizing: border-box;
      transition: box-shadow var(--transition-normal);
    }
    
    .consult-card:hover {
      box-shadow: 0 30px 60px -10px rgba(11, 31, 77, 0.15);
    }
    
    /* Avatar overlapping display */
    .doctor-avatars-row {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .avatar-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 3px solid #ffffff;
      overflow: hidden;
      margin-right: -14px;
      background: #f1f5f9;
      box-shadow: 0 4px 10px rgba(11, 31, 77, 0.12);
      transition: transform var(--transition-fast);
    }
    
    .avatar-circle:hover {
      transform: translateY(-4px) scale(1.08);
      z-index: 5;
    }
    
    .avatar-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .consult-card-header {
      text-align: center;
      margin-bottom: 28px;
      padding: 0;
      background: none;
      border: none;
    }
    
    .consult-card-header h3 {
      font-family: var(--font-headings);
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--secondary);
      margin: 0 0 6px 0;
      letter-spacing: -0.015em;
    }
    
    .consult-card-header p {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--muted);
      margin: 0;
    }
    
    .consult-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }
    
    .form-label {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--secondary);
    }
    
    .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid var(--border-light);
      background-color: #f8fafc;
      border-radius: 14px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text);
      transition: all var(--transition-fast);
      box-sizing: border-box;
    }
    
    .form-control:focus {
      background-color: #ffffff;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(27, 168, 232, 0.12);
      outline: none;
    }
    
    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2364748b%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 18px;
      padding-right: 48px;
      cursor: pointer;
    }
    
    .form-submit-btn {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #ffffff;
      border: none;
      border-radius: 14px;
      padding: 16px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(27, 168, 232, 0.2);
      transition: all var(--transition-normal);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .form-submit-btn:hover {
      box-shadow: 0 12px 28px rgba(27, 168, 232, 0.35);
      transform: translateY(-2px);
    }
    
    .form-submit-btn:active {
      transform: translateY(0);
    }
    
    .booking-badges-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      border-top: 1px solid var(--border-light);
      padding-top: 20px;
    }
    
    .booking-badge-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
    }
    
    .booking-badge-item svg {
      width: 16px;
      height: 16px;
      color: var(--success);
    }
    
    /* Bottom Section Map & Details */
    .maps-section {
      padding: clamp(60px, 6vw, 100px) 0;
      background: #ffffff;
      border-top: 1px solid var(--border-light);
    }
    
    .maps-grid {
      display: grid;
      grid-template-columns: 58fr 42fr;
      gap: 48px;
      align-items: stretch;
    }
    
    .map-frame-wrapper {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-md);
      height: 480px;
    }
    
    .map-frame-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    
    .map-details-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--border-light);
      background: #f8fafc;
      border-radius: 24px;
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }
    
    .map-details-header h3 {
      font-family: var(--font-headings);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--secondary);
      margin: 0 0 16px 0;
    }
    
    .map-details-address {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    
    .btn-directions {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--secondary);
      color: #ffffff;
      font-family: var(--font-body);
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 99px;
      font-size: 0.95rem;
      transition: all var(--transition-fast);
      text-decoration: none;
      align-self: flex-start;
      margin-bottom: 32px;
      box-shadow: var(--shadow-sm);
    }
    
    .btn-directions:hover {
      background: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .map-sub-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
      border-top: 1px solid var(--border-light);
      padding-top: 24px;
    }
    
    .map-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    
    .map-detail-icon {
      color: var(--primary);
      margin-top: 2px;
    }
    
    .map-detail-icon svg {
      width: 20px;
      height: 20px;
    }
    
    .map-detail-text h5 {
      font-family: var(--font-headings);
      font-size: 0.9rem;
      font-weight: 750;
      color: var(--secondary);
      margin: 0 0 4px 0;
    }
    
    .map-detail-text p {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.4;
      margin: 0;
    }
    
    .contact-page .footer-map {
      display: none !important;
    }
    
    /* Responsive Media Queries */
    @media (max-width: 968px) {
      .contact-page .page-hero {
        background: linear-gradient(rgba(11, 31, 77, 0.75), rgba(11, 31, 77, 0.75)), url('../images/ContactsectionHeaderBG_mobile.png') no-repeat center center;
        background-size: cover;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
      }
      
      .consult-sidebar {
        position: static;
        order: -1; /* Place form on top on mobile */
      }
      
      .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .whatsapp-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      
      .whatsapp-card-text {
        max-width: 100%;
      }
      
      .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
      }
      
      .maps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      
      .map-frame-wrapper {
        height: 350px;
      }
    }
    
    @media (max-width: 480px) {
      .contact-details-grid {
        grid-template-columns: 1fr;
      }
      
      .trust-stats-grid {
        grid-template-columns: 1fr;
      }
    }

/* ==========================================================================
   REDESIGNED DOCTOR PAGES STYLES
   ========================================================================== */
.doctor-page .page-hero {
  background: linear-gradient(rgba(11, 31, 77, 0.75), rgba(11, 31, 77, 0.75)), url('../images/DoctorPageHeaderBG_dektop.png') no-repeat center center;
  background-size: cover;
}

@media (max-width: 968px) {
  .doctor-page .page-hero {
    background: linear-gradient(rgba(11, 31, 77, 0.75), rgba(11, 31, 77, 0.75)), url('../images/DoctorPageHeaderBG_mobile.png') no-repeat center center;
    background-size: cover;
  }
}

/* ==========================================================================
   REDESIGNED RESULTS PAGE STYLES
   ========================================================================== */
.results-page .page-hero,
.results-page .results-hero {
  background: url('../images/ResultsHero_Desktop.png') no-repeat center center !important;
  background-size: 100% 100% !important;
}

@media (max-width: 968px) {
  .results-page .page-hero,
  .results-page .results-hero {
    background: url('../images/ResultsHero_mobile.png') no-repeat center center !important;
    background-size: 100% 100% !important;
  }
}
