/*==============================================================
  THEME OVERRIDES — Light / Dark Adaptive Styles
  Fixes hardcoded dark-mode inline styles to work in light mode
==============================================================*/

/* ─────────────────────────────────────────
   DARK/LIGHT TOGGLE — match floating btn style
   Same 52×52px square + 12px left-rounded
   corners as the 3 contact buttons
───────────────────────────────────────── */
.tt-style-switch {
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px 0 0 12px !important;
  font-size: 20px !important;
  background-color: #374151 !important;
  box-shadow: -3px 3px 14px rgba(0,0,0,0.22) !important;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1),
              box-shadow 0.22s ease !important;
}
body:not(.is-mobile) .tt-style-switch:hover {
  width: 52px !important;
  background-color: #1f2937 !important;
  transform: translateX(-7px) !important;
  box-shadow: -6px 5px 22px rgba(0,0,0,0.32) !important;
}

/* ─── LIGHT MODE BASE ────────────────────────────────────────
   body without .dark = light mode default
   Override inline rgba(255,255,255,…) colors to be dark-readable
──────────────────────────────────────────────────────────── */

/* ── Skills / Feature Cards (ashwanitiwari.html, about.html) ── */
body:not(.dark) .single-feature {
  background: #F0F0F0 !important;
  border-color: rgba(0,0,0,0.09) !important;
}
body:not(.dark) .single-feature h4,
body:not(.dark) .single-feature h5,
body:not(.dark) .single-feature h6 {
  color: var(--title-color) !important;
}
body:not(.dark) .single-feature ul li,
body:not(.dark) .single-feature p {
  color: var(--text-color) !important;
}

/* ── Education / Certificate / Team Cards ── */
body:not(.dark) .team-card.two {
  background: #f8f9fa !important;
  border-color: #e3e7ef !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06) !important;
}
body:not(.dark) .team-card.two h4,
body:not(.dark) .team-card.two h5,
body:not(.dark) .team-card.two h6,
body:not(.dark) .team-card.two strong {
  color: var(--title-color) !important;
}
body:not(.dark) .team-card.two p,
body:not(.dark) .team-card.two span:not(.badge) {
  color: var(--text-color) !important;
}

/* ── Pricing Cards ── */
body:not(.dark) .pricing-plan-card:not(.premium) {
  background: #f8f9fa !important;
  border-color: #e3e7ef !important;
}
body:not(.dark) .pricing-plan-card.premium {
  background: rgba(102,126,234,0.07) !important;
  border-color: rgba(102,126,234,0.3) !important;
}
body:not(.dark) .pricing-plan-card h4,
body:not(.dark) .pricing-plan-card h6 {
  color: var(--title-color) !important;
}
body:not(.dark) .pricing-plan-card h2 {
  color: var(--title-color) !important;
}
body:not(.dark) .pricing-plan-card.enterprise h2 {
  /* Keep gold gradient on Enterprise */
  background: linear-gradient(135deg, #c97b2a, #e8a855) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
body:not(.dark) .pricing-plan-card p,
body:not(.dark) .pricing-plan-card li {
  color: var(--text-color) !important;
}

/* ── Service Page "Why Choose" Cards ── */
body:not(.dark) .service-single-section h5[style],
body:not(.dark) .service-single-section h2[style] {
  color: var(--title-color) !important;
}
body:not(.dark) .service-single-section p[style*="255,255,255"],
body:not(.dark) .service-single-section p[style*="rgba(255"] {
  color: var(--text-color) !important;
}
/* Target "Why Choose" card h5 & body text via attribute (works for inline styles) */
body:not(.dark) [style*="rgba(102,126,234,0.04)"] h5,
body:not(.dark) [style*="rgba(102,126,234,0.04)"] h6 {
  color: var(--title-color) !important;
}
body:not(.dark) [style*="rgba(102,126,234,0.04)"] p {
  color: var(--text-color) !important;
}

/* ── Service Page Sidebar ── */
body:not(.dark) [style*="rgba(255,255,255,0.02)"] h6[style],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] h6[style],
body:not(.dark) [style*="rgba(255,255,255,0.02)"],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] {
  background: #f3f4f8 !important;
  border-color: #dde1ea !important;
}
body:not(.dark) [style*="rgba(255,255,255,0.02)"] a[style*="rgba(255,255,255"],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] a[style*="rgba(255,255,255"],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] a[style*="rgba(255, 255, 255"] {
  color: var(--text-color) !important;
}
body:not(.dark) [style*="rgba(255,255,255,0.02)"] h6[style*="rgba(255,255,255"],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] h6[style*="rgba(255,255,255"],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] h6[style*="rgba(255, 255, 255"] {
  color: rgba(0,0,0,0.4) !important;
}

