.exc-top-nav #navbarLinks a.activeLink {
  color: #ffffff;
}

.hide {
  display: none;
}



/* ═══════════════════════════════════════════════
   Form Validation – Field States
   ═══════════════════════════════════════════════ */

.form-control.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2) !important;
  background-color: #2c1a1a !important;
  color: #fff !important;
}

.form-control.input-valid {
  border-color: #38a169 !important;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15) !important;
  background-color: #142417 !important;
  color: #fff !important;
}

.field-error-msg {
  display: block;
  color: #e53e3e;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  padding-left: 2px;
  animation: slideInError 0.2s ease;
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   Success Confirmation Modal
   ═══════════════════════════════════════════════ */

#al-success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#al-success-modal.al-modal-visible {
  opacity: 1;
  pointer-events: all;
}

.al-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 35, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.al-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 4px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#al-success-modal.al-modal-visible .al-modal-box {
  transform: scale(1) translateY(0);
}

.al-modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a202c, #4a5568);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.al-modal-icon .fa {
  font-size: 38px;
  color: #fff;
}

.al-modal-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 12px;
  line-height: 1.3;
}

.al-modal-box p {
  font-size: 14px;
  color: black;
  line-height: 1.7;
  margin: 0 0 28px;
}

.al-modal-close-btn {
  display: inline-block;
  padding: 12px 36px;
  background: black;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(168, 137, 47, 0.4);
}

.al-modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 137, 47, 0.55);
}

.al-modal-close-btn:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   Services — 3-column grid (desktop only)
   ═══════════════════════════════════════════════ */
