/* Hessa Clinic Design Tokens */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:ital,wght@0,200;0,300;0,400;0,500;1,300&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --hessa-primary: #648c7d;
  --hessa-primary-dark: #2f4d42;
  --hessa-primary-light: #8baea1;
  --hessa-navy: #1e293b;
  --hessa-accent: #648c7d;
  --hessa-gold: #febf60;
  --hessa-gold-hover: #e5a745;

  /* Pastel Green Background Palette */
  --hessa-pink-base: #8ba591;
  --hessa-pink-light: #f4f7f5;
  --hessa-pink-dark: #648c7d;

  --bs-light: #f4f7f5;
  --bs-light-rgb: 244, 247, 245;

  --bs-primary: #febf60 !important;
  --bs-primary-rgb: 254, 191, 96 !important;
  --bs-secondary: #648c7d !important;
  --bs-secondary-rgb: 100, 140, 125 !important;
  --bs-body-color: #2f4d42;
  --bs-heading-color: #2f4d42;
  --bs-body-font-family: var(--font-sans);

  /* Typography Tokens */
  --font-serif: 'Cormorant Garamond', 'The Seasons', Georgia, serif;
  --font-sans: 'Montserrat', 'Poppins', sans-serif;
  --font-family-title: 'Cormorant Garamond', 'The Seasons', Georgia, serif !important;
  --font-family-base: 'Montserrat', 'Poppins', sans-serif !important;
}

/* Global Typography Enforcement */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.title, .section-head .title, .dz-title, .dz-flex-head .title,
.hessa-service-title, .doctor-card-name, .hero-content .title {
  font-family: var(--font-serif) !important;
}

body, p, li, a, span, button, input, select, textarea,
.list-check-try li, .dz-flex-info .text, .hero-description, .usp-text {
  font-family: var(--font-sans) !important;
}

/* Override theme skin color rules */
html[data-theme-color], html[data-theme-color=skin-3] {
  --bs-primary: #febf60 !important;
  --bs-primary-rgb: 254, 191, 96 !important;
  --bs-secondary: #648c7d !important;
  --bs-secondary-rgb: 100, 140, 125 !important;
}

.btn-icon .right-icon,
.btn-icon .right-icon i,
.btn-icon .right-icon svg {
  color: #2f4d42 !important;
}

.btn-secondary,
html[data-theme-color=skin-3] .btn-secondary,
button.btn-secondary,
a.btn-secondary {
  background: linear-gradient(135deg, #f5d4cf 0%, #fdf0ee 100%) !important;
  border: none !important;
  color: #2f4d42 !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(245, 212, 207, 0.45) !important;
}

.btn-secondary {
  color: #2f4d42 !important;
  font-weight: 600 !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background: linear-gradient(135deg, #eec0b9 0%, #fae2df 100%) !important;
  border: none !important;
  color: #1b382d !important;
  box-shadow: 0 6px 20px rgba(238, 192, 185, 0.55) !important;
  transform: translateY(-2px);
}

.btn-primary,
html[data-theme-color=skin-3] .btn-primary,
button.btn-primary,
a.btn-primary {
  background: #febf60 !important;
  border: 1px solid #febf60 !important;
  color: #193329 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(254, 191, 96, 0.3) !important;
}

.btn-primary i,
.btn-primary svg,
a.btn-primary i,
a.btn-primary svg {
  color: #193329 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
html[data-theme-color=skin-3] .btn-primary:hover,
html[data-theme-color=skin-3] .btn-primary:focus,
html[data-theme-color=skin-3] .btn-primary:active {
  background: #e5a745 !important;
  border-color: #e5a745 !important;
  color: #142a22 !important;
  box-shadow: 0 6px 20px rgba(229, 167, 69, 0.45) !important;
  transform: translateY(-2px);
}

.text-gradient {
  background: linear-gradient(135deg, #2f4d42 0%, #febf60 60%, #648c7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
}

/* Set default font for body text */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  color: #334155;
  background-color: #ffffff;
}

.page-content {
  background: #ffffff;
}

.text-muted, .text-secondary {
  color: #64748b !important;
}

.section-head p,
.section-head .sub-title {
  color: #475569;
}

/* Floating Quick Bar & Metrics Grid */
.hessa-service-quick-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 28px;
  border: 1px solid rgba(100, 140, 125, 0.16);
  box-shadow: 0 12px 36px rgba(25, 51, 41, 0.08);
}
.hessa-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.hessa-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px;
}
.hessa-quick-item:not(:last-child) {
  border-right: 1px solid rgba(100, 140, 125, 0.15);
}
.hessa-quick-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(100, 140, 125, 0.12);
  color: #648c7d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.hessa-quick-icon i {
  color: #648c7d !important;
  font-size: 18px !important;
  line-height: 1 !important;
}
.hessa-quick-content {
  display: flex;
  flex-direction: column;
}
.hessa-quick-content .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #648c7d;
  margin-bottom: 2px;
}
.hessa-quick-content .value {
  font-size: 13.5px;
  font-weight: 500;
  color: #193329;
  line-height: 1.3;
}
.hessa-quick-content .value strong {
  font-weight: 700;
  color: #193329;
}

@media (max-width: 991px) {
  .hessa-quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hessa-quick-item:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 576px) {
  .hessa-quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hessa-quick-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(100, 140, 125, 0.1);
    padding-bottom: 10px;
  }
}