/* ── Service Sidebar Active Link ── */
body:not(.dark) [style*="rgba(102,126,234,0.12)"],
body:not(.dark) [style*="rgba(102, 126, 234, 0.12)"] {
  background: rgba(102,126,234,0.1) !important;
  color: #4a55a2 !important;
}
body:not(.dark) [style*="rgba(102,126,234,0.12)"][style*="color:#fff"],
body:not(.dark) a[style*="rgba(102,126,234,0.12)"],
body:not(.dark) a[style*="rgba(102, 126, 234, 0.12)"] {
  color: #4a55a2 !important;
}

/* ── Career Position Cards ── */
body:not(.dark) .career-page-position-section .single-position[style*="rgba(255,255,255,0.02)"] {
  background: #f8f9fa !important;
  border-color: #e3e7ef !important;
}
body:not(.dark) .career-page-position-section .single-position p[style*="rgba(255,255,255"] {
  color: var(--text-color) !important;
}

/* ── Resume Profile / Hero section ── */
body:not(.dark) .at-profile-card {
  background: #f8f9fa !important;
  border-color: #e3e7ef !important;
}
body:not(.dark) .at-profile-card h1,
body:not(.dark) .at-profile-card h2,
body:not(.dark) .at-profile-card h3,
body:not(.dark) .at-profile-card h4,
body:not(.dark) .at-profile-card h5,
body:not(.dark) .at-profile-card h6 {
  color: var(--title-color) !important;
}
body:not(.dark) .at-profile-card p,
body:not(.dark) .at-profile-card span:not(.badge) {
  color: var(--text-color) !important;
}

/* ── Resume Experience Timeline ── */
body:not(.dark) .experience-timeline-section .exp-card {
  background: #f8f9fa !important;
  border-color: #e3e7ef !important;
}
body:not(.dark) .experience-timeline-section .exp-card h4,
body:not(.dark) .experience-timeline-section .exp-card h5,
body:not(.dark) .experience-timeline-section .exp-card h6,
body:not(.dark) .experience-timeline-section .exp-card strong {
  color: var(--title-color) !important;
}
body:not(.dark) .experience-timeline-section .exp-card li,
body:not(.dark) .experience-timeline-section .exp-card p {
  color: var(--text-color) !important;
}

/* ── Fix inline color:rgba(255… in generic cards ── */
body:not(.dark) [class*="card"] [style*="color: rgba(255,255,255"],
body:not(.dark) [class*="card"] [style*="color:rgba(255,255,255"] {
  color: var(--text-color) !important;
}
body:not(.dark) [class*="card"] [style*="color: #fff"],
body:not(.dark) [class*="card"] h4[style*="color: #fff"],
body:not(.dark) [class*="card"] h5[style*="color: #fff"],
body:not(.dark) [class*="card"] h6[style*="color: #fff"] {
  color: var(--title-color) !important;
}

/* ── Fixed-width paragraph on service pages ── */
body:not(.dark) p.fixed-width {
  color: var(--text-color) !important;
}

/* ── Pricing check icons stay teal in both modes ── */
.bi.bi-check2[style*="22d3ee"] {
  color: #22d3ee !important;
}

/* ── DARK MODE — preserve everything as before ── */
body.dark .single-feature,
body.dark .team-card.two,
body.dark .pricing-plan-card {
  background: inherit;
  border-color: inherit;
}

/* ── Tech stack cards on service pages (white text on dark bg) ── */
/* Use class-based selector — reliable regardless of React style rendering */
body:not(.dark) .tech-card {
  background: #f3f4f8 !important;
  border-color: #dde1ea !important;
}
body:not(.dark) .tech-card > h6 {
  color: var(--title-color) !important;
}

/* ── Service details page — broad heading/text fix for light mode ── */
body:not(.dark) .service-details-page h2,
body:not(.dark) .service-details-page h3,
body:not(.dark) .service-details-page h4,
body:not(.dark) .service-details-page h5,
body:not(.dark) .service-details-page h6 {
  color: var(--title-color) !important;
}
body:not(.dark) .service-details-page p {
  color: var(--text-color) !important;
}
body:not(.dark) .service-details-page li {
  color: var(--text-color) !important;
}