.services-list {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.services-list > li {
  width: 33.333% !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  padding-bottom: 16px !important;
}

/* Ensure all service image frames have identical size and aspect ratio */
.service-img {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  position: relative !important;
}

.service-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 839px) {

  /* ── Section header ── */
  .exc-services.exc-section {
    padding-top: 28px !important;
    padding-bottom: 0 !important;
    background: #111 !important;
  }

  .exc-services .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .exc-services .heading-cols {
    padding: 0 20px 20px !important;
    margin: 0 !important;
  }

  .exc-services .heading-cols h1 {
    font-size: 22px !important;
    color: #fff !important;
    margin: 0 0 6px !important;
    line-height: 1.2 !important;
  }

  .exc-services .heading-cols h1 br {
    display: none;
  }

  .exc-services .heading-cols p {
    display: none !important;
  }

  /* ── Grid → full-width list ── */
  .services-list {
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
  }

  .services-list > li {
    width: 100% !important;
    padding: 0 !important;
  }

  /* ── Card reset ── */
  .exc-service {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    height: auto !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    cursor: pointer !important;
  }

  /* ── Hide image ── */
  .exc-service .service-img {
    display: none !important;
  }

  /* ── Header row (always visible) ── */
  .exc-service .services-head-text {
    position: static !important;
    bottom: auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    padding: 15px 20px !important;
    background: transparent !important;
    transition: background 0.2s ease !important;
    width: 100% !important;
  }

  .exc-service.is-open .services-head-text {
    background: rgba(171,15,8,0.12) !important;
  }

  /* ── Service name ── */
  .exc-service h4 {
    flex: 1 !important;
    order: 1 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
  }

  .exc-service h4 a {
    color: #fff !important;
    pointer-events: none !important;
  }

  /* ── Price badge — right beside chevron ── */
  .exc-service p.price-start,
  .exc-service:hover p.price-start {
    order: 2 !important;
    position: static !important;
    background: transparent !important;
    background-color: transparent !important;
    color: rgba(255,255,255,0.45) !important;
    font-size: 10px !important;
    float: none !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    margin: 0 8px 0 0 !important;
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
    border: none !important;
    border-radius: 0 !important;
    line-height: 1.4 !important;
    top: auto !important;
    left: auto !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
  }

  .exc-service p.price-start strong,
  .exc-service:hover p.price-start strong {
    font-size: 11px !important;
    color: rgba(255,255,255,0.65) !important;
    display: block !important;
  }

  /* Hide price when card is open */
  .exc-service.is-open p.price-start {
    display: none !important;
  }

  /* ── Chevron indicator ── */
  .exc-service .services-head-text::after {
    content: '\f107' !important;
    font-family: FontAwesome !important;
    font-size: 16px !important;
    color: rgba(255,255,255,0.35) !important;
    transition: transform 0.3s ease, color 0.2s ease !important;
    display: block !important;
    flex-shrink: 0 !important;
    order: 3 !important;
  }

  .exc-service.is-open .services-head-text::after {
    transform: rotate(180deg) !important;
    color: var(--brand-color) !important;
  }

  /* ── Hide clearfix ── */
  .exc-service .clearfix {
    display: none !important;
  }

  /* ── Price list — collapsed, wraps to second row ── */
  .exc-service .service-price-desc {
    order: 4 !important;
    flex-basis: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    border-top: none !important;
  }

  /* ── Price list — expanded on tap ── */
  .exc-service.is-open .service-price-desc {
    max-height: 200px !important;
    padding-bottom: 14px !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    padding-top: 4px !important;
  }

  /* ── Price list items ── */
  .exc-service .service-price-desc ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  .exc-service .service-price-desc ul li {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
  }

  .exc-service .service-price-desc ul li:first-child {
    border-top: none !important;
  }

  .service-price-desc ul li a,
  .exc-service:hover .service-price-desc ul li a {
    color: rgba(255,255,255,0.6) !important;
    font-size: 12px !important;
    padding: 9px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .service-price-desc ul li a:hover,
  .exc-service:hover .service-price-desc ul li a:hover {
    color: #fff !important;
  }

  .service-items {
    font-size: 12px !important;
    float: none !important;
  }

  .service-price {
    font-size: 11px !important;
    float: none !important;
    color: var(--brand-color) !important;
    font-weight: 700 !important;
  }

  /* ── Disable perfect-scrollbar on mobile ── */
  .exc-service .scroll-block {
    overflow: visible !important;
    max-height: none !important;
    position: static !important;
  }
  .ps-container > .ps-scrollbar-y-rail {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════
   Standalone Contact Strip
   ═══════════════════════════════════════════════ */
.exc-contact-strip {
  background: var(--bg-color-main);
  color: #d5d5d5;
}
.exc-contact-strip a,
.exc-contact-strip h1,
.exc-contact-strip h2,
.exc-contact-strip h3,
.exc-contact-strip h4,
.exc-contact-strip h5,
.exc-contact-strip h6,
.exc-contact-strip .info-desc,
.exc-contact-strip .exc-contact-info li i {
  color: #fff;
}
.exc-contact-strip p,
.exc-contact-strip a {
  color: #d5d5d5;
}
.exc-contact-strip .exc-contact-info li i {
  border: 2px solid #fff;
}

.exc-contact-strip + .exc-footer {
  margin-top: 0;
}

.exc-mobile-nav,
.exc-mobile-backdrop {
  display: none;
}

@media (max-width: 839px) {
  body.exc-mobile-nav-open {
    overflow: hidden;
  }

  .exc-topbar {
    display: none;
  }

  .exc-navbar .container {
    padding: 14px 15px;
  }

  .exc-logo {
    float: none;
    margin-right: 0;
    max-width: 65px;
  }

  .exc-logo img {
    max-width: 100%;
    height: auto;
  }

  .exc-header .exc-contact-info,
  .exc-header .exc-appointment {
    display: none;
  }

  .exc-menu-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 48px;
    padding: 0;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    z-index: 2101;
  }

  .exc-menu-btn .menu-text {
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  .exc-menu-btn .menu-icon {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .exc-menu-btn.exc-menu-close .menu-icon {
    background-color: transparent;
  }

  .exc-menu-btn.exc-menu-close .menu-icon:before,
  .exc-menu-btn.exc-menu-close .menu-icon:after {
    background-color: #fff;
    bottom: 0;
    top: auto;
  }

  .exc-menu-btn.exc-menu-close .menu-icon:before {
    transform: rotate(45deg);
  }

  .exc-menu-btn.exc-menu-close .menu-icon:after {
    transform: rotate(-45deg);
  }

  .exc-mobile-nav {
    background: var(--bg-color-main);
    border-left: 1px solid var(--border-color-subtle);
    bottom: 0;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
    display: block;
    max-width: 320px;
    overflow-y: auto;
    padding: 92px 20px 28px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    width: 86vw;
    z-index: 2100;
  }

  body.exc-mobile-nav-open .exc-mobile-nav {
    transform: translateX(0);
  }

  .exc-mobile-backdrop {
    background: rgba(0, 0, 0, 0.52);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.25s ease;
    z-index: 2090;
  }

  body.exc-mobile-nav-open .exc-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .exc-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .exc-mobile-links li + li {
    border-top: 1px solid var(--border-color-subtle);
  }

  .exc-mobile-links a,
  .exc-mobile-contact a {
    color: #d5d5d5;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 15px 12px;
    text-transform: uppercase;
  }

  .exc-mobile-links a.activeLink {
    background: var(--brand-color);
    color: #fff;
  }

  .exc-mobile-contact {
    border-top: 1px solid var(--border-color-subtle);
    margin-top: 18px;
    padding-top: 12px;
  }

  .exc-mobile-contact a {
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
  }

  .exc-mobile-contact i {
    margin-right: 10px;
    width: 16px;
  }

}

/* ═══════════════════════════════════════════════
   Slider — text readability overlay
   ═══════════════════════════════════════════════ */

/* Dark gradient overlay on every slide so text is always legible */
#camera_wrap .camera_overlayer {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.30) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.70) 100%
  ) !important;
  z-index: 1 !important;
}

/* Stronger text shadows on all slide text layers */
.s1-layer-sm,
.s1-layer-big,
.s2-layer-sm,
.s2-layer-md,
.s2-layer-lg {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 1) !important;
}

.circle-inner,
.circle-off {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════════════
   Hero — Book Appointment Button
   ═══════════════════════════════════════════════ */
#exc-slider {
  position: relative;
}

@media (min-width: 840px) {
  #exc-slider,
  #exc-slider .camera_wrap,
  #exc-slider .camera_fakehover,
  #exc-slider .camera_target,
  #exc-slider .cameraCont,
  #exc-slider .cameraSlide {
    height: 70vh !important;
  }

  #exc-slider .camera_wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    top: 0 !important;
    left: 0 !important;
  }
}

