/* ============================================
   MobileCellMedix — Iteration 5
   Dark Cupertino Cinematic
   ============================================ */

/* ---------- Top Banner ---------- */
.top-banner {
  background-color: #1c1c1e;
  color: #a1a1a6;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1001;
}

/* ---------- Reset & Base ---------- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #f5f5f7;
  background-color: #000000;
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.35s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 44px;
  width: auto;
  transition: opacity 0.2s ease;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(245, 245, 247, 0.8);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.header-link:hover {
  color: #ffffff;
}

.header-contact-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  background: #cc2030;
  border-radius: 980px;
  padding: 5px 12px;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: #dc2327;
  border-color: #dc2327;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 100px;
  background: #000000;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #000000, transparent);
  pointer-events: none;
  z-index: 2;
}

.bg-medic-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  color: rgba(220, 35, 39, 0.4);
  /* Much brighter in dark mode */
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #f5f5f7;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(
    135deg,
    #1e2b59 0%,
    #1e2b59 40%,
    #dc2327 85%,
    #dc2327 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subhead {
  font-size: clamp(17px, 2.5vw, 21px);
  color: #86868b;
  font-weight: 400;
  line-height: 1.45;
  max-width: 540px;
  margin: 0 auto 44px;
  letter-spacing: -0.005em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-buttons-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-buttons-group .btn-primary {
  padding: 14px 24px;
  font-size: 15px;
  gap: 6px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dc2327;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.15s ease;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: #a61a27;
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #dc2327;
  padding: 14px 8px;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.btn-secondary:hover {
  color: #dc2327;
}

.btn-secondary .chevron {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-secondary:hover .chevron {
  transform: translateX(3px);
}

/* ---------- Divider ---------- */
.section-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* ---------- Services ---------- */
.services {
  padding: 100px 24px;
  background: #000000;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  color: #f5f5f7;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 19px;
  color: #86868b;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: #1c1c1e;
  border-radius: 24px;
  padding: 44px 32px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(204, 32, 48, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #f5f5f7;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5f5f7;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  color: #86868b;
  line-height: 1.55;
  letter-spacing: -0.003em;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.service-tags span {
  font-size: 12px;
  font-weight: 500;
  color: #86868b;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.service-card:hover .service-icon {
  color: #dc2327;
  transform: scale(1.05);
}
.service-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 500;
  color: #f5f5f7;
}

.action-divider {
  color: #86868b;
  font-size: 14px;
  user-select: none;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.action-link span {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.action-link:hover {
  color: #dc2327;
}

.action-link:hover span {
  transform: translate(2px, -2px);
}

/* ---------- Cinematic Showcase ---------- */
.showcase-block {
  position: relative;
  padding: 100px 24px;
  background: #000000;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-block.reverse .showcase-inner {
  direction: rtl;
}

.showcase-block.reverse .showcase-inner > * {
  direction: ltr;
}

.showcase-text .eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86868b;
  margin-bottom: 12px;
}

.showcase-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f5f5f7;
  margin-bottom: 16px;
}

.showcase-text p {
  font-size: 17px;
  color: #86868b;
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 440px;
}

.showcase-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.showcase-media img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* ---------- Owner Section ---------- */
.owner-section {
  padding: 120px 24px;
}

.owner-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.owner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.owner-text .eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #dc2327;
  margin-bottom: 16px;
}

.owner-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f5f5f7;
  margin-bottom: 24px;
}

.owner-text p {
  font-size: 17px;
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.owner-text p strong {
  color: #f5f5f7;
  font-weight: 600;
}

.owner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.owner-badge span {
  font-size: 15px;
  font-weight: 500;
  color: #f5f5f7;
}

.owner-photos {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.photo-main {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.photo-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-main:hover img {
  transform: scale(1.03);
}

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-stack img:hover {
  transform: scale(1.03);
}

/* ---------- Map ---------- */
.map-section {
  padding: 100px 24px;
  background: #000000;
  text-align: center;
}

.map-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-embed-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 36px;
}

.map-embed {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) contrast(0.85);
}

.map-cta {
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 24px;
  text-align: center;
  background: #000000;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}

.footer-inner p {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.7;
}

.footer-inner a {
  color: #6e6e73;
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: #dc2327;
}

.footer-sep {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin: 16px 0;
}

/* ---------- Reviews Section ---------- */
.reviews-section {
  padding: 100px 24px;
  background: #000000;
  overflow: hidden;
}

.reviews-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 980px;
  margin-bottom: 20px;
}

.reviews-badge .google-icon {
  flex-shrink: 0;
}

.reviews-source {
  font-size: 14px;
  font-weight: 500;
  color: #f5f5f7;
  letter-spacing: 0.01em;
}

.reviews-stars-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.stars-row {
  display: flex;
  gap: 4px;
}

.reviews-rating-text {
  font-size: 17px;
  font-weight: 500;
  color: #86868b;
  letter-spacing: -0.005em;
}

/* Carousel wrapper */
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-carousel {
  overflow: hidden;
  border-radius: 24px;
  flex: 1;
  cursor: grab;
}

.reviews-carousel.dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 8px 0;
}

.reviews-carousel.dragging .reviews-track {
  transition: none;
}

/* Review card */
.review-card {
  min-width: 340px;
  max-width: 340px;
  background: #1c1c1e;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: #f5f5f7;
  letter-spacing: -0.01em;
}

.review-date {
  font-size: 12px;
  color: #86868b;
  letter-spacing: 0.01em;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 14px;
  color: #a1a1a6;
  line-height: 1.6;
  letter-spacing: -0.003em;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-google-badge span {
  font-size: 12px;
  color: #6e6e73;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Arrow buttons */
.reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
  z-index: 2;
}

.reviews-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.reviews-arrow:active {
  transform: scale(0.93);
}

.reviews-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  padding: 0;
}

.reviews-dot.active {
  background: #dc2327;
  transform: scale(1.25);
}

.reviews-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3);
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 100px 24px;
  background: #000000;
}