/* ── Why-Choose cards (rgba background, inline styles) ── */
/* Fallback: any element with both rgba variants as background */
body:not(.dark) [style*="rgba(102,126,234,0.04)"],
body:not(.dark) [style*="rgba(102, 126, 234, 0.04)"] {
  background: rgba(102,126,234,0.04) !important;
  border-color: rgba(102,126,234,0.18) !important;
}
body:not(.dark) [style*="rgba(102,126,234,0.04)"] h5,
body:not(.dark) [style*="rgba(102, 126, 234, 0.04)"] h5,
body:not(.dark) [style*="rgba(102,126,234,0.04)"] h6,
body:not(.dark) [style*="rgba(102, 126, 234, 0.04)"] h6 {
  color: var(--title-color) !important;
}
body:not(.dark) [style*="rgba(102,126,234,0.04)"] p,
body:not(.dark) [style*="rgba(102, 126, 234, 0.04)"] p {
  color: var(--text-color) !important;
}

/* ── Service sidebar (rgba(255,255,255,0.02) background) — both React renderings ── */
body:not(.dark) [style*="rgba(255,255,255,0.02)"],
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] {
  background: #f3f4f8 !important;
  border-color: #dde1ea !important;
}
body:not(.dark) [style*="rgba(255,255,255,0.02)"] a,
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] a {
  color: var(--text-color) !important;
}
body:not(.dark) [style*="rgba(255,255,255,0.02)"] h6,
body:not(.dark) [style*="rgba(255, 255, 255, 0.02)"] h6 {
  color: rgba(0,0,0,0.4) !important;
}

/* ── Service sidebar active link ── */
body:not(.dark) [style*="rgba(102,126,234,0.12)"],
body:not(.dark) [style*="rgba(102, 126, 234, 0.12)"] {
  background: rgba(102,126,234,0.1) !important;
}
body:not(.dark) a[style*="rgba(102,126,234,0.12)"],
body:not(.dark) a[style*="rgba(102, 126, 234, 0.12)"] {
  color: #4a55a2 !important;
}

/* ── Ensure gradient number headings (01. 02. etc.) remain gradient in light mode ── */
body:not(.dark) [style*="linear-gradient(135deg,#667eea,#a78bfa)"][style*="-webkit-text-fill-color:transparent"],
body:not(.dark) [style*="linear-gradient(135deg,#f6d365,#fda085)"][style*="-webkit-text-fill-color:transparent"] {
  /* Keep as-is — gradients are visible on light bg too */
  opacity: 1;
}

/* ── Breadcrumb section text ── */
body:not(.dark) .breadcrumb-section .banner-content p,
body:not(.dark) .breadcrumb-section .banner-content span {
  color: rgba(255,255,255,0.85) !important;
}

/* ── Blog details article body ── */
body:not(.dark) .news-insight-details-page [style*="color: rgba(255,255,255"],
body:not(.dark) .news-insight-details-page [style*="color:rgba(255,255,255"] {
  color: var(--text-color) !important;
}

/* ─────────────────────────────────────────
   ASHWANITIWARI.HTML — Profile & Timeline
───────────────────────────────────────── */

/* Profile hero card in light mode */
body:not(.dark) .at-profile-card > div:first-child {
  background: rgba(102,126,234,0.07) !important;
  border-color: rgba(102,126,234,0.25) !important;
}
body:not(.dark) #photo-placeholder p {
  color: rgba(0,0,0,0.35) !important;
}
body:not(.dark) #photo-placeholder i {
  color: rgba(102,126,234,0.4) !important;
}

/* Profile hero - tags/badges */
body:not(.dark) .at-profile-card ~ div [style*="rgba(255,255,255,0.04)"] {
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.12) !important;
}
body:not(.dark) .at-profile-card ~ div a[style*="rgba(255,255,255"] {
  color: var(--text-color) !important;
}

/* Profile title column */
body:not(.dark) #profile-hero h1 {
  color: var(--title-color) !important;
}
body:not(.dark) #profile-hero [style*="rgba(255,255,255,0.72)"],
body:not(.dark) #profile-hero [style*="rgba(255,255,255,0.62)"] {
  color: var(--text-color) !important;
}
body:not(.dark) #profile-hero [style*="rgba(255,255,255,0.55)"] {
  color: rgba(0,0,0,0.45) !important;
}
body:not(.dark) #profile-hero [style*="color:#fff"] {
  color: var(--title-color) !important;
}