.hero-book-btn {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none !important;
  align-items: center;
  gap: 9px;
  background: var(--brand-color);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none !important;
}

.hero-book-btn i {
  font-size: 15px;
}

.hero-book-btn:hover,
.hero-book-btn:focus {
  background: #c41209;
  color: #fff !important;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  text-decoration: none !important;
}

.hero-book-btn:active {
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

/* Mobile adjustments */
@media (max-width: 839px) {
  .hero-book-btn {
    display: inline-flex !important;
    font-size: 13px;
    padding: 11px 24px;
    bottom: 18px;
  }
}

/* ═══════════════════════════════════════════════
   Header Layout — Logo (Left), Details (Middle), Appointment (Right)
   ═══════════════════════════════════════════════ */

/* Style link tags in header contact info */
.exc-header .exc-contact-info li a {
  color: inherit !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}
.exc-header .exc-contact-info li a:hover {
  opacity: 0.8;
}

@media (min-width: 840px) {
  /* Turn exc-brand container into a flex row to distribute space */
  .exc-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    float: none !important;
  }

  /* Remove legacy float alignments */
  .exc-logo {
    float: none !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }

  /* 2 rows layout: Grid with 2 columns */
  .exc-header .exc-contact-info {
    float: none !important;
    margin-top: 0 !important;
    display: grid !important;
    grid-template-columns: auto auto !important;
    grid-row-gap: 8px !important;
    grid-column-gap: 32px !important;
    justify-content: center !important;
    flex-grow: 1 !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .exc-header .exc-contact-info li {
    float: none !important;
    padding-left: 48px !important;
    margin-left: 0 !important;
  }

  .exc-header .exc-contact-info li + li {
    margin-left: 0 !important;
  }

  .exc-header .exc-appointment {
    float: none !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
  }
}

/* ═══════════════════════════════════════════════
   Page Banner Backdrop — High-Resolution Override
   ═══════════════════════════════════════════════ */
.exc-page-banner {
  height: 230px !important;
  margin-bottom: 30px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Smooth gradient overlay to blend the bottom of the image into the page background */
.exc-page-banner::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    var(--bg-color-main) 100%
  ) !important;
  z-index: 1 !important;
}