/* Hero CTA Buttons Polish */
.hero-content .btn {
  padding: 12px 24px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.hero-content .btn .right-icon {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 10px !important;
  flex-shrink: 0 !important;
}
.hero-content .btn-primary .right-icon {
  background: rgba(25, 51, 41, 0.12) !important;
}
.hero-content .btn-secondary .right-icon {
  background: rgba(47, 77, 66, 0.08) !important;
}


.content-bx.style-2, .content-bx.style-2.secondary {
  background: linear-gradient(90deg, rgba(100, 140, 125, 0.3) 0%, rgba(100, 140, 125, 0.1) 60%, transparent 100%) !important;
  color: #2f4d42 !important;
  border-left: 3px solid rgba(100, 140, 125, 0.5) !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

/* Set 'The Seasons' font for all headings on light backgrounds */
h1, h2, h3, h4, h5, h6, .title, .section-head .title, .dz-title {
  font-family: var(--font-serif) !important;
}

body h1, body h2, body h3, body h4, body h5, body h6,
body .title, body .section-head .title, body .dz-title,
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-light .title, .bg-light .section-head .title, .bg-light .dz-title {
  color: #2f4d42 !important;
}

/* Dark Backgrounds Typography Overrides */
.hessa-tech-strip,
.hessa-dark-section,
.hessa-hero-dark-accent,
.site-footer.hessa-footer-emerald {
  color: #bed6cb !important;
}

.hessa-tech-strip h1, .hessa-tech-strip h2, .hessa-tech-strip h3, .hessa-tech-strip h4, .hessa-tech-strip h5, .hessa-tech-strip h6,
.hessa-tech-strip .title, .hessa-tech-strip .section-head .title,
.hessa-dark-section h1, .hessa-dark-section h2, .hessa-dark-section h3, .hessa-dark-section h4, .hessa-dark-section h5, .hessa-dark-section h6,
.hessa-dark-section .title, .hessa-dark-section .section-head .title,
.hessa-hero-dark-accent h1, .hessa-hero-dark-accent h2, .hessa-hero-dark-accent h3, .hessa-hero-dark-accent .title,
.site-footer.hessa-footer-emerald h1, .site-footer.hessa-footer-emerald h2, .site-footer.hessa-footer-emerald h3, .site-footer.hessa-footer-emerald h4, .site-footer.hessa-footer-emerald h5, .site-footer.hessa-footer-emerald .footer-widget-title {
  color: #ffffff !important;
}

.hessa-tech-strip p, .hessa-tech-strip span:not(.btn *), .hessa-tech-strip div,
.hessa-dark-section p, .hessa-dark-section span:not(.btn *), .hessa-dark-section div,
.hessa-hero-dark-accent p, .hessa-hero-dark-accent span:not(.btn *),
.site-footer.hessa-footer-emerald p, .site-footer.hessa-footer-emerald span:not(.btn *), .site-footer.hessa-footer-emerald a:not(.btn):not(.btn-book-footer):not(.btn-primary) {
  color: #bed6cb !important;
}

.hessa-tech-strip .eyebrow-badge,
.hessa-dark-section .eyebrow-badge,
.hessa-hero-dark-accent .eyebrow-badge {
  color: #febf60 !important;
}

.hessa-tech-strip .text-gradient,
.hessa-dark-section .text-gradient,
.hessa-hero-dark-accent .text-gradient {
  background: linear-gradient(135deg, #ffe2ab 0%, #febf60 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Accordion flex item tab & title overrides */
.dz-flex-head .title,
.dz-flex-item .dz-flex-head .title,
.dz-flex-item:not(.active) .dz-flex-head .title {
  color: #ffffff !important;
}

.dz-flex-item:not(.active) .dz-flex-head {
  background-color: var(--hessa-primary) !important;
}

.eyebrow-badge {
  display: inline-block;
  background-color: rgba(254, 191, 96, 0.2) !important;
  color: #8c5b00 !important;
  border: 1px solid rgba(254, 191, 96, 0.6) !important;
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* Subtle Animated Headline Divider */
.headline-divider {
  display: block;
  height: 2px;
  width: 30%;
  max-width: 140px;
  background-color: #dfa199;
  border-radius: 2px;
  margin-top: 12px;
  margin-bottom: 18px;
  transform-origin: left center;
  animation: expandDividerLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.text-center .headline-divider,
.section-head.text-center .headline-divider,
.section-head.style-3 .headline-divider {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center center;
  animation: expandDividerCenter 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes expandDividerCenter {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes expandDividerLeft {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero-banner.style-1 .title {
  font-size: 72px !important;
  line-height: 1.15 !important;
}

@media (max-width: 1199px) {
  .hero-banner.style-1 .title {
    font-size: 54px !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 991px) {
  .hero-banner.style-1 .title {
    font-size: 42px !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
  }
  .hero-thumbnail {
    margin-top: 30px !important;
    padding-top: 0 !important;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-banner.style-1 .title {
    font-size: 34px !important;
    line-height: 1.22 !important;
    margin-bottom: 16px !important;
  }
  .hero-description {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  .hero-usps {
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .hero-banner.style-1 .title {
    font-size: 28px !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }
}

.hero-description {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: #2f4d42 !important;
  font-weight: 500 !important;
  max-width: 520px;
  letter-spacing: 0.1px;
}

/* Hero Horizontal USPs */
.hero-usps {
  margin-top: 5px;
}

.usp-item {
  display: inline-flex;
  align-items: center;
}

.usp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(100, 140, 125, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #648c7d;
  font-size: 13px;
  flex-shrink: 0;
}

.usp-text {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2f4d42 !important;
  letter-spacing: 0.2px;
}

#masonry.row {
  display: flex !important;
  flex-wrap: wrap !important;
}

#masonry .card-container {
  display: flex !important;
  flex-direction: column !important;
}

#masonry .card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  min-height: 260px !important;
}

#masonry .card > div:first-child {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

#masonry .card h4,
#masonry .card h4 a {
  font-family: var(--font-serif) !important;
  color: #2f4d42 !important;
  font-size: 22px !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 8px !important;
}

#masonry .card p {
  color: #334155 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.card h3.title,
.card h3.title a {
  font-family: var(--font-serif) !important;
  color: #2f4d42 !important;
  font-size: 22px !important;
}

.card p.text {
  color: #334155 !important;
  font-size: 14px !important;
}

/* Services Grid & Filter Styling Harmonization */
.site-filters .btn {
  border-radius: 50px !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 8px 20px !important;
  color: #2f4d42 !important;
  background-color: rgba(100, 140, 125, 0.15) !important;
  border: 1px solid rgba(100, 140, 125, 0.3) !important;
  transition: all 0.3s ease !important;
}

.site-filters .btn.active,
.site-filters .btn:hover {
  background-color: #648c7d !important;
  color: #ffffff !important;
  border-color: #648c7d !important;
}

.card.card-service {
  background: #ffffff !important;
  border: 1px solid rgba(100, 140, 125, 0.2) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(47, 77, 66, 0.05) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card.card-service:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(47, 77, 66, 0.12) !important;
}

#masonry .card .btn-outline-primary,
.card.card-service .btn-outline-primary,
.card-container .card a.btn {
  background: linear-gradient(135deg, #ffe2ab 0%, #fff4dc 100%) !important;
  border: none !important;
  color: #2f4d42 !important;
  border-radius: 50px !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  transition: all 0.3s ease !important;
}

#masonry .card .btn-outline-primary:hover,
.card.card-service .btn-outline-primary:hover,
.card-container .card a.btn:hover {
  background: linear-gradient(135deg, #ffd68a 0%, #ffebbe 100%) !important;
  border: none !important;
  color: #1b382d !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 214, 138, 0.45) !important;
}

/* Elegant Doctor Card Divider Refinement */
.card .card-divider,
.card-team .card-divider,
.card-service .card-divider,
.card-divider,
.dz-team-card .divider,
.dz-card .divider {
  width: 48px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #648c7d 0%, #febf60 100%) !important;
  border-radius: 2px !important;
  margin: 12px auto 16px auto !important;
  border: none !important;
}

.dz-team-card .dz-content .title,
.dz-card .dz-title {
  font-family: var(--font-serif) !important;
  color: #2f4d42 !important;
}

/* Testimonial Section Center Alignment Override */
.testimonial-1 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.testimonial-1 .testimonial-detail {
  padding: 30px 0 !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.testimonial-1 .testimonial-detail::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.testimonial-1 .testimonial-detail p {
  text-align: center !important;
}

.testimonial-1 .testimonial-info {
  text-align: center !important;
}

/* Accordion Appointment Button Accent Styling */
.dz-flex-inner .dz-media .btn,
.dz-flex-inner .dz-media .btn.btn-white {
  background: linear-gradient(135deg, #ffe2ab 0%, #fff4dc 100%) !important;
  color: #2f4d42 !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 14px rgba(254, 226, 171, 0.45) !important;
  transition: all 0.3s ease !important;
}

.dz-flex-inner .dz-media .btn:hover,
.dz-flex-inner .dz-media .btn.btn-white:hover {
  background: linear-gradient(135deg, #ffd68a 0%, #ffebbe 100%) !important;
  border: none !important;
  color: #1b382d !important;
  box-shadow: 0 6px 20px rgba(255, 214, 138, 0.55) !important;
  transform: translateY(-2px) !important;
}

.dz-flex-inner .dz-media .btn i,
.dz-flex-inner .dz-media .btn.btn-white i {
  color: #2f4d42 !important;
}

/* Primary Marquee Ticker Typography */
.dz-marquee.style-1 .marquee-list .item {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  letter-spacing: 0.5px !important;
  font-family: var(--font-sans) !important;
  opacity: 1 !important;
}

/* View All Services Separator Button - Soft Pink Secondary Style */
.dz-separator.style-1::after {
  border-bottom: 1px solid #dfa199 !important;
}

.dz-separator.style-1 .btn,
.dz-separator.style-1 .btn.separator-badge {
  background-color: #dfa199 !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 12px 32px !important;
  border-radius: 50px !important;
  font-family: var(--font-sans) !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(223, 161, 153, 0.35) !important;
  transition: all 0.3s ease !important;
}

.dz-separator.style-1 .btn:hover,
.dz-separator.style-1 .btn:focus,
.dz-separator.style-1 .btn:active,
.dz-separator.style-1 .btn.separator-badge:hover {
  background-color: #cb867d !important;
  border: none !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203, 134, 125, 0.45) !important;
}

/* FAQ Accordion Styling Enhancements */
.dz-accordion.style-2 .accordion-item {
  background: transparent !important;
  border-bottom: 1px solid rgba(100, 140, 125, 0.2) !important;
}

.dz-accordion.style-2 .accordion-button {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  color: #2f4d42 !important;
  padding: 20px 0 !important;
  background: transparent !important;
}

.dz-accordion.style-2 .accordion-button:not(.collapsed) {
  color: #648c7d !important;
  font-weight: 700 !important;
}

.dz-accordion.style-2 .accordion-body p {
  color: #475569 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  padding-bottom: 15px;
}

/* =========================================================
   Hessa Hero Dark Accent Banner (Gradient & Line Pattern)
   ========================================================= */
.hessa-hero-dark-accent {
  position: relative;
  background: linear-gradient(180deg, #142a22 0%, #193329 45%, #254438 80%, #2f4d42 100%) !important;
  color: #ffffff !important;
  overflow: hidden;
  padding: 175px 0 95px !important;
}

.hessa-hero-dark-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(100, 140, 125, 0.25) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 24px);
  pointer-events: none;
  z-index: 1;
}

.hessa-hero-dark-accent .container {
  position: relative;
  z-index: 2;
}

.hessa-hero-dark-accent h1 {
  font-family: var(--font-serif) !important;
  color: #ffffff !important;
  font-size: 50px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  margin-top: 12px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hessa-hero-desc {
  font-size: 16px !important;
  color: #bed6cb !important;
  line-height: 1.65 !important;
  max-width: 720px;
  margin: 8px 0 20px;
}

@media (max-width: 767px) {
  .hessa-hero-dark-accent {
    padding: 135px 0 60px !important;
  }
  .hessa-hero-dark-accent h1 {
    font-size: 32px !important;
  }
  .hessa-hero-desc {
    font-size: 14.5px !important;
  }
}

.hessa-hero-dark-accent .eyebrow-badge {
  background: rgba(254, 191, 96, 0.15) !important;
  color: #febf60 !important;
  border: 1px solid rgba(254, 191, 96, 0.35) !important;
}

.hessa-hero-dark-accent .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hessa-hero-dark-accent .breadcrumb-item,
.hessa-hero-dark-accent .breadcrumb-item a {
  color: #bed6cb !important;
  font-size: 13.5px !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hessa-hero-dark-accent .breadcrumb-item.active {
  color: #febf60 !important;
  font-weight: 600;
}

.hessa-hero-dark-accent .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(190, 214, 203, 0.45) !important;
}

/* =========================================================
   Doctor Leadership Cards Component
   ========================================================= */
.doctor-leadership-grid-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.doctor-leadership-grid-wrapper.doctor-grid-wide {
  max-width: 1480px;
  margin: 0 auto;
}

.doctor-container-wide {
  max-width: 1520px !important;
}

.doctor-leadership-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(100, 140, 125, 0.16);
  box-shadow: 0 10px 30px rgba(47, 77, 66, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.doctor-leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(47, 77, 66, 0.12);
  border-color: rgba(100, 140, 125, 0.35);
}

.doctor-card-media {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #e9efe9;
}

.doctor-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

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

.doctor-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #2f4d42 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(100, 140, 125, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doctor-card-badge i {
  color: #febf60 !important;
  font-size: 13px !important;
}

/* =========================================================
   Doctor Summary Roster Cards (About Page Summary Section)
   ========================================================= */
.doctor-summary-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(100, 140, 125, 0.16);
  box-shadow: 0 8px 24px rgba(47, 77, 66, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doctor-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(47, 77, 66, 0.1);
  border-color: rgba(100, 140, 125, 0.35);
}

.doctor-summary-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #e9efe9;
}

.doctor-summary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

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

.doctor-summary-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-summary-name {
  font-family: var(--font-serif) !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  color: #2f4d42 !important;
  line-height: 1.3 !important;
  margin: 6px 0 10px;
}

.doctor-summary-name a {
  color: #2f4d42 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.doctor-summary-name a:hover {
  color: #648c7d !important;
}

.doctor-summary-bio {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
  margin-bottom: 14px;
}

.doctor-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-role-tag {
  display: inline-block;
  color: #2f4d42 !important;
  background: #eaf1ed !important;
  border: 1px solid rgba(100, 140, 125, 0.25);
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}

.doctor-name {
  font-family: var(--font-serif) !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #2f4d42 !important;
  line-height: 1.3 !important;
  margin-bottom: 12px;
}

.doctor-name a {
  color: #2f4d42 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.doctor-name a:hover {
  color: #648c7d !important;
}

.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.credential-chip {
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #43534b !important;
  background: #f4f7f5 !important;
  border: 1px solid rgba(100, 140, 125, 0.18);
  padding: 3px 10px;
  border-radius: 4px;
}

.doctor-bio-excerpt {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #4b5563 !important;
  margin-bottom: 20px;
}

.doctor-focus-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #648c7d !important;
  margin-bottom: 8px;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.specialty-tag {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #2f4d42 !important;
  background: #ffffff !important;
  border: 1px solid rgba(100, 140, 125, 0.25);
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.doctor-leadership-card:hover .specialty-tag {
  border-color: rgba(100, 140, 125, 0.45);
  background: #f6f9f7 !important;
}

.doctor-card-actions {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(100, 140, 125, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.doctor-card-actions .btn-book {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, #ffe2ab 0%, #fff4dc 100%) !important;
  color: #2f4d42 !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 11px 18px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(254, 226, 171, 0.45) !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.doctor-card-actions .btn-book:hover {
  background: linear-gradient(135deg, #ffd68a 0%, #ffebbe 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 138, 0.55) !important;
  color: #1b382d !important;
}

.doctor-card-actions .btn-profile {
  color: #2f4d42 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.doctor-card-actions .btn-profile:hover {
  color: #648c7d !important;
  background: #f0f5f2;
}

.doctor-card-actions .btn-profile i {
  transition: transform 0.2s ease;
  font-size: 12px;
}

.doctor-card-actions .btn-profile:hover i {
  transform: translateX(3px);
}

/* =========================================================
   Why Hessa Clinic / The Hessa Difference Component
   ========================================================= */
.why-hessa-section {
  position: relative;
  background: #ffffff;
  padding: 90px 0;
}

.why-hessa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}

@media (max-width: 767px) {
  .why-hessa-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.why-hessa-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #f8faf9;
  border: 1px solid rgba(100, 140, 125, 0.14);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.why-hessa-card:hover {
  background: #ffffff;
  border-color: rgba(100, 140, 125, 0.35);
  box-shadow: 0 8px 22px rgba(47, 77, 66, 0.08);
  transform: translateY(-2px);
}

.why-hessa-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(100, 140, 125, 0.12);
  color: #2f4d42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.why-hessa-card:hover .why-hessa-icon {
  background: #febf60;
  color: #2f4d42;
  transform: scale(1.05);
}

.why-hessa-content h4 {
  font-family: var(--font-sans) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #2f4d42 !important;
  margin-bottom: 4px;
}

.why-hessa-content p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #556960 !important;
  margin-bottom: 0;
}

.why-hessa-media-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(47, 77, 66, 0.12);
}

.why-hessa-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.why-hessa-media-wrapper:hover .why-hessa-main-img {
  transform: scale(1.03);
}

.why-hessa-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(100, 140, 125, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.why-hessa-float-badge.top-left {
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
}

.why-hessa-float-badge.top-left i {
  color: #648c7d;
  font-size: 14px;
}

.why-hessa-float-badge.top-left span {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #2f4d42 !important;
}

.why-hessa-float-badge.bottom-card {
  bottom: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .why-hessa-float-badge.bottom-card {
    left: auto;
    width: 320px;
  }
}

.why-hessa-stars {
  color: #febf60;
  font-size: 13px;
  margin-bottom: 4px;
  display: flex;
  gap: 3px;
}

.why-hessa-rating-title {
  font-family: var(--font-serif) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #2f4d42 !important;
  margin-bottom: 2px;
}

.why-hessa-rating-sub {
  font-size: 11.5px !important;
  color: #556960 !important;
  margin: 0;
}

.why-hessa-contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #f4f7f5;
  border: 1px solid rgba(100, 140, 125, 0.18);
  border-radius: 12px;
}

.why-hessa-contact-box .icon {
  color: #648c7d;
  font-size: 20px;
}

.why-hessa-contact-box .contact-meta {
  display: flex;
  flex-direction: column;
}

.why-hessa-contact-box .label {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #648c7d !important;
  font-weight: 600 !important;
}

.why-hessa-contact-box .number {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #2f4d42 !important;
  text-decoration: none;
}

/* =========================================================
   Modern Testimonials Grid Component
   ========================================================= */
.hessa-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .hessa-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hessa-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hessa-testi-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(100, 140, 125, 0.16);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(47, 77, 66, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.hessa-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 140, 125, 0.35);
  box-shadow: 0 16px 36px rgba(47, 77, 66, 0.1);
}

.hessa-testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hessa-testi-treatment {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #2f4d42 !important;
  background: #edf4f0 !important;
  border: 1px solid rgba(100, 140, 125, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.hessa-testi-stars {
  color: #febf60;
  font-size: 12px;
  display: flex;
  gap: 2px;
}

.hessa-testi-quote {
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 22px;
  flex-grow: 1;
  font-style: normal;
  position: relative;
}

.hessa-testi-quote::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 32px;
  color: #8baea1;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.hessa-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(100, 140, 125, 0.12);
}

.hessa-testi-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #648c7d 0%, #2f4d42 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-sans);
}

.hessa-testi-meta h5 {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #2f4d42 !important;
  margin: 0 0 2px;
}

.hessa-testi-meta span {
  font-size: 12px !important;
  color: #648c7d !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hessa-testi-meta span i {
  color: #10b981;
  font-size: 11px;
}

.hessa-testi-trustbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 16px 28px;
  background: #ffffff;
  border: 1px solid rgba(100, 140, 125, 0.18);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 16px rgba(47, 77, 66, 0.04);
}

.hessa-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2f4d42 !important;
}

.hessa-trust-item i {
  color: #febf60;
  font-size: 14px;
}

/* =========================================================
   Modern Minimal Emerald Footer Component
   ========================================================= */
.site-footer.hessa-footer-emerald {
  background: #193329 !important;
  color: #d1e2db !important;
  position: relative;
  overflow: hidden;
}

.site-footer.hessa-footer-emerald::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #648c7d 0%, #febf60 50%, #648c7d 100%);
}

.hessa-footer-emerald .footer-head {
  padding: 45px 0 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hessa-footer-emerald .footer-logo img {
  max-height: 48px;
  width: auto;
}

.hessa-footer-emerald .footer-tagline {
  font-size: 13.5px !important;
  color: #a3c2b6 !important;
  margin-top: 8px;
  margin-bottom: 0;
}

.hessa-footer-emerald .btn-contact-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hessa-footer-emerald .btn-contact-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.hessa-footer-emerald .btn-book-footer {
  background: linear-gradient(135deg, #ffe2ab 0%, #fff4dc 100%) !important;
  border: none !important;
  color: #193329 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(254, 191, 96, 0.35) !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hessa-footer-emerald .btn-book-footer:hover {
  background: linear-gradient(135deg, #ffd68a 0%, #ffebbe 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 191, 96, 0.45) !important;
  color: #12241d !important;
}

.hessa-footer-emerald .footer-main {
  padding: 55px 0 40px;
}

.hessa-footer-emerald .footer-col-title {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #febf60 !important;
  margin-bottom: 20px;
}

.hessa-footer-emerald .footer-about-text {
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  color: #bed6cb !important;
  margin-bottom: 18px;
}

.hessa-footer-emerald .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hessa-footer-emerald .footer-links li {
  margin-bottom: 10px;
}

.hessa-footer-emerald .footer-links a {
  color: #bed6cb !important;
  font-size: 13.5px !important;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hessa-footer-emerald .footer-links a:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

.hessa-footer-emerald .footer-social-list {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.hessa-footer-emerald .footer-social-list a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hessa-footer-emerald .footer-social-list a:hover {
  background: #febf60;
  color: #193329 !important;
  border-color: #febf60;
  transform: translateY(-2px);
}

.hessa-footer-emerald .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.hessa-footer-emerald .footer-contact-item i {
  color: #febf60;
  font-size: 15px;
  margin-top: 3px;
  min-width: 18px;
}

.hessa-footer-emerald .footer-contact-item span,
.hessa-footer-emerald .footer-contact-item a {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: #bed6cb !important;
  text-decoration: none;
}

.hessa-footer-emerald .footer-contact-item a:hover {
  color: #ffffff !important;
}

.hessa-footer-emerald .footer-bottom-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #142a22;
}

.hessa-footer-emerald .footer-bottom-bar p,
.hessa-footer-emerald .footer-bottom-bar a {
  font-size: 13px !important;
  color: #92b5a6 !important;
  margin: 0;
}

.hessa-footer-emerald .powered-link {
  color: #febf60 !important;
  font-weight: 600 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hessa-footer-emerald .powered-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* =========================================================
   Tablet Responsiveness Enhancements (768px - 1024px)
   ========================================================= */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Doctor Cards Tablet */
  .doctor-leadership-card {
    margin-bottom: 24px;
    max-width: 440px;
  }
  .doctor-card-media {
    height: 460px;
  }
  .doctor-card-body {
    padding: 24px 22px 20px;
  }
  .doctor-name {
    font-size: 22px !important;
  }
  .doctor-bio-summary {
    font-size: 13.5px !important;
  }

  /* Why Hessa Difference Tablet */
  .why-hessa-section {
    padding: 60px 0;
  }
  .why-hessa-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .why-hessa-main-img {
    height: 400px;
    object-fit: cover;
  }
  .why-hessa-float-badge.bottom-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 340px;
  }

  /* Testimonials Tablet */
  .hessa-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .hessa-testi-card {
    padding: 22px 20px;
  }
  .hessa-testi-trustbar {
    padding: 14px 24px;
    gap: 16px;
  }

  /* Emerald Footer Tablet */
  .hessa-footer-emerald .footer-head {
    padding: 35px 0 25px;
  }
  .hessa-footer-emerald .footer-main {
    padding: 40px 0 30px;
  }
}

@media (max-width: 991px) {
  .why-hessa-section {
    padding: 60px 0;
  }
  .why-hessa-main-img {
    height: 380px;
  }
  .doctor-card-media {
    height: 400px;
  }
}


@media (max-width: 767px) {
  /* Doctor Cards Mobile */
  .doctor-leadership-card {
    max-width: 420px;
  }
  .doctor-card-media {
    height: 420px;
  }
  .doctor-card-body {
    padding: 20px 18px 18px;
  }
  .doctor-name {
    font-size: 20px !important;
  }
  .doctor-card-actions {
    flex-direction: column;
    gap: 8px;
  }
  .doctor-card-actions .btn-book,
  .doctor-card-actions .btn-profile {
    width: 100%;
    justify-content: center;
  }

  /* Why Hessa Difference Mobile */
  .why-hessa-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0 24px;
  }
  .why-hessa-card {
    padding: 14px 14px;
  }
  .why-hessa-main-img {
    height: 300px;
  }
  .why-hessa-float-badge.top-left {
    top: 12px;
    left: 12px;
    padding: 6px 14px;
  }
  .why-hessa-float-badge.bottom-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }

  /* Testimonials Mobile */
  .hessa-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .hessa-testi-card {
    padding: 20px 18px;
  }
  .hessa-testi-quote {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
  .hessa-testi-trustbar {
    width: 100%;
    border-radius: 16px;
    padding: 14px 18px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 28px;
  }

  /* Emerald Footer Mobile */
  .hessa-footer-emerald .footer-head {
    padding: 30px 0 20px;
  }
  .hessa-footer-emerald .footer-head .d-flex {
    flex-direction: column;
    width: 100%;
  }
  .hessa-footer-emerald .btn-contact-outline,
  .hessa-footer-emerald .btn-book-footer {
    width: 100%;
    justify-content: center;
  }
  .hessa-footer-emerald .footer-main {
    padding: 35px 0 20px;
  }
  .hessa-footer-emerald .footer-bottom-bar {
    text-align: center;
    padding: 18px 0;
  }
}

@media (max-width: 480px) {
  .section-head .title {
    font-size: 26px !important;
  }
  .eyebrow-badge {
    font-size: 10px !important;
    padding: 3px 10px !important;
  }
}

/* ==========================================================================
   Hessa Modern Transparent & Sticky Header with Glassmorphism & Mega Menu
   ========================================================================== */

/* Reset WordPress / Theme default .page margin */
body, body.page, .page, #page, .page-wraper, article.page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hessa-modern-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 24px 0 16px 0 !important;
  transition: all 0.3s ease;
}

.hero-banner.style-1 .inner-wrapper {
  padding-top: 130px !important;
}

@media (max-width: 991px) {
  .hessa-modern-header {
    padding-top: 10px !important;
  }
  .hero-banner.style-1 .inner-wrapper {
    padding-top: 80px !important;
  }
}

.hessa-modern-header .main-bar-wraper {
  background: transparent !important;
  box-shadow: none !important;
}

/* Remove Header Bottom Border */
.site-header,
.site-header.style-2,
.site-header.style-2.header-transparent,
.site-header.hessa-modern-header,
.site-header.hessa-modern-header .main-bar,
.site-header.hessa-modern-header .main-bar-wraper {
  border-bottom: none !important;
  border-top: none !important;
}

.hessa-modern-header .main-bar {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sticky & Fixed Header */
.hessa-modern-header.is-fixed,
.hessa-modern-header.is-scrolled,
.sticky-header.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

/* Scrolled / Sticky State - Compact Height & Dark Accent Typography */
.hessa-modern-header.is-fixed .main-bar,
.hessa-modern-header.is-scrolled .main-bar,
.sticky-header.is-fixed .main-bar,
.is-fixed .main-bar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none !important;
  box-shadow: 0 8px 25px -8px rgba(25, 51, 41, 0.12) !important;
  padding: 6px 0 !important;
}

/* Header Centering on Desktop */
@media (min-width: 992px) {
  .hessa-modern-header .logo-header {
    flex: 1 1 0% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  .hessa-modern-header .header-nav {
    flex: 0 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }
  .hessa-modern-header .nav.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    margin: 0 auto !important;
  }
  .hessa-modern-header .extra-nav {
    flex: 1 1 0% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
  .hessa-modern-header .extra-cell {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
  }
}

/* Force Dark Accent text on all pages when scrolled */
.hessa-modern-header.is-fixed .nav.navbar-nav > li > a,
.hessa-modern-header.is-fixed .nav.navbar-nav > li > a span,
.hessa-modern-header.is-fixed .nav.navbar-nav > li > a i,
.hessa-modern-header.is-scrolled .nav.navbar-nav > li > a,
.hessa-modern-header.is-scrolled .nav.navbar-nav > li > a span,
.hessa-modern-header.is-scrolled .nav.navbar-nav > li > a i,
.hessa-modern-header.header-dark-banner.is-fixed .nav.navbar-nav > li > a,
.hessa-modern-header.header-dark-banner.is-fixed .nav.navbar-nav > li > a span,
.hessa-modern-header.header-dark-banner.is-fixed .nav.navbar-nav > li > a i,
.hessa-modern-header.header-dark-banner.is-scrolled .nav.navbar-nav > li > a,
.hessa-modern-header.header-dark-banner.is-scrolled .nav.navbar-nav > li > a span,
.hessa-modern-header.header-dark-banner.is-scrolled .nav.navbar-nav > li > a i,
.sticky-header.is-fixed .nav.navbar-nav > li > a,
.sticky-header.is-fixed .nav.navbar-nav > li > a span,
.sticky-header.is-fixed .nav.navbar-nav > li > a i {
  color: #193329 !important;
}

.hessa-modern-header.is-fixed .nav.navbar-nav > li:hover > a,
.hessa-modern-header.is-fixed .nav.navbar-nav > li:hover > a span,
.hessa-modern-header.is-scrolled .nav.navbar-nav > li:hover > a,
.hessa-modern-header.is-scrolled .nav.navbar-nav > li:hover > a span,
.hessa-modern-header.header-dark-banner.is-fixed .nav.navbar-nav > li:hover > a,
.hessa-modern-header.header-dark-banner.is-fixed .nav.navbar-nav > li:hover > a span,
.hessa-modern-header.header-dark-banner.is-scrolled .nav.navbar-nav > li:hover > a,
.hessa-modern-header.header-dark-banner.is-scrolled .nav.navbar-nav > li:hover > a span,
.sticky-header.is-fixed .nav.navbar-nav > li:hover > a,
.sticky-header.is-fixed .nav.navbar-nav > li:hover > a span {
  color: var(--hessa-primary, #648c7d) !important;
}

/* Nav Links Styling Default */
.hessa-modern-header .nav.navbar-nav > li > a,
.hessa-modern-header .nav.navbar-nav > li > a span {
  color: var(--hessa-primary-dark, #2f4d42) !important;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 6px 16px;
  position: relative;
  transition: color 0.25s ease;
}

/* Before scroll on dark banners (About, Services, Contact, etc.) */
.hessa-modern-header.header-dark-banner:not(.is-fixed):not(.is-scrolled) .nav.navbar-nav > li > a,
.hessa-modern-header.header-dark-banner:not(.is-fixed):not(.is-scrolled) .nav.navbar-nav > li > a span,
.hessa-modern-header.header-dark-banner:not(.is-fixed):not(.is-scrolled) .nav.navbar-nav > li > a i {
  color: #ffffff !important;
}

.hessa-modern-header.header-dark-banner:not(.is-fixed):not(.is-scrolled) .nav.navbar-nav > li:hover > a,
.hessa-modern-header.header-dark-banner:not(.is-fixed):not(.is-scrolled) .nav.navbar-nav > li:hover > a span {
  color: var(--hessa-gold, #febf60) !important;
}

.hessa-modern-header.header-dark-banner:not(.is-fixed):not(.is-scrolled) .main-bar {
  border-bottom: none !important;
}

/* Remove hover and active indicator line below header */
.hessa-modern-header .nav.navbar-nav > li > a::after {
  display: none !important;
}

.hessa-modern-header .nav.navbar-nav > li:hover > a,
.hessa-modern-header .nav.navbar-nav > li:hover > a span {
  color: var(--hessa-primary, #648c7d) !important;
}

/* Compact Logo on Scroll */
.hessa-modern-header.is-fixed .logo-header img,
.hessa-modern-header.is-scrolled .logo-header img {
  height: 38px;
  transition: all 0.3s ease;
}

/* Header Booking Button following hessa-website-design */
.header-book-btn,
.hessa-modern-header .btn.btn-primary.header-book-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: var(--hessa-gold, #febf60) !important;
  color: #193329 !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  border: 1px solid var(--hessa-gold, #febf60) !important;
  box-shadow: 0 4px 14px rgba(254, 191, 96, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-book-btn:hover,
.hessa-modern-header .btn.btn-primary.header-book-btn:hover {
  background: #f5a932 !important;
  color: #193329 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(254, 191, 96, 0.45) !important;
}

.header-book-btn span {
  color: #193329 !important;
}

.header-book-btn .header-arrow-icon,
.header-book-btn .header-arrow-icon *,
.site-header.hessa-modern-header .header-book-btn .header-arrow-icon,
.site-header.hessa-modern-header .header-book-btn .header-arrow-icon * {
  width: 12px !important;
  height: 12px !important;
  stroke: #193329 !important;
  fill: none !important;
  stroke-width: 1.8px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-book-btn:hover .header-arrow-icon {
  transform: translateX(3px) !important;
}

.header-book-btn i {
  display: none !important;
}

/* ==========================================================================
   Mega Menu System (Desktop >= 992px)
   ========================================================================== */

@media (min-width: 992px) {
  .header-nav .logo-header {
    display: none !important;
  }

  .hessa-modern-header .nav.navbar-nav > li.has-mega-menu {
    position: static;
  }

  /* Mega Menu Container with 50% reduced gap */
  .hessa-modern-header .mega-menu-wrapper {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: min(1320px, 96vw);
    max-width: 1360px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px -15px rgba(25, 51, 41, 0.16), 0 0 0 1px rgba(100, 140, 125, 0.15);
    padding: 30px 34px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  /* Invisible hover bridge */
  .hessa-modern-header .mega-menu-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
    display: block;
  }

  .hessa-modern-header .nav.navbar-nav > li.has-mega-menu:hover .mega-menu-wrapper,
  .hessa-modern-header .mega-menu-wrapper:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr)) 290px;
    gap: 32px;
    align-items: stretch;
  }

  .mega-col {
    display: flex;
    flex-direction: column;
  }

  .mega-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(100, 140, 125, 0.15);
  }

  .mega-heading .mega-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(100, 140, 125, 0.12);
    color: var(--hessa-primary, #648c7d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .mega-heading .title {
    font-family: var(--font-serif);
    font-size: 15.5px;
    font-weight: 700;
    color: #193329 !important;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mega-heading .subtitle {
    font-family: var(--font-sans);
    font-size: 11.5px;
    color: #4b5563 !important;
    margin: 2px 0 0 0;
    white-space: nowrap;
  }

  .mega-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mega-link-list li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937 !important;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
  }

  .mega-link-list li a:hover {
    background: rgba(100, 140, 125, 0.1);
    color: #193329 !important;
    font-weight: 600;
    transform: translateX(4px);
  }

  /* Promo Card in Mega Menu */
  .mega-col-promo {
    display: flex;
  }

  .mega-promo-card {
    background: linear-gradient(155deg, #1f3d32 0%, #12241d 100%) !important;
    border: 1px solid rgba(254, 191, 96, 0.25);
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(18, 36, 29, 0.35);
  }

  .mega-promo-card .promo-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #febf60 !important;
    background: rgba(254, 191, 96, 0.15) !important;
    border: 1px solid rgba(254, 191, 96, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .mega-promo-card .promo-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #ffffff !important;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .mega-promo-card .promo-desc {
    font-size: 12.5px;
    color: #e2e8f0 !important;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .mega-promo-card .btn-primary {
    background: var(--hessa-gold, #febf60) !important;
    color: #193329 !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    padding: 10px 16px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(254, 191, 96, 0.4) !important;
  }

  .mega-promo-card .btn-primary:hover {
    background: #f5a932 !important;
    transform: translateY(-1px);
  }

  .mega-promo-card .promo-footer {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff !important;
    margin-top: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mega-promo-card .promo-footer span {
    color: #ffffff !important;
  }

  .mega-promo-card .promo-footer i {
    color: #febf60 !important;
    font-size: 13px;
  }
}

/* Mobile Mega Menu & Drawer (< 992px) */
@media (max-width: 991px) {
  .header-nav.w3menu.mo-left {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2) !important;
    padding: 24px 20px !important;
    display: block !important;
  }
  .header-nav.w3menu.mo-left.show {
    left: 0 !important;
  }
  .menu-close.fade-overlay.show,
  .menu-close.show {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 99998 !important;
    display: block !important;
  }

  .hessa-modern-header .mega-menu-wrapper {
    background: #f4f7f5;
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
  }
  .mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mega-col-promo {
    display: none;
  }
  .location-pill-widget {
    display: none;
  }
}

/* =========================================================
   Archetype 8: Grand Dark Accent Hero Banner with Elegant Subtle Flowing Lines
   ========================================================= */
.hessa-hero-dark-accent {
  position: relative;
  background: linear-gradient(180deg, #142a22 0%, #193329 45%, #254438 80%, #2f4d42 100%) !important;
  padding: 175px 0 95px !important;
  overflow: hidden;
  z-index: 1;
}

/* Elegant subtle flowing curves backdrop */
.hessa-hero-dark-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    /* Ambient sage glow */
    radial-gradient(ellipse 65% 55% at 85% 15%, rgba(100, 140, 125, 0.28) 0%, transparent 70%),
    /* Ambient warm gold shimmer */
    radial-gradient(ellipse 45% 40% at 15% 85%, rgba(254, 191, 96, 0.09) 0%, transparent 60%),
    /* Ultra-fine flowing contour curves */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none' fill='none'%3E%3Cpath d='M-100 280 C 300 120, 650 480, 1100 240 C 1300 130, 1480 320, 1600 280' stroke='rgba(255,255,255,0.045)' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M-100 320 C 320 160, 670 520, 1120 280 C 1320 170, 1500 360, 1600 320' stroke='rgba(190,214,203,0.035)' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M-100 240 C 280 80, 630 440, 1080 200 C 1280 90, 1460 280, 1600 240' stroke='rgba(254,191,96,0.03)' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M-100 420 C 360 260, 720 580, 1180 360 C 1360 250, 1520 440, 1600 400' stroke='rgba(255,255,255,0.03)' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M-100 140 C 420 300, 800 60, 1220 260 C 1380 340, 1500 220, 1600 180' stroke='rgba(190,214,203,0.035)' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Secondary vignette layer */
.hessa-hero-dark-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(20, 42, 34, 0.75) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hessa-hero-dark-accent .container,
.hessa-hero-dark-accent .dz-bnr-inr-entry {
  position: relative;
  z-index: 2;
}

.hessa-hero-dark-accent h1 {
  font-family: var(--font-serif) !important;
  font-size: 48px;
  line-height: 1.18;
  color: #ffffff !important;
  margin-bottom: 16px;
}

.hessa-hero-dark-accent .hessa-hero-desc {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.7;
  color: #bed6cb !important;
  max-width: 740px;
  margin-bottom: 24px;
}

.hessa-hero-dark-accent .eyebrow-badge {
  background: rgba(254, 191, 96, 0.15) !important;
  color: var(--hessa-gold) !important;
  border: 1px solid rgba(254, 191, 96, 0.3) !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

.hessa-hero-dark-accent .breadcrumb-row {
  margin-top: 20px;
}

.hessa-hero-dark-accent .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.hessa-hero-dark-accent .breadcrumb-item a {
  color: #bed6cb !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hessa-hero-dark-accent .breadcrumb-item a:hover {
  color: var(--hessa-gold) !important;
}

.hessa-hero-dark-accent .breadcrumb-item.active {
  color: var(--hessa-gold) !important;
  font-weight: 600;
}

.hessa-hero-dark-accent .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(190, 214, 203, 0.4);
}

@media (max-width: 991px) {
  .hessa-hero-dark-accent {
    padding: 145px 0 70px !important;
  }
  .hessa-hero-dark-accent h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .hessa-hero-dark-accent {
    padding: 130px 0 55px !important;
  }
  .hessa-hero-dark-accent h1 {
    font-size: 30px;
  }
}

/* ==========================================================================
   Doctor Profile & Interactive Tabs Styling (hessa-website-design)
   ========================================================================== */

/* Eyebrow Badge Standard Rhythm */
.eyebrow-badge,
.doctor-role-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: clamp(8.5px, 0.85vw, 10.5px);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(100, 140, 125, 0.12);
  color: #2f4d42;
  border: 1px solid rgba(100, 140, 125, 0.25);
  margin-bottom: 12px;
  line-height: 1.4;
  white-space: nowrap !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hessa-hero-dark-accent .eyebrow-badge,
.hessa-hero-dark-accent .doctor-role-tag,
.eyebrow-badge.eyebrow-yellow,
.eyebrow-badge.eyebrow-gold,
.eyebrow-badge-yellow,
.eyebrow-badge-gold,
.bg-dark .eyebrow-badge,
.hessa-cta-dark .eyebrow-badge,
section[style*="#193329"] .eyebrow-badge,
div[style*="#193329"] .eyebrow-badge {
  background: rgba(254, 191, 96, 0.18) !important;
  color: #febf60 !important;
  border: 1px solid rgba(254, 191, 96, 0.4) !important;
}

/* Headline Divider */
.headline-divider {
  display: block;
  width: 48px;
  height: 3px;
  background: #febf60;
  margin: 10px 0 20px;
  border-radius: 2px;
}

.section-head.text-center .headline-divider {
  margin-left: auto;
  margin-right: auto;
}

/* Doctor Selection Navigation Pills */
.doctor-tab-btn,
button.doctor-tab-btn,
a.doctor-tab-btn {
  font-family: var(--font-sans);
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(100, 140, 125, 0.35) !important;
  color: #2f4d42 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none;
  display: inline-block;
}

.doctor-tab-btn:hover {
  background: rgba(100, 140, 125, 0.1) !important;
  border-color: #648c7d !important;
  color: #193329 !important;
  transform: translateY(-1px);
}

.doctor-tab-btn.active,
button.doctor-tab-btn.active,
a.doctor-tab-btn.active {
  background: #193329 !important;
  border-color: #193329 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(25, 51, 41, 0.25) !important;
  transform: translateY(-1px);
}

/* Credential Chips */
.credential-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 500;
  color: #2f4d42;
  background: #edf4f0;
  border: 1px solid rgba(100, 140, 125, 0.2);
  border-radius: 6px;
  margin: 2px;
}

/* Clinical Specialty Pills (Areas of Clinical Interest) */
.specialty-pill,
.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: #f4f7f5;
  border: 1px solid rgba(100, 140, 125, 0.22);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: #193329;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 3px;
  text-decoration: none;
}

.specialty-pill::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #648c7d;
}

.specialty-pill:hover,
.specialty-tag:hover {
  background: #edf4f0;
  border-color: #648c7d;
  color: #142a22;
  transform: translateY(-1px);
}

/* Section Subheads */
.doctor-subhead {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2f4d42;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.doctor-subhead i {
  color: #648c7d;
  font-size: 15px;
}

/* Modern Qualifications Cards */
.doctor-qual-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.doctor-qual-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: #fbfdfc;
  border: 1px solid rgba(100, 140, 125, 0.2);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.doctor-qual-item:hover {
  background: #f4f8f6;
  border-color: rgba(100, 140, 125, 0.4);
  transform: translateX(3px);
}

.doctor-qual-tag {
  flex-shrink: 0;
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #193329;
  background: rgba(100, 140, 125, 0.15);
  border: 1px solid rgba(100, 140, 125, 0.25);
  border-radius: 6px;
  min-width: 110px;
  text-align: center;
}

.doctor-qual-value {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  color: #193329;
  margin: 0;
}

/* Modern Timeline */
.doctor-timeline-v2 {
  position: relative;
  padding-left: 28px;
  margin-left: 6px;
  border-left: 2px solid rgba(100, 140, 125, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctor-timeline-node {
  position: relative;
}

.doctor-timeline-node::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #648c7d;
  box-shadow: 0 0 0 3px rgba(100, 140, 125, 0.15);
  transition: all 0.2s ease;
}

.doctor-timeline-node:first-child::before {
  border-color: #febf60;
  background: #193329;
  box-shadow: 0 0 0 4px rgba(254, 191, 96, 0.3);
}

.doctor-timeline-role {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #193329;
  margin-bottom: 3px;
  line-height: 1.4;
}

.doctor-timeline-org {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.5;
  display: block;
}

@media (max-width: 576px) {
  .doctor-qual-item {
    flex-direction: column;
    gap: 8px;
  }
  .doctor-qual-tag {
    min-width: auto;
  }
}

/* ==========================================================================
   Doctor Card & Leadership Grid (hessa-website-design)
   ========================================================================== */

.doctor-leadership-grid-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.doctor-leadership-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(100, 140, 125, 0.18);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-leadership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(25, 51, 41, 0.12);
  border-color: rgba(100, 140, 125, 0.35);
}

.doctor-card-media {
  position: relative;
  height: 520px;
  background: #e9efe9;
  overflow: hidden;
}

.doctor-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-leadership-card:hover .doctor-card-media img {
  transform: scale(1.03);
}

.doctor-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #2f4d42 !important;
  font-family: var(--font-sans);
  font-weight: 700 !important;
  font-size: 10.5px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 5px 14px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(100, 140, 125, 0.28) !important;
  box-shadow: 0 4px 14px rgba(25, 51, 41, 0.08) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.doctor-card-badge i {
  color: #febf60 !important;
  font-size: 11px !important;
}

.doctor-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #193329;
  margin-top: 4px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.doctor-name a {
  color: #193329;
  text-decoration: none;
  transition: color 0.2s ease;
}

.doctor-name a:hover {
  color: #648c7d;
}

.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}

.doctor-bio-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 18px;
  flex-grow: 1;
}

.doctor-focus-title {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #2f4d42;
  margin-bottom: 8px;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 22px;
}

.doctor-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.doctor-card-actions .btn-book {
  flex: 1;
  background: linear-gradient(135deg, #ffe2ab 0%, #febf60 100%);
  color: #193329;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.doctor-card-actions .btn-book:hover {
  background: linear-gradient(135deg, #ffd78a 0%, #f5ab3d 100%);
  transform: translateY(-1px);
  color: #142a22;
}

.doctor-card-actions .btn-profile {
  background: #f4f7f5;
  color: #2f4d42;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(100, 140, 125, 0.25);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.doctor-card-actions .btn-profile:hover {
  background: #edf4f0;
  border-color: #648c7d;
  color: #193329;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .doctor-card-media {
    height: 460px;
  }
}


/* ==========================================================================
   Master Footer Emerald Accent Theme (.hessa-footer-emerald)
   ========================================================================== */

footer.site-footer.hessa-footer-emerald {
  background: var(--hessa-primary-dark, #2f4d42) !important;
  border-top: 3px solid #febf60;
  color: #bed6cb;
  position: relative;
}

.hessa-footer-emerald .footer-head {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hessa-footer-emerald .footer-tagline {
  color: #bed6cb;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
}

.hessa-footer-emerald .btn-contact-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hessa-footer-emerald .btn-contact-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #febf60;
  color: #febf60 !important;
}

.hessa-footer-emerald .btn-book-footer,
.hessa-footer-emerald a.btn-book-footer,
.hessa-footer-emerald .btn-primary,
.hessa-footer-emerald a.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  background: #febf60 !important;
  color: #193329 !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #febf60;
  box-shadow: 0 4px 14px rgba(254, 191, 96, 0.25);
  transition: all 0.2s ease;
}

.hessa-footer-emerald .btn-book-footer *,
.hessa-footer-emerald a.btn-book-footer *,
.hessa-footer-emerald .btn-primary *,
.hessa-footer-emerald a.btn-primary * {
  color: #193329 !important;
}

.hessa-footer-emerald .btn-book-footer:hover,
.hessa-footer-emerald a.btn-book-footer:hover,
.hessa-footer-emerald .btn-primary:hover,
.hessa-footer-emerald a.btn-primary:hover {
  background: #e5a745 !important;
  border-color: #e5a745;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(229, 167, 69, 0.35);
  color: #142a22 !important;
}

.hessa-footer-emerald .footer-main {
  padding: 60px 0 40px;
}

.hessa-footer-emerald .footer-col-title {
  font-family: var(--font-serif, 'The Seasons', serif);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hessa-footer-emerald .footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #bed6cb;
  margin-bottom: 18px;
}

.hessa-footer-emerald .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #bed6cb;
  margin-bottom: 12px;
  line-height: 1.6;
}

.hessa-footer-emerald .footer-contact-item i {
  color: #febf60;
  margin-top: 4px;
  flex-shrink: 0;
}

.hessa-footer-emerald .footer-contact-item a {
  color: #bed6cb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hessa-footer-emerald .footer-contact-item a:hover {
  color: #febf60;
}

.hessa-footer-emerald .footer-social-list {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hessa-footer-emerald .footer-social-list a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bed6cb;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hessa-footer-emerald .footer-social-list a:hover {
  background: #febf60;
  border-color: #febf60;
  color: #193329;
  transform: translateY(-2px);
}

.hessa-footer-emerald .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hessa-footer-emerald .footer-links li {
  margin-bottom: 10px;
}

.hessa-footer-emerald .footer-links a {
  color: #bed6cb;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.hessa-footer-emerald .footer-links a:hover {
  color: #febf60;
  transform: translateX(4px);
}

.hessa-footer-emerald .footer-bottom-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(190, 214, 203, 0.8);
}

.hessa-footer-emerald .footer-bottom-bar p {
  margin: 0;
  color: inherit;
}

.hessa-footer-emerald .powered-link {
  color: #febf60;
  text-decoration: none;
  font-weight: 600;
}

.hessa-footer-emerald .powered-link:hover {
  text-decoration: underline;
}

/* Logo & Navigation Polish */
.logo-header {
  display: flex !important;
  align-items: center !important;
  height: 80px !important;
}
.logo-header a {
  display: inline-flex !important;
  align-items: center !important;
}
.logo-header img {
  max-height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Hero USPs & Icons Polish */
.hero-usps .usp-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.hero-usps .usp-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(100, 140, 125, 0.15) !important;
  color: var(--hessa-primary) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}
.hero-usps .usp-icon i {
  color: var(--hessa-primary) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  display: inline-block !important;
}
.hero-usps .usp-text {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--hessa-primary-dark) !important;
}

.btn-icon .right-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.25) !important;
  margin-left: 10px !important;
  flex-shrink: 0 !important;
}
.btn-icon .right-icon i {
  line-height: 1 !important;
  font-size: 15px !important;
}

/* Appointment Page Scoped Styles */
.appointment-card-wrapper {
	background: #ffffff;
	border-radius: 24px;
	border: 1px solid rgba(25, 51, 41, 0.08);
	box-shadow: 0 16px 48px -12px rgba(25, 51, 41, 0.1);
	padding: 40px 36px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 767px) {
	.appointment-card-wrapper {
		padding: 24px 20px;
		border-radius: 18px;
	}
}
.appointment-side-info {
	background: linear-gradient(180deg, #142a22 0%, #193329 100%);
	border-radius: 20px;
	padding: 36px 30px;
	color: #ffffff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.appointment-side-info::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 14px);
	pointer-events: none;
}
.appointment-side-info .card-eyebrow {
	display: inline-block;
	background: rgba(254, 191, 96, 0.15) !important;
	color: #febf60 !important;
	border: 1px solid rgba(254, 191, 96, 0.35) !important;
	font-family: var(--font-sans) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	padding: 6px 14px !important;
	border-radius: 50px !important;
	line-height: 1.4 !important;
	margin-bottom: 14px !important;
}
.appointment-side-info h3.card-title {
	color: #ffffff !important;
	font-family: 'Cormorant Garamond', 'The Seasons', Georgia, serif !important;
	font-size: 28px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	letter-spacing: -0.01em !important;
	margin-bottom: 14px !important;
}
.appointment-side-info p.card-desc {
	color: #bed6cb !important;
	font-family: var(--font-sans) !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
	margin-bottom: 24px !important;
}
.appointment-side-info .btn-maps-action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13px 20px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	color: #142a22 !important;
	background: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.8) !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
}
.appointment-side-info .btn-maps-action:hover {
	background: #f4f7f5 !important;
	color: #193329 !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.appointment-info-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}
.appointment-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
	font-size: 13.5px;
	line-height: 1.5;
	color: #d1e3db;
}
.appointment-info-list li i {
	color: #febf60;
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}
.appointment-info-list li strong {
	color: #ffffff !important;
	display: block;
	font-size: 14.5px;
	font-weight: 600;
	margin-bottom: 3px;
}
.appointment-info-list li span,
.appointment-info-list li a {
	color: #bed6cb !important;
	font-size: 13px;
}
.form-label-custom {
	font-family: var(--font-sans);
	font-size: 13.5px;
	font-weight: 600;
	color: #142a22;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form-label-custom span {
	font-size: 11.5px;
	color: #648c7d;
	font-weight: 500;
}
.form-control-custom {
	width: 100%;
	height: 50px;
	background: #f8faf9;
	border: 1.5px solid rgba(25, 51, 41, 0.12);
	border-radius: 12px;
	padding: 0 16px;
	font-size: 14px;
	color: #142a22;
	transition: all 0.25s ease;
	font-family: var(--font-sans);
}
.form-control-custom:focus {
	background: #ffffff;
	border-color: #648c7d;
	box-shadow: 0 0 0 3px rgba(100, 140, 125, 0.15);
	outline: none;
}
.prep-guide-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 24px 20px 22px;
	border: 1px solid rgba(25, 51, 41, 0.08);
	box-shadow: 0 4px 18px -4px rgba(25, 51, 41, 0.04);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}
.prep-guide-card:hover {
	transform: translateY(-4px);
	border-color: rgba(100, 140, 125, 0.4);
	box-shadow: 0 14px 28px -8px rgba(25, 51, 41, 0.1);
}
.prep-guide-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.prep-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #edf4f0;
	color: #193329;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
}
.prep-guide-card:hover .prep-icon {
	background: #193329;
	color: #febf60;
	transform: scale(1.05);
}
.prep-step-badge {
	font-family: var(--font-sans);
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #648c7d;
	background: rgba(100, 140, 125, 0.12);
	padding: 3px 8px;
	border-radius: 20px;
}
.prep-title {
	font-family: 'Cormorant Garamond', 'The Seasons', Georgia, serif;
	font-size: 16.5px;
	font-weight: 700;
	color: #142a22;
	margin-bottom: 6px;
	line-height: 1.35;
}
.prep-desc {
	font-family: var(--font-sans);
	font-size: 12.5px;
	color: #55605b;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}
.hessa-faq-accordion .accordion-item {
	background: #ffffff;
	border: 1px solid rgba(25, 51, 41, 0.08);
	border-radius: 14px !important;
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(25, 51, 41, 0.02);
}
.hessa-faq-accordion .accordion-button {
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 15px;
	color: #142a22;
	background: #ffffff;
	padding: 18px 22px;
	box-shadow: none;
}
.hessa-faq-accordion .accordion-button:not(.collapsed) {
	color: #193329;
	background: #f4f7f5;
	border-bottom: 1px solid rgba(25, 51, 41, 0.06);
}
.hessa-faq-accordion .accordion-body {
	font-family: var(--font-sans);
	font-size: 14px;
	line-height: 1.65;
	color: #4b5563;
	padding: 18px 22px;
}

/* ==========================================================================
   Doctor Cards & Medical Leadership Styling
   ========================================================================== */
.doctor-leadership-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(100, 140, 125, 0.18);
  box-shadow: 0 10px 30px rgba(25, 51, 41, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctor-leadership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(25, 51, 41, 0.12);
  border-color: rgba(100, 140, 125, 0.4);
}

.doctor-card-media {
  position: relative;
  height: 460px !important;
  overflow: hidden;
  background: #e9efe9;
}

@media (max-width: 767px) {
  .doctor-card-media {
    height: 360px !important;
  }
}

.doctor-card-media img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-leadership-card:hover .doctor-card-media img {
  transform: scale(1.03);
}

.doctor-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: auto !important;
  max-width: max-content !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #193329;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(100, 140, 125, 0.25);
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(25, 51, 41, 0.1);
  z-index: 2;
}

.doctor-card-badge i {
  color: #febf60;
  font-size: 12px;
}

.doctor-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-role-tag {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(100, 140, 125, 0.1);
  color: #2f4d42;
  font-family: var(--font-sans);
  font-size: clamp(8.5px, 0.85vw, 10.5px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.doctor-name {
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  margin-bottom: 12px;
}

.doctor-name a {
  color: #193329;
  text-decoration: none;
  transition: color 0.3s ease;
}

.doctor-name a:hover {
  color: #648c7d;
}

.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.credential-chip {
  background: #f4f7f5;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(100, 140, 125, 0.15);
}

.doctor-bio-excerpt {
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 16px;
}

.doctor-focus-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #648c7d;
  margin-bottom: 8px;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.specialty-tag {
  background: #ffffff;
  border: 1px solid rgba(100, 140, 125, 0.2);
  color: #193329;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
}

.doctor-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.doctor-card-actions .btn-book {
  flex: 1;
  background: #febf60;
  color: #193329;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(254, 191, 96, 0.25);
}

.doctor-card-actions .btn-book:hover {
  background: #e5a745;
  transform: translateY(-2px);
}

.doctor-card-actions .btn-profile {
  background: #f4f7f5;
  color: #193329;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 140, 125, 0.2);
}

.doctor-card-actions .btn-profile:hover {
  background: #193329;
  color: #ffffff;
  border-color: #193329;
}

.hessa-service-card img {
  object-fit: cover !important;
  object-position: top center !important;
}

/* Homepage Hero Desktop Inner Wrapper Reset */
@media (min-width: 992px) {
  .hero-banner.style-1 .inner-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Grand Dark Accent Hero Banner Typography */
.hessa-hero-dark-accent h1,
.hessa-hero-dark-accent .h1,
.hessa-hero-dark-accent h2,
.hessa-hero-dark-accent h3,
.hessa-hero-dark-accent .text-white {
  color: #ffffff !important;
}

/* ==========================================================================
   Hessa Clinic — Contact & Location Page Styles
   ========================================================================== */

/* 1. Quick Contact Cards */
.hessa-contact-card {
	background: #ffffff !important;
	border-radius: 20px !important;
	border: 1px solid rgba(25, 51, 41, 0.08) !important;
	box-shadow: 0 4px 20px -4px rgba(25, 51, 41, 0.05) !important;
	padding: 28px 24px !important;
	height: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	position: relative !important;
	overflow: hidden !important;
}

.hessa-contact-card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 20px 40px -10px rgba(25, 51, 41, 0.12) !important;
	border-color: rgba(100, 140, 125, 0.4) !important;
}

.hessa-contact-card.featured-card {
	background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%) !important;
	border: 1.5px solid rgba(100, 140, 125, 0.35) !important;
	box-shadow: 0 8px 26px -4px rgba(25, 51, 41, 0.08) !important;
}

.hessa-contact-card-top {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 20px !important;
}

.hessa-contact-icon-box {
	width: 48px !important;
	height: 48px !important;
	border-radius: 12px !important;
	background: #edf4f0 !important;
	color: #193329 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 20px !important;
	transition: all 0.3s ease !important;
}

.hessa-contact-icon-box i,
.hessa-contact-icon-box svg {
	color: #193329 !important;
	transition: color 0.3s ease, transform 0.3s ease !important;
}

.hessa-contact-card:hover .hessa-contact-icon-box {
	background: #2f4d42 !important;
}

.hessa-contact-card:hover .hessa-contact-icon-box i,
.hessa-contact-card:hover .hessa-contact-icon-box svg {
	color: #febf60 !important;
	transform: scale(1.1) !important;
}

.hessa-contact-badge {
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 8.5px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	line-height: 1 !important;
	padding: 4px 7px !important;
	border-radius: 6px !important;
	background: rgba(100, 140, 125, 0.12) !important;
	color: #244136 !important;
	border: 1px solid rgba(100, 140, 125, 0.25) !important;
	display: inline-flex !important;
	align-items: center !important;
	white-space: nowrap !important;
}

.hessa-contact-card.featured-card .hessa-contact-badge {
	background: rgba(254, 191, 96, 0.22) !important;
	color: #8c5500 !important;
	border: 1px solid rgba(254, 191, 96, 0.45) !important;
}

.hessa-contact-title {
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #142a22 !important;
	margin-bottom: 8px !important;
	line-height: 1.3 !important;
}

.hessa-contact-text {
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 13.5px !important;
	line-height: 1.6 !important;
	color: #4b5563 !important;
	margin-bottom: 16px !important;
	flex-grow: 1 !important;
}

.hessa-contact-highlight {
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #142a22 !important;
	margin-bottom: 18px !important;
	display: block !important;
}

.hessa-contact-highlight a {
	color: #142a22 !important;
	text-decoration: none !important;
	transition: color 0.2s !important;
}

.hessa-contact-highlight a:hover {
	color: #648c7d !important;
}

.hessa-btn-card-action {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 100% !important;
	padding: 12px 18px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	border-radius: 12px !important;
	text-decoration: none !important;
	transition: all 0.25s ease !important;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
}

.hessa-btn-card-outline {
	background: #ffffff !important;
	border: 1.5px solid #d1d5db !important;
	color: #193329 !important;
}

.hessa-btn-card-outline:hover {
	background: #193329 !important;
	color: #ffffff !important;
	border-color: #193329 !important;
	transform: translateY(-2px) !important;
}

.hessa-btn-card-primary {
	background: linear-gradient(135deg, #febf60 0%, #f5a834 100%) !important;
	color: #193329 !important;
	border: none !important;
	box-shadow: 0 4px 14px rgba(254, 191, 96, 0.35) !important;
}

.hessa-btn-card-primary:hover {
	background: linear-gradient(135deg, #f5a834 0%, #e09420 100%) !important;
	color: #142a22 !important;
	box-shadow: 0 6px 20px rgba(254, 191, 96, 0.5) !important;
	transform: translateY(-2px) !important;
}

.hessa-info-box {
	background: #ffffff !important;
	border-radius: 16px !important;
	border: 1px solid rgba(25, 51, 41, 0.08) !important;
	box-shadow: 0 4px 16px -4px rgba(25, 51, 41, 0.04) !important;
	padding: 24px !important;
	height: 100% !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hessa-info-box:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 14px 28px -6px rgba(25, 51, 41, 0.09) !important;
}

/* 2. Consultation Request Form */
.hessa-form-card {
	background: #ffffff !important;
	border-radius: 20px !important;
	border: 1px solid rgba(25, 51, 41, 0.09) !important;
	box-shadow: 0 10px 30px -6px rgba(20, 42, 34, 0.06) !important;
	padding: 30px 26px !important;
}

.hessa-field-label {
	display: block !important;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #374151 !important;
	margin-bottom: 4px !important;
}

.hessa-input-wrapper {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
}

.hessa-input-icon {
	position: absolute !important;
	left: 14px !important;
	color: #648c7d !important;
	font-size: 15px !important;
	pointer-events: none !important;
	z-index: 2 !important;
}

.hessa-input-control {
	width: 100% !important;
	background: #f8faf9 !important;
	border: 1.5px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 9px 14px 9px 40px !important;
	font-size: 13.5px !important;
	color: #193329 !important;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	transition: all 0.2s ease !important;
	outline: none !important;
}

.hessa-input-control:focus {
	background: #ffffff !important;
	border-color: #648c7d !important;
	box-shadow: 0 0 0 3.5px rgba(100, 140, 125, 0.16) !important;
}

.hessa-textarea-control {
	width: 100% !important;
	background: #f8faf9 !important;
	border: 1.5px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 10px 14px !important;
	font-size: 13.5px !important;
	color: #193329 !important;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	resize: vertical !important;
}

.hessa-textarea-control:focus {
	background: #ffffff !important;
	border-color: #648c7d !important;
	box-shadow: 0 0 0 3.5px rgba(100, 140, 125, 0.16) !important;
}

.hessa-frosted-badge {
	backdrop-filter: blur(14px) !important;
	-webkit-backdrop-filter: blur(14px) !important;
	background: rgba(255, 255, 255, 0.92) !important;
	border: 1px solid rgba(255, 255, 255, 0.85) !important;
	border-radius: 16px !important;
	padding: 12px 16px !important;
	box-shadow: 0 10px 25px -5px rgba(20, 42, 34, 0.15) !important;
}

.hessa-feature-mini-card {
	background: #f8faf9 !important;
	border: 1px solid rgba(25, 51, 41, 0.07) !important;
	border-radius: 14px !important;
	padding: 16px 18px !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px !important;
	transition: all 0.25s ease !important;
}

.hessa-feature-mini-card:hover {
	background: #ffffff !important;
	box-shadow: 0 8px 22px -4px rgba(25, 51, 41, 0.08) !important;
	border-color: rgba(100, 140, 125, 0.3) !important;
	transform: translateY(-2px) !important;
}

.hessa-feature-mini-icon {
	width: 36px !important;
	height: 36px !important;
	border-radius: 10px !important;
	background: rgba(100, 140, 125, 0.14) !important;
	color: #2f4d42 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 16px !important;
	flex-shrink: 0 !important;
}

/* 3. Luxury FAQ Accordion */
.hessa-faq-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
}

.hessa-faq-item {
	background: #ffffff !important;
	border: 1.5px solid rgba(25, 51, 41, 0.08) !important;
	border-radius: 16px !important;
	overflow: hidden !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 2px 10px -2px rgba(25, 51, 41, 0.03) !important;
}

.hessa-faq-item:hover {
	border-color: rgba(100, 140, 125, 0.35) !important;
	box-shadow: 0 8px 24px -6px rgba(25, 51, 41, 0.07) !important;
}

.hessa-faq-btn {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	padding: 20px 24px !important;
	background: #ffffff !important;
	border: none !important;
	outline: none !important;
	cursor: pointer !important;
	text-align: left !important;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #142a22 !important;
	box-shadow: none !important;
	border-radius: 16px !important;
}

.hessa-faq-btn::after {
	display: none !important;
}

.hessa-faq-icon {
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	background: #edf4f0 !important;
	color: #193329 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 14px !important;
	flex-shrink: 0 !important;
	transition: all 0.3s ease !important;
}

.hessa-faq-btn:not(.collapsed) .hessa-faq-icon {
	background: #193329 !important;
	color: #febf60 !important;
	transform: rotate(180deg) !important;
}

.hessa-faq-body {
	padding: 0 24px 22px 24px !important;
	font-family: var(--font-sans, "Poppins", sans-serif) !important;
	font-size: 14.5px !important;
	line-height: 1.75 !important;
	color: #4b5563 !important;
}

.hessa-faq-body p {
	color: #4b5563 !important;
	margin-bottom: 0 !important;
}

.hessa-faq-body a {
	color: #2f4d42 !important;
	font-weight: 600 !important;
}

.hessa-faq-body a:hover {
	color: #648c7d !important;
}

/* ==========================================================================
   Doctor Profile Page Typography & Badge Styling
   ========================================================================== */
.single-doctor h1,
.single-doctor h2,
.single-doctor h3,
.single-doctor h4,
.single-doctor h5,
.single-doctor h6,
.single-doctor .title,
.single-doctor .section-head .title,
.single-doctor .card h3,
.single-doctor .card h5 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif) !important;
  color: #193329 !important;
  font-weight: 600 !important;
}

.single-doctor p,
.single-doctor span,
.single-doctor li,
.single-doctor td,
.single-doctor th,
.single-doctor .badge,
.single-doctor .credential-chip,
.single-doctor table {
  font-family: var(--font-sans, 'Montserrat', sans-serif) !important;
}

.single-doctor .badge.bg-light,
.single-doctor .badge {
  font-family: var(--font-sans, 'Montserrat', sans-serif) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  background-color: #f4f7f5 !important;
  color: #2f4d42 !important;
  border: 1px solid rgba(100, 140, 125, 0.25) !important;
}

.single-doctor table th {
  font-family: var(--font-sans, 'Montserrat', sans-serif) !important;
  font-weight: 600 !important;
  color: #193329 !important;
}

.single-doctor table td {
  font-family: var(--font-sans, 'Montserrat', sans-serif) !important;
  font-weight: 400 !important;
  color: #374151 !important;
}

/* Dark section & The Hessa Way CTA banner overrides */
.single-doctor section[style*="linear-gradient"] h2,
.single-doctor section[style*="linear-gradient"] h2.text-white,
.single-doctor .hessa-hero-dark-accent h1,
.single-doctor .hessa-hero-dark-accent h2,
.hessa-dark-cta h2,
.hessa-dark-cta p {
  color: #ffffff !important;
}

.single-doctor section[style*="linear-gradient"] p,
.single-doctor section[style*="linear-gradient"] p.text-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   Hero CTA Button Styles - Option B (Deep Emerald + White/Gold)
   ========================================================================== */
.hero-banner .btn.btn-primary,
.hero-banner a.btn.btn-primary {
  background: linear-gradient(135deg, #193329 0%, #13271f 100%) !important;
  color: #ffffff !important;
  border: 1px solid #142a22 !important;
  box-shadow: 0 8px 24px -4px rgba(20, 42, 34, 0.38), 0 2px 6px rgba(20, 42, 34, 0.15) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-banner .btn.btn-primary:hover,
.hero-banner a.btn.btn-primary:hover {
  background: #13271f !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px -4px rgba(20, 42, 34, 0.5) !important;
}

.hero-banner .btn.btn-primary .right-icon {
  background: #febf60 !important;
  color: #193329 !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 0 12px !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-banner .btn.btn-primary:hover .right-icon {
  transform: translateX(2px) !important;
}

.hero-banner .btn.btn-secondary,
.hero-banner a.btn.btn-secondary {
  background: #ffffff !important;
  color: #193329 !important;
  border: 1.5px solid rgba(224, 155, 38, 0.65) !important;
  box-shadow: 0 4px 16px rgba(25, 51, 41, 0.06) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 11.5px 24px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-banner .btn.btn-secondary:hover,
.hero-banner a.btn.btn-secondary:hover {
  background: #fdfaf6 !important;
  border-color: #febf60 !important;
  color: #193329 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(25, 51, 41, 0.1) !important;
}

.hero-banner .btn.btn-secondary .right-icon {
  background: rgba(254, 191, 96, 0.25) !important;
  color: #193329 !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 0 12px !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-banner .btn.btn-secondary:hover .right-icon {
  transform: translateX(2px) !important;
}

/* Arrow inside right-icon - strictly prevent any distortion */
.hero-banner .btn .right-icon svg,
.hero-banner .btn .right-icon svg path,
.hero-banner .btn .right-icon i {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  min-height: 14px !important;
  max-height: 14px !important;
  font-size: 14px !important;
  line-height: 14px !important;
  stroke: #193329 !important;
  fill: none !important;
  stroke-width: 2px !important;
  color: #193329 !important;
  flex-shrink: 0 !important;
  display: block !important;
  margin: auto !important;
  transform: none !important;
}

@media (max-width: 767px) {
  /* 1 line eyebrow badge on mobile */
  .hero-banner .eyebrow-badge,
  .eyebrow-badge {
    font-size: clamp(8px, 2.3vw, 9.5px) !important;
    letter-spacing: 0.2px !important;
    padding: 5px 12px !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    display: inline-block !important;
    line-height: 1.3 !important;
  }

  /* 1 line side-by-side CTA buttons on mobile with reduced font size */
  .hero-banner .hero-content .d-flex.justify-content-center,
  .hero-banner .d-flex.justify-content-center.gap-3,
  .hero-banner .hero-cta-group {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  .hero-banner .btn.btn-primary,
  .hero-banner .btn.btn-secondary,
  .hero-banner a.btn.btn-primary,
  .hero-banner a.btn.btn-secondary {
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
    padding: 9px 13px !important;
    font-size: 12.5px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
  .hero-banner .btn .right-icon,
  .hero-banner a.btn .right-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    margin: 0 0 0 6px !important;
  }
  .hero-banner .btn .right-icon svg,
  .hero-banner a.btn .right-icon svg,
  .hero-banner .btn .right-icon i,
  .hero-banner a.btn .right-icon i {
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    max-width: 11px !important;
  }
  /* Image and Stats Card exact width match and flush touching on mobile */
  .hero-banner.style-1.hero-banner-stacked .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-banner.style-1.hero-banner-stacked .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-banner.style-1.hero-banner-stacked .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero-banner .hero-thumbnail.hero-thumbnail-stacked {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    line-height: 0 !important;
  }
  .hero-banner.style-1.hero-banner-stacked .hero-thumbnail img {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    vertical-align: bottom !important;
  }
  .hero-banner.style-1.hero-banner-stacked {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .hessa-service-quick-bar {
    width: 100% !important;
    margin-top: 0 !important;
  }
  .hessa-stats-container,
  div:has(> .hessa-service-quick-bar),
  .hero-banner + .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-banner .btn.btn-primary,
  .hero-banner .btn.btn-secondary,
  .hero-banner a.btn.btn-primary,
  .hero-banner a.btn.btn-secondary {
    padding: 8px 11px !important;
    font-size: 11.5px !important;
  }
  .hero-banner .btn .right-icon,
  .hero-banner a.btn .right-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    margin: 0 0 0 5px !important;
  }
  .hero-banner .btn .right-icon svg,
  .hero-banner a.btn .right-icon svg,
  .hero-banner .btn .right-icon i,
  .hero-banner a.btn .right-icon i {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
  }
}
