/* Experience timeline */
body:not(.dark) .experience-timeline-section .timeline {
  border-left-color: rgba(102,126,234,0.25) !important;
}
body:not(.dark) .timeline-marker {
  border-color: #fff !important;
}
body:not(.dark) .exp-card {
  background: #f8f9fa !important;
  border-color: #e3e7ef !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}
body:not(.dark) .exp-card h4 {
  color: var(--title-color) !important;
}
body:not(.dark) .exp-card h6,
body:not(.dark) .exp-card [style*="rgba(255,255,255,0.55)"] {
  color: rgba(0,0,0,0.45) !important;
}
body:not(.dark) .exp-card li,
body:not(.dark) .exp-card [style*="rgba(255,255,255,0.72)"] {
  color: var(--text-color) !important;
}
body:not(.dark) .exp-card strong[style*="color:#fff"] {
  color: var(--title-color) !important;
}
/* Timeline date badges in light mode */
body:not(.dark) .exp-card [style*="rgba(102,126,234,0.15)"] {
  background: rgba(102,126,234,0.1) !important;
}
body:not(.dark) .exp-card [style*="rgba(246,211,101,0.1)"] {
  background: rgba(200,140,30,0.1) !important;
  color: #a07000 !important;
  border-color: rgba(200,140,30,0.25) !important;
}
body:not(.dark) .exp-card [style*="rgba(255,255,255,0.06)"][style*="border"] {
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: rgba(0,0,0,0.5) !important;
}

/* Feature section (skills grid) heading/subtext */
body:not(.dark) .about-page-feature-section .section-title2 h2,
body:not(.dark) .about-page-feature-section .section-title2 p {
  color: var(--title-color) !important;
}

/* Education / cert section headings */
body:not(.dark) .about-page-team-section .section-title.three h2,
body:not(.dark) .about-page-team-section .section-title.three p {
  color: var(--title-color) !important;
}

/* Gallery section - white section title override */
body:not(.dark) .section-title.three.white h2,
body:not(.dark) .section-title.three.white p {
  color: var(--title-color) !important;
}

/* ─────────────────────────────────────────
   PROFILE HERO — Social links in light mode
───────────────────────────────────────── */
body:not(.dark) #profile-hero a[style*="rgba(255,255,255,0.04)"],
body:not(.dark) #profile-hero a[style*="rgba(255, 255, 255, 0.04)"],
body:not(.dark) #profile-hero [style*="rgba(255,255,255,0.04)"],
body:not(.dark) #profile-hero [style*="rgba(255, 255, 255, 0.04)"] {
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: var(--text-color) !important;
}
body:not(.dark) #profile-hero [style*="color:rgba(255,255,255,0.8)"],
body:not(.dark) #profile-hero [style*="color: rgba(255,255,255,0.8)"],
body:not(.dark) #profile-hero [style*="color:rgba(255, 255, 255, 0.8)"],
body:not(.dark) #profile-hero a[style*="color:rgba(255,255,255"],
body:not(.dark) #profile-hero a[style*="color: rgba(255,255,255"],
body:not(.dark) #profile-hero a[style*="color:rgba(255, 255, 255"] {
  color: var(--text-color) !important;
}

/* ─────────────────────────────────────────
   SERVICE PAGES — "Why Choose" card text  
───────────────────────────────────────── */
/* All headings inside why-choose cards in light mode */
body:not(.dark) h5[style*="color:#fff"],
body:not(.dark) h6[style*="color: #fff"],
body:not(.dark) h6[style*="color:#fff"] {
  color: var(--title-color) !important;
}
/* All body paragraphs that use white/near-white in card context */
body:not(.dark) p[style*="color:rgba(255,255,255,0.7)"],
body:not(.dark) p[style*="color: rgba(255,255,255,0.7)"],
body:not(.dark) p[style*="color:rgba(255,255,255,0.72)"],
body:not(.dark) p[style*="color: rgba(255,255,255,0.72)"] {
  color: var(--text-color) !important;
}
/* Tech stack card text on service pages */
body:not(.dark) h6[style*="color: #fff; margin: 0; font-size"] {
  color: var(--title-color) !important;
}

/* ─────────────────────────────────────────
   SERVICE SIDEBAR — light mode fix
───────────────────────────────────────── */
body:not(.dark) [style*="rgba(255,255,255,0.06)"] + [style*="margin-top:24px"] {
  border-color: rgba(0,0,0,0.1) !important;
}
body:not(.dark) a[style*="color:rgba(255,255,255,0.65)"],
body:not(.dark) a[style*="color: rgba(255,255,255,0.65)"],
body:not(.dark) a[style*="color:rgba(255, 255, 255, 0.65)"],
body:not(.dark) a[style*="color: rgba(255, 255, 255, 0.65)"] {
  color: var(--text-color) !important;
}
body:not(.dark) i[style*="color:rgba(255,255,255,0.4)"],
body:not(.dark) i[style*="color: rgba(255,255,255,0.4)"],
body:not(.dark) i[style*="color:rgba(255, 255, 255, 0.4)"],
body:not(.dark) i[style*="color: rgba(255, 255, 255, 0.4)"] {
  color: rgba(0,0,0,0.3) !important;
}