/* Glassmorphic card tag for titles (now inside page content at the top-left) */
.exc-page-title-overlay {
  background: rgba(26, 26, 27, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 24px 36px !important;
  max-width: 480px !important;
  width: 100% !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
  animation: bannerSlideIn 0.6s ease-out both !important;
  display: block !important;
}

/* spacing alignment for appointment and quote forms */
.exc-page-content .make-appointment {
  margin-top: 0 !important;
}

@keyframes bannerSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exc-page-title-overlay h1 {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  color: var(--text-color-primary) !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.exc-page-title-overlay .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.exc-page-title-overlay .breadcrumb > li {
  font-size: 13px !important;
  color: var(--text-color-muted) !important;
}

.exc-page-title-overlay .breadcrumb > li + li:before {
  color: var(--text-color-muted) !important;
}

.exc-page-title-overlay .breadcrumb > li a {
  color: var(--text-color-muted) !important;
  transition: color 0.2s ease !important;
}

.exc-page-title-overlay .breadcrumb > li a:hover {
  color: var(--brand-color) !important;
}

@media (max-width: 767px) {
  .exc-page-banner {
    height: 180px !important;
    margin-bottom: 20px !important;
  }
  .exc-page-title-overlay {
    padding: 16px 24px !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 25px !important;
  }
  .exc-page-title-overlay h1 {
    font-size: 20px !important;
  }
  .breadcrumb {
    display: inline-flex !important;
  }
}

/* ═══════════════════════════════════════════════
   Header Mega Dropdown Image Styling
   ═══════════════════════════════════════════════ */
.mega-dropdown .dropdown-item img {
  width: 100% !important;
  height: 120px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  margin-bottom: 12px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.mega-dropdown .dropdown-item:hover img {
  transform: scale(1.03) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) !important;
}

/* ═══════════════════════════════════════════════
   Mobile Hero CTA Buttons
   ═══════════════════════════════════════════════ */
.hero-cta-group {
  display: none !important;
}

@media (max-width: 839px) {
  .hero-cta-group {
    position: absolute !important;
    bottom: 18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 90% !important;
    max-width: 380px !important;
  }

  /* Override book button's absolute positioning on mobile */
  .hero-cta-group .hero-book-btn,
  .hero-cta-group .hero-quote-btn {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    padding: 10px 12px !important;
    border-radius: 2px !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s / transform 0.2s ease !important;
    text-decoration: none !important;
    flex: 1 !important;
  }

  .hero-cta-group .hero-book-btn {
    background: var(--brand-color) !important;
  }

  .hero-cta-group .hero-book-btn:hover {
    background: var(--brand-color-hover) !important;
    transform: translateY(-2px) !important;
  }

  .hero-cta-group .hero-quote-btn {
    background: var(--border-color-subtle) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .hero-cta-group .hero-quote-btn:hover {
    background: #3f3f40 !important;
    transform: translateY(-2px) !important;
  }
}

/* ═══════════════════════════════════════════════
   Mobile Hero — Larger Titles & Smaller Indicators
   ═══════════════════════════════════════════════ */
@media (max-width: 839px) {
  /* Slide 1 — increase text sizes */
  .s1-layer-sm {
    font-size: 28px !important;
  }
  .s1-layer-big {
    font-size: 36px !important;
    margin-bottom: 18px !important;
    padding-bottom: 22px !important;
  }

  /* Slide 2 — increase text sizes */
  .s2-layer-md {
    font-size: 20px !important;
  }
  .s2-layer-lg {
    font-size: 52px !important;
    margin-bottom: 10px !important;
  }
  .s2-layer-sm {
    font-size: 15px !important;
    margin-bottom: 14px !important;
  }

  /* Slide 3 — circle sizes */
  .circle-inner,
  .s3-circle {
    height: 180px !important;
    width: 180px !important;
  }
  .circle-inner {
    font-size: 16px !important;
    line-height: 18px !important;
  }
  .circle-inner span {
    font-size: 22px !important;
    line-height: 22px !important;
  }
  .circle-off {
    height: 60px !important;
    width: 60px !important;
    font-size: 16px !important;
  }

  /* Slide change indicators — smaller dots on mobile */
  .camera_wrap .camera_pag .camera_pag_ul li {
    height: 10px !important;
    width: 10px !important;
    margin: 12px 3px !important;
    border-radius: 5px !important;
  }
  .camera_wrap .camera_pag .camera_pag_ul li > span {
    height: 6px !important;
    width: 6px !important;
    left: 2px !important;
    top: 2px !important;
    border-radius: 3px !important;
  }

  /* Slide prev/next arrows — smaller on mobile */
  .camera_prev,
  .camera_next {
    height: 30px !important;
    width: 30px !important;
    margin-top: -15px !important;
  }
  .camera_prev > span,
  .camera_next > span {
    height: 30px !important;
    width: 30px !important;
    background-size: contain !important;
  }
  .camera_prev {
    left: 8px !important;
  }
  .camera_next {
    right: 8px !important;
  }
}

/* Even smaller screens — fine-tuned hero text */
@media (max-width: 480px) {
  .s1-layer-sm {
    font-size: 22px !important;
  }
  .s1-layer-big {
    font-size: 28px !important;
    margin-bottom: 14px !important;
    padding-bottom: 18px !important;
  }
  .s2-layer-md {
    font-size: 17px !important;
  }
  .s2-layer-lg {
    font-size: 42px !important;
  }
  .s2-layer-sm {
    font-size: 13px !important;
  }
}

/* Hide mobile services drilldown elements on desktop by default */
.mobile-services-circle-wrap,
.mobile-subservices-container {
  display: none;
}

/* ==========================================================================
   Mobile Services Drilldown Redesign (Mobile Only)
   ========================================================================== */
@media (max-width: 839px) {
  /* Hide static services header */
  .exc-services .heading-cols {
    display: none !important;
  }

  /* Make sure parent is relative and overflow visible */
  .exc-services {
    position: relative !important;
    overflow: visible !important;
    padding-top: 70px !important; /* Space for the gear circle */
  }

  /* Circle wrapping to center it */
  .mobile-services-circle-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    display: block !important;
    z-index: 1000 !important;
  }

  /* Floating red circle gear */
  .mobile-services-circle {
    width: 145px !important;
    height: 145px !important;
    border-radius: 50% !important;
    background-image: url('../images/gear_icon.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: -72px !important; /* overflow by exactly half of new height */
    left: 50% !important;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 !important; /* reset padding so red circle centers correctly */
    cursor: default !important;
    box-sizing: border-box !important;
    user-select: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
  }

  /* When drilldown state is active: rotate circle 360 degrees */
  .exc-services.is-drilldown .mobile-services-circle {
    transform: translateX(-50%) rotate(360deg);
    cursor: pointer !important;
  }

  /* Red circle on top of gear showing outer gear teeth only (centered absolutely) */
  .mobile-services-circle-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 95px !important; /* Reduced to 80px to expose gear teeth */
    height: 95px !important;
    border-radius: 50% !important;
    background-color: var(--brand-color) !important; /* Red circle background */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important; /* overlay shadow */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important; /* let click bubble to parent circle */
    box-sizing: border-box !important;
    padding: 6px 4px !important;
    margin: 0 !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Text label style */
  .mobile-services-title {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    white-space: normal !important; /* Allow wrapping at spaces */
    word-break: keep-all !important; /* Do not break inside words */
    overflow-wrap: break-word !important; /* Fallback for exceptionally long words */
    text-align: center !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
    display: block !important;
  }

  /* Back Arrow Icon */
  .mobile-services-back-icon {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2px !important;
    display: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  }

  .exc-services.is-drilldown .mobile-services-back-icon {
    display: block !important;
  }

  /* Subservices Drilldown Container */
  .mobile-subservices-container {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    width: 100% !important;
    padding: 10px 20px 30px !important;
    box-sizing: border-box !important;
  }

  .mobile-subservices-container ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mobile-subservices-container ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    margin: 0 !important;
  }

  .mobile-subservices-container ul li:last-child {
    border-bottom: none !important;
  }

  /* List row items with nice animations */
  .mobile-subservices-container ul li a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 12px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    background-color: transparent !important;
    border-radius: 4px !important;
  }

  .mobile-subservices-container ul li a:hover,
  .mobile-subservices-container ul li a:active {
    background-color: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
  }

  .mobile-subservices-container .service-items {
    flex: 1 !important;
    text-align: left !important;
    line-height: 1.4 !important;
    padding-right: 15px !important;
  }

  .mobile-subservices-container .service-price {
    color: var(--brand-color) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}

/* ═══════════════════════════════════════════════
   Sub-Pages Dark Theme (Scope: .exc-page-content)
   ═══════════════════════════════════════════════ */

/* 1. Global background and text color for sub-pages */
body {
  background-color: var(--bg-color-main) !important;
}

.exc-page-content {
  background-color: var(--bg-color-main) !important;
  color: var(--text-color-secondary) !important;
}

/* 2. Text elements legibility */
.exc-page-content p,
.exc-page-content .block-label,
.exc-page-content .customer-care,
.exc-page-content .privacy-policy,
.exc-page-content .privacy-policy a {
  color: var(--text-color-muted) !important;
}

.exc-page-content .privacy-policy a {
  text-decoration: underline !important;
}

.exc-page-content .privacy-policy a:hover {
  color: var(--brand-color) !important;
}

/* 3. Headers and Titles (Bright White) */
.exc-page-content h1,
.exc-page-content h2,
.exc-page-content h3,
.exc-page-content h4,
.exc-page-content h5,
.exc-page-content h6,
.exc-page-content .exc-page-title h1,
.exc-page-content .exc-page-subheading h2 {
  color: var(--text-color-primary) !important;
}

/* 4. Breadcrumb styling */
.exc-page-content .breadcrumb > li {
  color: var(--text-color-muted) !important;
}

.exc-page-content .breadcrumb > li + li:before {
  color: var(--text-color-muted) !important;
}

.exc-page-content .breadcrumb > li > a {
  color: var(--text-color-muted) !important;
}

.exc-page-content .breadcrumb > li > a:hover {
  color: var(--brand-color) !important;
}

/* 5. Separators/Borders changed to dark gray/black */
.exc-page-content .exc-page-title,
.exc-page-content .exc-page-subheading,
.exc-page-content .widget h3,
.exc-page-content .post-opts,
.exc-page-content .entry-meta,
.exc-page-content .exc-accordion .panel-title,
.exc-page-content .exc-accordion .panel-title:before,
.exc-page-content .exc-accordion .panel-body,
.exc-page-content .form-control,
.exc-page-content .bootstrap-select.form-control .btn-default,
.exc-page-content .bootstrap-select.form-control .dropdown-toggle,
.exc-page-content .bootstrap-select .dropdown-menu,
.exc-page-content .exc-repair-list {
  border-color: var(--border-color-subtle) !important;
}

.exc-page-content .exc-page-title,
.exc-page-content .exc-page-subheading {
  border-bottom: 1px solid var(--border-color-subtle) !important;
}

.exc-page-content .widget h3 {
  border-bottom: 3px solid var(--border-color-subtle) !important;
}

/* 6. Form Container (form-block / card) */
.exc-page-content .form-block,
.exc-page-content .card,
.exc-page-content .shadow-sm,
.quote-form,
#appointment-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 7. Collapsible Repair List Box */
.exc-page-content .exc-repair-list {
  background-color: var(--bg-color-panel) !important;
  border: 1px solid var(--border-color-subtle) !important;
}

.exc-page-content .browse-repair-list {
  color: var(--text-color-secondary) !important;
}

.exc-page-content .repair-lists ul li a {
  color: var(--text-color-secondary) !important;
}

.exc-page-content .repair-lists ul li a:hover {
  color: var(--brand-color) !important;
}

/* 8. Widget Accordion / Panel Styles */
.exc-page-content .exc-accordion .panel-title {
  background-color: var(--bg-color-panel) !important;
  color: var(--text-color-secondary) !important;
  border-bottom: 1px solid var(--border-color-subtle) !important;
}

.exc-page-content .exc-accordion .panel-title:before {
  border-left: 1px solid var(--border-color-subtle) !important;
}

.exc-page-content .exc-accordion .panel-body {
  background-color: var(--bg-color-panel-body) !important;
  border-bottom: 1px solid var(--border-color-subtle) !important;
}

.exc-page-content .exc-accordion .service-price-desc ul li a {
  color: var(--text-color-secondary) !important;
}

/* 9. Form Fields Override (Inputs, Textareas, Selects) */
.exc-page-content .form-control {
  background-color: var(--bg-color-panel) !important;
  border: 1px solid var(--border-color-input) !important;
  color: var(--text-color-primary) !important;
}

.exc-page-content .form-control:focus {
  background-color: #1c1c1e !important;
  border-color: var(--brand-color) !important;
  box-shadow: 0 0 4px rgba(171, 15, 8, 0.4) !important;
}

.exc-page-content .form-control::-webkit-input-placeholder,
.exc-page-content .form-control::-moz-placeholder,
.exc-page-content .form-control:-ms-input-placeholder {
  color: #666 !important;
}

/* Labels */
.exc-page-content .form-label,
.exc-page-content label {
  color: var(--text-color-secondary) !important;
}

/* Error States */
.exc-page-content .has-error .form-control {
  border-color: #e53e3e !important;
  box-shadow: 0 0 4px rgba(229, 62, 62, 0.4) !important;
}
.exc-page-content .has-error .help-block,
.exc-page-content .has-error .quote-help-block {
  color: #e53e3e !important;
}

/* Bootstrap-Select Dropdown Button styling */
.exc-page-content .bootstrap-select.form-control .btn-default,
.exc-page-content .bootstrap-select.form-control .dropdown-toggle {
  background-color: var(--bg-color-panel) !important;
  border: 1px solid var(--border-color-input) !important;
  color: var(--text-color-primary) !important;
}

.exc-page-content .bootstrap-select.form-control .btn-default:focus,
.exc-page-content .bootstrap-select.form-control .dropdown-toggle:focus {
  background-color: #1c1c1e !important;
  border-color: var(--brand-color) !important;
}

/* Bootstrap-Select Dropdown Menu styling */
.exc-page-content .bootstrap-select .dropdown-menu {
  background-color: var(--bg-color-panel) !important;
  border: 1px solid var(--border-color-input) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) !important;
}

.exc-page-content .bootstrap-select .dropdown-menu li a {
  color: var(--text-color-secondary) !important;
  padding: 10px 20px !important;
}

.exc-page-content .bootstrap-select .dropdown-menu li a:hover,
.exc-page-content .bootstrap-select .dropdown-menu li.selected a {
  background-color: var(--brand-color) !important;
  color: var(--text-color-primary) !important;
}

/* 10. Services Page Listing Overrides */
.exc-page-content .exc-service {
  background-color: var(--bg-color-card) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  border-bottom: none !important;
}

.exc-page-content .exc-service h4,
.exc-page-content .exc-service h4 a {
  color: var(--text-color-primary) !important;
}

.exc-page-content .exc-service:hover h4 a {
  color: var(--text-color-primary) !important;
}

.exc-page-content .exc-service .services-head-text {
  background-color: var(--bg-color-card) !important;
}

.exc-page-content .exc-service.is-open .services-head-text {
  background-color: rgba(171, 15, 8, 0.12) !important;
}

.exc-page-content .exc-service .services-head-text .service-price-desc {
  border-top: 1px solid var(--border-color-subtle) !important;
}

.exc-page-content .exc-service:hover .services-head-text .service-price-desc {
  border-top: 1px solid var(--brand-color) !important;
}

.exc-page-content .service-price-desc ul li a {
  color: var(--text-color-secondary) !important;
}

.exc-page-content .exc-service:hover .service-price-desc ul li a {
  color: var(--text-color-primary) !important;
}

.exc-page-content .service-price-desc ul li a:hover {
  color: var(--brand-color) !important;
}

@media (max-width: 839px) {
  .exc-page-content .exc-service {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }
  .exc-page-content .exc-service .services-head-text {
    background: transparent !important;
  }
}