.faq-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 19px;
  font-weight: 600;
  color: #f5f5f7;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-icon {
  flex-shrink: 0;
  color: #86868b;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.2s ease;
  margin-left: 16px;
}

.faq-question:hover .faq-icon {
  color: #f5f5f7;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #dc2327;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 16px;
  color: #86868b;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

/* ---------- Responsive ---------- */
@media (max-width: 734px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 72px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .subhead {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  .header-logo img {
    height: 24px;
    max-width: 140px;
    object-fit: contain;
  }

  .header-nav {
    gap: 12px;
  }

  .header-link {
    display: none;
  }

  .owner-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .owner-section {
    padding: 72px 20px;
  }

  .owner-photos {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-main img {
    aspect-ratio: 4 / 5;
  }

  .services {
    padding: 72px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .showcase-block {
    padding: 72px 20px;
  }

  .showcase-inner,
  .showcase-block.reverse .showcase-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .showcase-text {
    text-align: center;
  }

  .showcase-text p {
    max-width: 100%;
    margin: 0 auto;
  }

  .showcase-media {
    border-radius: 16px;
  }

  .map-section {
    padding: 72px 20px;
  }

  .map-embed {
    height: 300px;
  }

  .map-embed-wrap {
    border-radius: 16px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .reviews-section {
    padding: 72px 20px;
  }

  .review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 24px;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-stars-summary {
    flex-direction: column;
    gap: 8px;
  }

  .faq-section {
    padding: 72px 20px;
  }

  .faq-question {
    font-size: 17px;
    padding: 20px 0;
  }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
      opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Theme Toggle ---------- */
.theme-toggle {
  background: none;
  border: none;
  color: rgba(245, 245, 247, 0.8);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ---------- Light Mode Overrides ---------- */
body.light-mode .top-banner {
  background-color: #e5e5ea;
  color: #1d1d1f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode {
  background-color: #ffffff;
  color: #1d1d1f;
}

body.light-mode .site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .header-logo img {
  background: transparent;
  padding: 0;
}

body.light-mode .header-link,
body.light-mode .theme-toggle {
  color: rgba(0, 0, 0, 0.7);
}

body.light-mode .header-link:hover,
body.light-mode .theme-toggle:hover {
  color: #000000;
}

body.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .hero {
  background: #ffffff;
}

body.light-mode .hero::after {
  background: linear-gradient(to top, #ffffff, transparent);
}

body.light-mode .bg-medic-cross {
  color: rgba(220, 35, 39, 0.15);
  /* Much brighter in light mode */
}

body.light-mode .hero h1 {
  color: #1d1d1f;
}

body.light-mode .services,
body.light-mode .showcase-block,
body.light-mode .owner-section,
body.light-mode .map-section,
body.light-mode .site-footer {
  background: #ffffff;
}

body.light-mode .services {
  background: #f5f5f7;
}

body.light-mode .map-section {
  background: #f5f5f7;
}

body.light-mode .section-header h2,
body.light-mode .service-card h3,
body.light-mode .showcase-text h2,
body.light-mode .map-header h2,
body.light-mode .owner-text h2,
body.light-mode .owner-text p strong {
  color: #1d1d1f;
}

body.light-mode .service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.light-mode .service-card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .service-icon,
body.light-mode .service-actions {
  color: #1d1d1f;
}

body.light-mode .service-tags span {
  background: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
}

body.light-mode .showcase-media::after {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .owner-badge {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .owner-badge span {
  color: #1d1d1f;
}

body.light-mode .footer-sep,
body.light-mode .section-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .map-embed-wrap {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .map-embed {
  filter: none;
}

body.light-mode .reviews-section {
  background: #f5f5f7;
}

body.light-mode .reviews-badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .reviews-source {
  color: #1d1d1f;
}

body.light-mode .review-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .review-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

body.light-mode .review-name {
  color: #1d1d1f;
}

body.light-mode .review-text {
  color: #6e6e73;
}

body.light-mode .review-google-badge {
  border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .reviews-arrow {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1d1d1f;
}

body.light-mode .reviews-arrow:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .reviews-dot {
  background: rgba(0, 0, 0, 0.12);
}

body.light-mode .reviews-dot.active {
  background: #dc2327;
}

body.light-mode .reviews-dot:hover:not(.active) {
  background: rgba(0, 0, 0, 0.25);
}

body.light-mode .faq-section {
  background: #ffffff;
}

body.light-mode .faq-item {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .faq-question {
  color: #1d1d1f;
}

body.light-mode .faq-question:hover {
  color: #000000;
}

body.light-mode .faq-icon {
  color: #6e6e73;
}

body.light-mode .faq-question:hover .faq-icon {
  color: #1d1d1f;
}

body.light-mode .faq-answer p {
  color: #6e6e73;
}

body.light-mode .sun-icon {
  display: none;
}

body.light-mode .moon-icon {
  display: block !important;
}