/* ─────────────────────────────────────────
   PRICING — light mode hover text
───────────────────────────────────────── */
body:not(.dark) .pricing-plan-card .included-feature-area ul li {
  color: var(--text-color) !important;
}

/* ─────────────────────────────────────────
   CAREER — position description text
───────────────────────────────────────── */
body:not(.dark) .single-position p[style*="rgba(255,255,255,0.6)"] {
  color: var(--text-color) !important;
}

/* ─────────────────────────────────────────
   HERO BANNER — SVG decorative line color
───────────────────────────────────────── */
.home3-banner-section .banner-content-wrap .banner-vector svg path {
  stroke: #73A2FE !important;
}
.home3-banner-section .banner-content-wrap .banner-vector svg circle {
  fill: #73A2FE !important;
}

/* ─────────────────────────────────────────
   FLOATING CONTACT WIDGET — Desktop
   Fixed right-side icons (≥992px only)
   Tooltip is ABSOLUTELY positioned so
   hovering one btn NEVER affects others.
───────────────────────────────────────── */
.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 9990;
}
.floating-contact .fc-btn {
  position: relative;          /* tooltip anchors to this */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  border-radius: 12px 0 0 12px;
  box-shadow: -3px 3px 14px rgba(0,0,0,0.22);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1),
              box-shadow 0.22s ease;
  overflow: visible;           /* let tooltip escape */
}
.floating-contact .fc-btn:hover {
  transform: translateX(-7px);
  box-shadow: -6px 5px 22px rgba(0,0,0,0.32);
}

/* ── Tooltip label (absolutely positioned LEFT of btn) ── */
.floating-contact .fc-btn .fc-label {
  position: absolute;
  right: calc(100% + 12px);   /* to the left, with gap */
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  transform-origin: right center;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: -2px 3px 12px rgba(0,0,0,0.2);
}
/* Arrow pointing right toward the button */
.floating-contact .fc-btn .fc-label::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right: none;
  border-left-width: 7px;
}
.floating-contact .fc-btn:hover .fc-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Per-button colours (icon bg + tooltip bg + arrow) */
.floating-contact .fc-call                  { background: #2563eb; }
.floating-contact .fc-call:hover            { background: #1d4ed8; }
.floating-contact .fc-call   .fc-label      { background: #2563eb; }
.floating-contact .fc-call   .fc-label::after { border-left-color: #2563eb; }

.floating-contact .fc-whatsapp              { background: #22c55e; }
.floating-contact .fc-whatsapp:hover        { background: #16a34a; }
.floating-contact .fc-whatsapp .fc-label    { background: #22c55e; }
.floating-contact .fc-whatsapp .fc-label::after { border-left-color: #22c55e; }

.floating-contact .fc-email                 { background: #ef4444; }
.floating-contact .fc-email:hover           { background: #dc2626; }
.floating-contact .fc-email .fc-label       { background: #ef4444; }
.floating-contact .fc-email .fc-label::after { border-left-color: #ef4444; }

/* ─────────────────────────────────────────
   MOBILE CONTACT STRIP
   Fixed bottom bar — dark glassmorphism
   (<992px only via d-lg-none)
───────────────────────────────────────── */
.mobile-contact-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 14, 22, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px 18px 0 0;
  z-index: 9990;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.28);
  overflow: hidden;
}
.mobile-contact-strip a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 6px 10px;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease;
  position: relative;
}
.mobile-contact-strip a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.mobile-contact-strip a:active {
  background: rgba(255,255,255,0.06);
}

/* Coloured icon circle */
.mobile-contact-strip a .mcs-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.mobile-contact-strip a:nth-child(1) .mcs-icon { background: #2563eb; }
.mobile-contact-strip a:nth-child(2) .mcs-icon { background: #22c55e; }
.mobile-contact-strip a:nth-child(3) .mcs-icon { background: #ef4444; }

/* Label (bold) + Value (subdued) */
.mobile-contact-strip a .mcs-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
.mobile-contact-strip a .mcs-value {
  font-size: 9.5px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
  text-align: center;
}

/* Push page content up so strip doesn't cover footer on mobile */
@media (max-width: 991px) {
  body {
    padding-bottom: 76px;
  }
}


