/* =============================================
   DRSpeed Premium — Dark Automotive Design System
   Agency-grade execution · €10k–€15k level
   Primary accent: RED (#C0392B) · Secondary: Gold (#E8B84B)
   ============================================= */

/* -----------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
   ----------------------------------------------- */
:root {
  /* Backgrounds */
  --ds-bg-primary: #0A0A0A;
  --ds-bg-secondary: #111111;
  --ds-bg-tertiary: #1A1A1A;
  --ds-bg-card: #111111;

  /* Accent — PRIMARY is RED */
  --ds-accent: #C0392B;
  --ds-accent-rgb: 192, 57, 43;
  --ds-accent-light: #E74C3C;
  --ds-gold: #E8B84B;
  --ds-gold-rgb: 232, 184, 75;
  --ds-accent-dark: #8d281d;

  /* Text */
  --ds-text-primary: #F5F5F5;
  --ds-text-secondary: #9A9A9A;
  --ds-text-muted: #666666;

  /* Borders */
  --ds-border-subtle: rgba(255, 255, 255, 0.06);
  --ds-border-accent: rgba(192, 57, 43, 0.3);
  --ds-border-gold: rgba(232, 184, 75, 0.3);

  /* Typography */
  --ds-font-heading: "Inter", "Barlow", sans-serif;
  --ds-font-body: "Inter", sans-serif;

  /* Spacing */
  --ds-section-pad: 100px;
  --ds-section-pad-mobile: 60px;

  /* Transitions */
  --ds-transition: 0.3s ease;
  --ds-transition-slow: 0.5s ease;
  --ds-cubic: cubic-bezier(0.77, 0, 0.175, 1);

  /* Override original theme vars */
  --crank-base: #C0392B;
  --crank-base-rgb: 192, 57, 43;
  --crank-black: var(--ds-text-primary);
  --crank-white: var(--ds-bg-primary);
  --crank-gray: var(--ds-text-primary);
  --crank-bdr-color: var(--ds-border-subtle);
  --crank-font: "Inter", sans-serif;
  --crank-font-two: "Inter", "Barlow", sans-serif;
}

/* -----------------------------------------------
   2. GLOBAL RESETS & BASE
   ----------------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body,
.body-bg-color {
  background-color: var(--ds-bg-primary) !important;
  color: var(--ds-text-primary);
  font-family: var(--ds-font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--ds-accent);
  color: #fff;
}

a {
  color: var(--ds-accent);
  transition: color var(--ds-transition);
}

a:hover {
  color: var(--ds-accent-light);
}

/* Remove default preloader and custom cursor */
.preloader,
.custom-cursor,
.custom-cursor__cursor,
.custom-cursor__cursor-two {
  display: none !important;
}

/* Hide owl carousel on hero — we use custom slider */
.main-slider .owl-carousel,
.main-slider__wrap,
.main-slider__carousel {
  display: none !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ds-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(192, 57, 43, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ds-accent);
}

/* Global border-radius reset — precision engineering, 4px everywhere */
.thm-btn,
.thm-btn::before,
.thm-btn::after,
.services-one__single,
.pricing-one__single,
.testimonial-one__single,
.team-one__single,
.blog-one__single,
.gallery-one__single,
.gallery-one__img,
.gallery-one__img img,
.gallery-one__img-box,
.gallery-one__icon a,
.about-one__img,
.about-one__img img,
.about-one__content-box,
.contact-one__left-content,
.brand-one__inner,
.counter-one__inner,
.faq-one__inner-content,
.accrodion,
.accrodion-title,
.accrodion-content,
.about-two__tab-btn-single,
.about-two__tab-img,
.about-two__tab-img img,
.nice-select,
.xs-sidebar-widget,
.search-popup__content input,
.search-popup__content button,
.mobile-nav__content,
.services-one__inner {
  border-radius: 4px !important;
}

/* -----------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ds-font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ds-text-primary);
  line-height: 1.1;
}

.section-title__tagline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
  color: var(--ds-accent) !important;
  display: inline-block;
  padding: 6px 0;
  position: relative;
}

.section-title__tagline::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ds-border-accent);
}

.section-title__title {
  color: var(--ds-text-primary) !important;
  font-family: var(--ds-font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 16px;
}

/* -----------------------------------------------
   4. BUTTONS
   ----------------------------------------------- */
.thm-btn {
  background: var(--ds-accent) !important;
  color: #fff !important;
  font-family: var(--ds-font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 15px;
  border: 1.5px solid var(--ds-accent) !important;
  transition: all var(--ds-transition);
  position: relative;
  overflow: hidden;
  border-radius: 3px !important;
}

.thm-btn::before,
.thm-btn::after {
  background: transparent !important;
  display: none !important;
}

.thm-btn:hover {
  background: transparent !important;
  color: var(--ds-accent) !important;
  border-color: var(--ds-accent) !important;
}

.thm-btn span {
  color: inherit !important;
}

/* Ghost / outline button */
.btn-ghost {
  background: transparent !important;
  color: var(--ds-text-primary) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
}

/* -----------------------------------------------
   5. HEADER / NAVIGATION — FLOATING GLASS
   ----------------------------------------------- */

/* Outer header — floats above content */
.ds-header-float {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0 0;
  background: transparent !important;
  transition: padding 0.4s ease;
}

/* Glass bar */
.ds-header__glass {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0 8px;
  transition: all 0.4s ease;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ds-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 8px;
}

/* Logo */
.ds-header__logo {
  flex-shrink: 0;
}

.ds-header__logo img {
  max-height: 55px;
  width: auto;
  transition: all var(--ds-transition);
}

/* Nav center */
.ds-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  background: transparent !important;
}

.ds-header__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav list items — override theme padding */
.ds-header__nav .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ds-header__nav .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 0 !important;
}

/* Nav links */
.main-menu__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.ds-header__nav .main-menu__list > li > a,
.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  color: rgb(255, 255, 255) !important;
  font-family: var(--ds-font-heading);
  font-weight: 700;
  font-size: 12px !important;
  text-transform: uppercase;
  padding: 8px 16px !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  border-radius: 4px;
}

.ds-header__nav .main-menu__list > li > a:hover,
.main-menu .main-menu__list > li > a:hover,
.stricky-header .main-menu__list > li > a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

.main-menu .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li.current > a,
.ds-header__nav .main-menu__list > li.current > a {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

/* Remove all pseudo-elements from nav links */
.ds-header__nav .main-menu__list > li > a::after,
.ds-header__nav .main-menu__list > li > a::before,
.main-menu .main-menu__list > li > a::before,
.main-menu .main-menu__list > li > a::after,
.stricky-header .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::after {
  display: none !important;
}

/* Nav items flex alignment fix */
.ds-header__nav .main-menu__list > li {
  display: flex;
  align-items: center;
}

/* CTA button */
.ds-header__cta {
  flex-shrink: 0;
}

.nav-cta-btn,
.main-menu .main-menu__list > li > a.nav-cta-btn,
.stricky-header .main-menu__list > li > a.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--ds-accent) !important;
  color: #fff !important;
  font-family: var(--ds-font-heading);
  font-weight: 600 !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  margin-left: 0 !important;
  border: 1px solid var(--ds-accent) !important;
}

.nav-cta-btn:hover,
.main-menu .main-menu__list > li > a.nav-cta-btn:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.3) !important;
  box-shadow: none;
}

/* ---- Sticky header (scrolled) ---- */
.stricky-header.stricked-menu {
  background: rgba(10, 10, 10, 0.88) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ds-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.ds-sticky__logo img {
  max-height: 40px;
  display: block;
}

.ds-sticky__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ds-sticky__links > li > a {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.ds-sticky__links > li > a:hover,
.ds-sticky__links > li.current > a {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

.stricky-header .main-menu__wrapper-inner {
  padding: 10px 0 !important;
}

.stricky-header .main-header__logo img,
.stricky-header .ds-header__logo img {
  max-height: 32px !important;
}

/* ---- Scroll state: compact glass ---- */
.ds-header-float.ds-scrolled {
  padding: 10px 0 0;
}

.ds-header-float.ds-scrolled .ds-header__glass {
  background: rgba(10, 10, 10, 0.8);
  border-color: rgba(255,255,255,0.06);
  border-radius: 5px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ds-header-float.ds-scrolled .ds-header__logo {
  display: flex !important;
}

.ds-header-float.ds-scrolled .ds-header__logo img {
  max-height: 30px;
}

.ds-header-float.ds-scrolled .ds-header__nav {
  flex: 1;
  justify-content: flex-end;
}

/* Mobile hamburger */
.mobile-nav__toggler {
  display: none;
}

.mobile-nav__toggler i {
  color: var(--ds-text-primary);
  font-size: 22px;
}

/* Mobile nav overlay */
.mobile-nav__content {
  background: var(--ds-bg-secondary) !important;
}

.mobile-nav__container .main-menu__list > li > a {
  color: var(--ds-text-primary) !important;
  border-bottom: 1px solid var(--ds-border-subtle) !important;
}

.mobile-nav__contact li a,
.mobile-nav__contact li {
  color: var(--ds-text-secondary) !important;
}

.mobile-nav__social a {
  color: var(--ds-text-secondary) !important;
}

.mobile-nav__social a:hover {
  color: var(--ds-accent) !important;
}

/* -----------------------------------------------
   6. HERO SLIDER — SWIPER PROGRESS
   ----------------------------------------------- */

/* Container */
.ds-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.page-wrapper {
  overflow-x: hidden !important;
}

.ds-hero-swiper {
  width: 100%;
  height: 100%;
}

.ds-hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Ken Burns background */
.ds-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1);
}

.swiper-slide-active .ds-hero__bg {
  animation: dsKenBurns 8s ease-out forwards;
}

@keyframes dsKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Dark overlay — gradient fade from left (text) to right (car visible) */
.ds-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.7) 25%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.05) 70%,
      transparent 85%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.4) 85%,
      rgba(0, 0, 0, 0.7) 100%
    );
  z-index: 2;
}

/* Slide content — positioned at bottom */
.ds-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.ds-hero__inner {
  max-width: 45%;  /* keep text on left, car visible on right */
}

/* Slide content animations */
.ds-hero__label,
.ds-hero__title,
.ds-hero__text,
.ds-hero__cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ds-hero__label.ds-anim-in { opacity: 1; transform: translateY(0); }
.ds-hero__title.ds-anim-in { opacity: 1; transform: translateY(0); }
.ds-hero__text.ds-anim-in { opacity: 1; transform: translateY(0); }
.ds-hero__cta.ds-anim-in { opacity: 1; transform: translateY(0); }

/* Label */
.ds-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--ds-text-secondary);
}

.ds-hero__line {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: currentColor;
  flex-shrink: 0;
}

/* Per-slide accent */
.swiper-slide[data-accent="silver"] .ds-hero__label { color: #B0B0B0; }
.swiper-slide[data-accent="red"] .ds-hero__label { color: var(--ds-accent-light); }

/* Title */
.ds-hero__title {
  font-family: var(--ds-font-heading);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
}

.ds-accent-word {
  display: inline;
  color: var(--ds-accent);
}

.swiper-slide[data-accent="red"] .ds-accent-word { color: var(--ds-accent); }

/* Subheadline */
.ds-hero__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 600px;
}

/* CTA buttons */
.ds-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.ds-hero__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ds-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  transition: all var(--ds-transition);
  cursor: pointer;
}

.ds-hero__btn--primary {
  background: var(--ds-accent);
  color: #fff;
  border: 1.5px solid var(--ds-accent);
}

.ds-hero__btn--primary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.ds-hero__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.ds-hero__btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ---- BOTTOM BAR: Counter + Progress — right aligned ---- */
.ds-hero__nav-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding-bottom: 100px;
  pointer-events: none;
}

.ds-hero__nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
  width: 41.666%;   /* ~col-5, right side */
  pointer-events: auto;
}

/* Slide counter 01 / 03 */
.ds-hero__counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--ds-font-heading);
  flex-shrink: 0;
}

.ds-hero__counter-current {
  font-size: 28px;
  font-weight: 800;
  color: var(--ds-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ds-hero__counter-sep {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.ds-hero__counter-total {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

/* Progress bar */
.ds-hero__progress-wrap {
  width: 120px;
  flex-shrink: 0;
  position: relative;
  height: 1px;
}

.ds-hero__pagination.swiper-pagination-progressbar {
  position: relative !important;
  width: 100% !important;
  height: 1px !important;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 0;
  top: auto !important;
  left: auto !important;
}

.ds-hero__pagination .swiper-pagination-progressbar-fill {
  background: rgba(255,255,255,0.35) !important;
  border-radius: 0;
  height: 100% !important;
}

/* Arrows — hidden, nav via swipe/progress */
.ds-hero__arrows {
  display: none;
}

.ds-hero__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--ds-transition);
}

.ds-hero__arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

.ds-hero__arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

/* Mobile slider */
@media (max-width: 768px) {
  .ds-hero__arrows { display: none; }
  .ds-hero__title { font-size: 36px; }
  .ds-hero__text { font-size: 14px; }
  .ds-hero__inner { max-width: 100%; }
  .ds-hero__content { padding-bottom: 140px; }
  .ds-hero__nav-wrap { padding-bottom: 24px; }
  .ds-hero__nav-right { width: 100%; justify-content: flex-start; }
  .ds-hero__btn { font-size: 10px; padding: 11px 22px; }
  .ds-hero__counter-current { font-size: 22px; }
}

@media (max-width: 480px) {
  .ds-hero__title { font-size: 28px; }
  .ds-hero__label { font-size: 10px; }
  .ds-hero__content { padding-bottom: 100px; }
}

/* -----------------------------------------------
   7. STATS — PREMIUM COUNTERS
   ----------------------------------------------- */

.counter-one {
  display: none !important;
}

.ds-stats {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background: var(--ds-bg-secondary);
  overflow: hidden;
  border-top: 1px solid var(--ds-border-subtle);
  border-bottom: 1px solid var(--ds-border-subtle);
}

.ds-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.ds-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: background 0.4s ease;
}

/* Vertical dividers */
.ds-stats__item + .ds-stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--ds-border-subtle);
}

/* Number + suffix row */
.ds-stats__top {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 16px;
}

.ds-stats__number {
  font-family: var(--ds-font-heading);
  font-size: 65px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ds-stats__suffix {
  font-family: var(--ds-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ds-accent);
  line-height: 1;
}

/* Red accent line */
.ds-stats__line {
  width: 0;
  height: 2px;
  background: var(--ds-accent);
  margin-bottom: 16px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-stats__line.ds-anim-in {
  width: 32px;
}

/* Heading */
.ds-stats__heading {
  font-family: var(--ds-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ds-text-primary);
  margin-bottom: 8px;
}

/* Description */
.ds-stats__desc {
  font-size: 12px;
  color: var(--ds-text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
}

@media (max-width: 992px) {
  .ds-stats__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-stats__item:nth-child(3)::before {
    display: none;
  }

  .ds-stats__item:nth-child(3),
  .ds-stats__item:nth-child(4) {
    border-top: 1px solid var(--ds-border-subtle);
  }
}

@media (max-width: 480px) {
  .ds-stats {
    padding: 50px 0;
  }

  .ds-stats__item {
    padding: 28px 16px;
  }

  .ds-stats__number {
    font-size: 36px;
  }

  .ds-stats__suffix {
    font-size: 16px;
  }

  .ds-stats__desc {
    display: none;
  }
}

/* -----------------------------------------------
   8. SERVICES SECTION — PREMIUM CARDS
   ----------------------------------------------- */

/* Hide old services-one if remnants */
.services-one { display: none !important; }

.ds-services {
  background: var(--ds-bg-primary);
  padding: var(--ds-section-pad) 0;
}

/* Service card */
.ds-service-card {
  display: flex;
  flex-direction: column;
  background: var(--ds-bg-secondary);
  border: 1px solid var(--ds-border-subtle);
  border-radius: 4px;
  margin-bottom: 30px;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: calc(100% - 30px);
}

.ds-service-card:hover {
  border-color: rgba(255, 255, 255, 0.764);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  color: inherit !important;
  text-decoration: none !important;
}

/* Image */
.ds-service-card__img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ds-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ds-service-card:hover .ds-service-card__img img {
  transform: scale(1.06);
}

/* Dark gradient overlay on image */
.ds-service-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--ds-bg-secondary) 0%, transparent 100%);
  pointer-events: none;
}

/* Body */
.ds-service-card__body {
  position: relative;
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Number — bottom right corner */
.ds-service-card__number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--ds-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  transition: color 0.4s ease;
}

.ds-service-card:hover .ds-service-card__number {
  color: var(--ds-accent-dark);
}

/* Title */
.ds-service-card__title {
  font-family: var(--ds-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.ds-service-card:hover .ds-service-card__title {
  color: #fff;
}

/* Text */
.ds-service-card__text {
  font-size: 13px;
  color: var(--ds-text-secondary);
  line-height: 1.7;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin: 0;
}

/* Link arrow */
.ds-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--ds-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s ease;
}

.ds-service-card__link i {
  font-size: 9px;
  transition: transform 0.3s ease;
}

.ds-service-card:hover .ds-service-card__link {
  color: var(--ds-accent-dark);
}

.ds-service-card:hover .ds-service-card__link i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .ds-service-card__img {
    height: 160px;
  }
  .ds-service-card__body {
    padding: 20px 20px 24px;
  }
}

/* -----------------------------------------------
   9. ABOUT SECTION
   ----------------------------------------------- */
.about-one {
  background: var(--ds-bg-secondary) !important;
}

/* Hide decorative shapes from about section */
.about-one__img-shape-1,
.about-one__img-shape-2 {
  display: none !important;
}

.about-one__text-1 {
  color: white !important;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 35px;
}

.about-one__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.about-one__points li + li {
  margin-top: 0 !important;
}

.about-one__points .icon span {
  color: var(--ds-accent) !important;
  font-size: 14px;
}

.about-one__points .text p {
  color: var(--ds-text-primary) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  font-family: var(--ds-font-body) !important;
}

.about-one__img {
  position: relative;
  overflow: hidden;
  border-radius: 4px !important;
}

.about-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px !important;
}

.about-one__content-box {
  background: rgba(10, 10, 10, 0.9) !important;
  backdrop-filter: blur(10px);
  padding: 28px !important;
  border: 1px solid var(--ds-border-subtle);
}

.about-one__content-icon span {
  color: var(--ds-accent) !important;
}

.about-one__content-title {
  color: var(--ds-text-primary) !important;
  font-family: var(--ds-font-heading);
  font-size: 18px !important;
  font-weight: 700;
}

.about-one__content-text {
  color: var(--ds-text-secondary) !important;
  font-size: 14px;
  line-height: 1.7;
}

/* About features — icon + text rows */
.ds-about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.ds-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ds-about-feature__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 4px;
  color: var(--ds-accent);
  font-size: 15px;
}

.ds-about-feature__content h5 {
  font-family: var(--ds-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ds-text-primary);
  margin-bottom: 4px;
}

.ds-about-feature__content p {
  font-size: 13px;
  color: var(--ds-text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* -----------------------------------------------
   10. CTA BANNER SECTION
   ----------------------------------------------- */

/* Red CTA */
/* -----------------------------------------------
   10. CTA — PARALLAX
   ----------------------------------------------- */
.ds-cta-parallax {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.ds-cta-parallax__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.ds-cta-parallax__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.ds-cta-parallax h2 {
  color: #fff !important;
  font-family: var(--ds-font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.ds-cta-parallax p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.ds-cta-parallax .thm-btn {
  background: var(--ds-accent) !important;
  color: #fff !important;
  border-color: var(--ds-accent) !important;
}

.ds-cta-parallax .thm-btn:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* -----------------------------------------------
   CTA SPLIT PANELS
   ----------------------------------------------- */
.ds-cta-split {
  display: flex;
  min-height: 360px;
}

.ds-cta-split__panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

.ds-cta-split__panel--dark {
  background: var(--ds-bg-secondary);
}

.ds-cta-split__panel--accent {
  background: var(--ds-accent-dark);
}

.ds-cta-split__inner {
  max-width: 480px;
}

.ds-cta-split__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ds-accent);
  margin-bottom: 16px;
}

.ds-cta-split__panel--accent .ds-cta-split__tag {
  color: rgba(255, 255, 255, 0.7);
}

.ds-cta-split__title {
  font-family: var(--ds-font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.ds-cta-split__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.ds-cta-split__stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.ds-cta-split__stat {
  display: flex;
  flex-direction: column;
}

.ds-cta-split__stat-number {
  font-family: var(--ds-font-heading);
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ds-cta-split__stat-number span {
  font-size: 28px;
}

.ds-cta-split__stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.ds-cta-split__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ds-accent) !important;
  font-family: var(--ds-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none !important;
  transition: background 0.25s, color 0.25s;
}

.ds-cta-split__btn:hover {
  background: var(--ds-bg-primary);
  color: #fff !important;
}

@media (max-width: 991px) {
  .ds-cta-split {
    flex-direction: column;
  }

  .ds-cta-split__panel {
    padding: 60px 30px;
  }

  .ds-cta-split__title {
    font-size: 24px;
  }

  .ds-cta-split__stat-number {
    font-size: 40px;
  }
}

/* -----------------------------------------------
   11. GALLERY — BENTO GRID
   ----------------------------------------------- */
.ds-gallery {
  background: var(--ds-bg-primary) !important;
  padding: var(--ds-section-pad) 0 !important;
  padding-bottom: 0 !important;
}

.ds-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0;
}

.ds-bento__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ds-bento__item--wide {
  grid-column: span 2;
}

.ds-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.ds-bento__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.ds-bento__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.ds-bento__item:hover .ds-bento__overlay {
  opacity: 1;
}

.ds-bento__btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  font-family: var(--ds-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  text-decoration: none !important;
  transition: all 0.3s ease;
  transform: translateY(8px);
}

.ds-bento__item:hover .ds-bento__btn {
  transform: translateY(0);
}

.ds-bento__btn:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}

/* -----------------------------------------------
   12. FAQ / ACCORDION
   ----------------------------------------------- */
.faq-one {
  background: var(--ds-bg-secondary) !important;
  padding: var(--ds-section-pad) 0 !important;
  counter-reset: none !important;
}

.faq-one__inner-content {
  max-width: 800px;
  margin: 0 auto;
}

.accrodion-grp {
  border: none !important;
}

.accrodion {
  background: var(--ds-bg-tertiary) !important;
  border: 1px solid var(--ds-border-subtle) !important;
  margin-bottom: 12px !important;
  border-radius: 4px !important;
  overflow: hidden;
  transition: border-color var(--ds-transition);
}

.accrodion + .accrodion {
  margin-top: 0 !important;
}

.accrodion.active {
  border-color: rgba(192, 57, 43, 0.2) !important;
}

.accrodion-title {
  padding: 22px 28px !important;
  background: transparent !important;
  cursor: pointer;
}

.accrodion-title h4 {
  font-family: var(--ds-font-heading) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--ds-text-primary) !important;
  letter-spacing: -0.01em;
  line-height: 1.4 !important;
  padding-right: 0 !important;
}

/* Remove theme's arrow icon and counter from accordion */
.accrodion-title h4::before,
.accrodion-title h4::after {
  display: none !important;
}

.accrodion.active .accrodion-title h4 {
  color: var(--ds-accent) !important;
}

.faq-one__accrodion-title-count {
  display: none !important;
}

.faq-one__accrodion-title-count::before,
.faq-one__accrodion-title-count::after {
  display: none !important;
}

.accrodion-content {
  padding: 0 28px 22px !important;
  background: transparent !important;
}

.accrodion-content .inner p {
  color: var(--ds-text-secondary) !important;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

/* -----------------------------------------------
   13. MISSÃO VISÃO VALORES — PREMIUM CARDS
   ----------------------------------------------- */

/* Hide old about-two if any remnants */
.about-two { display: none !important; }

.ds-mvv {
  background: var(--ds-bg-primary) !important;
  padding: var(--ds-section-pad) 0 !important;
  position: relative;
}

.ds-mvv__card {
  position: relative;
  background: var(--ds-bg-secondary);
  border: 1px solid var(--ds-border-subtle);
  border-radius: 4px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.ds-mvv__card:hover {
  border-color: rgba(192, 57, 43, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Featured card (middle) */
.ds-mvv__card--featured {
  border-color: rgba(192, 57, 43, 0.3);
  background: linear-gradient(180deg, rgba(192, 57, 43, 0.06) 0%, var(--ds-bg-secondary) 100%);
}

/* Large background number */
.ds-mvv__number {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--ds-font-heading);
  font-size: 100px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.ds-mvv__card:hover .ds-mvv__number {
  color: rgba(192, 57, 43, 0.06);
}

/* Icon */
.ds-mvv__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 4px;
  margin-bottom: 24px;
  color: var(--ds-accent);
  font-size: 18px;
  transition: all 0.3s ease;
}

.ds-mvv__card:hover .ds-mvv__icon {
  background: var(--ds-accent);
  color: #fff;
  border-color: var(--ds-accent);
}

/* Title */
.ds-mvv__title {
  font-family: var(--ds-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--ds-text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Red line divider */
.ds-mvv__line {
  width: 28px;
  height: 2px;
  background: var(--ds-accent);
  margin-bottom: 20px;
}

/* Text */
.ds-mvv__text {
  color: var(--ds-text-secondary);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

/* Points list */
.ds-mvv__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-mvv__points li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--ds-text-primary);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}

.ds-mvv__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--ds-accent);
  border-radius: 1px;
}

@media (max-width: 992px) {
  .ds-mvv__card {
    margin-bottom: 24px;
  }
}

/* -----------------------------------------------
   14. CONTACT SECTION
   ----------------------------------------------- */
.ds-contact {
  background: var(--ds-bg-secondary);
  padding: var(--ds-section-pad) 0;
}

.contact-one__left-content {
  background: var(--ds-bg-tertiary) !important;
  border: 1px solid var(--ds-border-subtle) !important;
}

.contact-one__input-box input,
.contact-one__input-box textarea,
.contact-one__input-box select {
  background: var(--ds-bg-secondary) !important;
  border: 1px solid var(--ds-border-subtle) !important;
  color: var(--ds-text-primary) !important;
  border-radius: 4px !important;
  padding: 14px 18px;
  font-size: 14px;
  transition: border-color var(--ds-transition);
}

.contact-one__input-box input:focus,
.contact-one__input-box textarea:focus {
  border-color: var(--ds-accent) !important;
  outline: none;
}

.contact-one__input-box input::placeholder,
.contact-one__input-box textarea::placeholder {
  color: var(--ds-text-muted) !important;
}

/* -----------------------------------------------
   15. FOOTER
   ----------------------------------------------- */
.site-footer {
  background: var(--ds-bg-primary) !important;
  position: relative;
}

.site-footer__wrap {
  background: transparent !important;
  max-width: 100% !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.site-footer__shape-1,
.site-footer__shape-2 {
  display: none !important;
}

.site-footer__top {
  padding: 80px 0 60px !important;
  border-top: 1px solid var(--ds-border-accent);
}

.site-footer__top-inner {
  padding: 0 !important;
}

.footer-widget__title {
  font-family: var(--ds-font-heading) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--ds-text-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px !important;
  line-height: 1.4 !important;
}

.footer-widget__about-logo img {
  max-height: 45px;
}

.footer-widget__contact-list li {
  margin-bottom: 20px;
}

.footer-widget__contact-list li + li {
  margin-top: 0 !important;
}

.footer-widget__contact-icon-box p {
  color: var(--ds-accent) !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-widget__contact-icon-box span {
  color: var(--ds-accent) !important;
}

.footer-widget__contact-text,
.footer-widget__contact-text a {
  color: var(--ds-text-secondary) !important;
  font-size: 15px !important;
  line-height: 1.7;
  font-weight: 400 !important;
  transition: color var(--ds-transition);
  font-family: var(--ds-font-body) !important;
}

.footer-widget__contact-text a:hover {
  color: var(--ds-accent) !important;
}

/* Fix theme's margin-left: 88px on page link columns */
.footer-widget__page-link {
  margin-left: 0 !important;
}

.footer-widget__services {
  margin-left: 0 !important;
}

.footer-widget__page-link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ds-text-secondary) !important;
  font-size: 15px;
  padding: 6px 0;
  transition: all var(--ds-transition);
}

.footer-widget__page-link-list li + li {
  margin-top: 8px !important;
}

.footer-widget__page-link-list li a:hover {
  color: var(--ds-accent) !important;
  padding-left: 4px;
}

.footer-widget__page-link-list li a span {
  color: var(--ds-accent) !important;
  font-size: 10px;
}

.footer-widget__page-link-list li a p {
  color: inherit !important;
}

/* Footer bottom */
.site-footer__bottom {
  background: transparent !important;
  border-top: 1px solid var(--ds-border-subtle);
  padding: 24px 0 !important;
}

.site-footer__bottom-inner {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__copyright-text {
  color: var(--ds-text-muted) !important;
  font-size: 13px !important;
}

.site-footer__copyright-text a {
  color: var(--ds-text-muted) !important;
}

.site-footer__bottom-menu {
  display: flex !important;
  align-items: center;
  gap: 20px;
}

.site-footer__bottom-menu li a {
  color: var(--ds-text-muted) !important;
  font-size: 13px;
  transition: color var(--ds-transition);
}

.site-footer__bottom-menu li a:hover {
  color: var(--ds-accent) !important;
}

/* -----------------------------------------------
   16. PAGE HEADER (inner pages)
   ----------------------------------------------- */
.ds-page-header {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ds-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

.ds-page-header__content {
  position: relative;
  z-index: 2;
}

.ds-page-header__label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ds-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.ds-page-header__title {
  font-family: var(--ds-font-heading);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ds-text-primary);
  line-height: 1.1;
}

/* -----------------------------------------------
   17. SERVICE CARDS (index page)
   ----------------------------------------------- */
.ds-service-card {
  background: var(--ds-bg-secondary);
  border: 1px solid var(--ds-border-subtle);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all var(--ds-transition);
  border-radius: 4px;
}

.ds-service-card:hover {
  border-color: rgba(255, 255, 255, 0.764);
  transform: translateY(-6px);
}

.ds-service-card__img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.ds-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ds-transition-slow);
  filter: grayscale(20%);
}

.ds-service-card:hover .ds-service-card__img img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.ds-service-card__body {
  padding: 28px;
}

.ds-service-card__title {
  font-family: var(--ds-font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.ds-service-card__title a {
  color: var(--ds-text-primary);
  text-decoration: none;
  transition: color var(--ds-transition);
}

.ds-service-card__title a:hover {
  color: var(--ds-accent);
}

.ds-service-card__text {
  color: var(--ds-text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.ds-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: gap var(--ds-transition);
}

.ds-service-card__link:hover {
  gap: 12px;
  color: var(--ds-accent-dark);
}

/* -----------------------------------------------
   18. SERVICE DETAIL (show page)
   ----------------------------------------------- */
.ds-service-gallery__main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
}

.ds-service-gallery__thumb img {
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color var(--ds-transition);
}

.ds-service-gallery__thumb img.active,
.ds-service-gallery__thumb img:hover {
  border-color: var(--ds-accent) !important;
}

/* Characteristics tabs */
.service-char-content {
  width: 100%;
}

.service-char-content img,
.service-char-content table,
.service-char-content iframe,
.service-char-content video {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
}

.ds-char-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.06);
}

.ds-char-tab {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ds-text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: all var(--ds-transition);
}

.ds-char-tab.active,
.ds-char-tab:hover {
  color: var(--ds-accent);
  border-left-color: var(--ds-accent);
}

/* Tags */
.ds-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--ds-bg-secondary);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-accent);
  border: 1px solid var(--ds-border-accent);
}

/* Lightbox */
.ds-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.ds-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--ds-text-primary);
  font-size: 36px;
  cursor: pointer;
  transition: color var(--ds-transition);
}

.ds-lightbox__close:hover {
  color: var(--ds-accent);
}

.ds-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ds-border-subtle);
  color: var(--ds-text-primary);
  font-size: 24px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: all var(--ds-transition);
}

.ds-lightbox__nav:hover {
  background: var(--ds-accent);
  color: #fff;
  border-color: var(--ds-accent);
}

.ds-lightbox__nav--prev { left: 20px; }
.ds-lightbox__nav--next { right: 20px; }

/* -----------------------------------------------
   19. SCROLL TO TOP
   ----------------------------------------------- */
.scroll-to-target {
  background: var(--ds-accent) !important;
  color: #fff !important;
}

.scroll-to-top__text {
  display: none !important;
}

/* -----------------------------------------------
   20. SIDEBAR WIDGET (override for dark)
   ----------------------------------------------- */
.xs-sidebar-widget {
  background: var(--ds-bg-secondary) !important;
}

.sidebar-info-contents {
  background: var(--ds-bg-secondary) !important;
}

.content-box h4 {
  color: var(--ds-text-primary) !important;
}

.content-box p {
  color: var(--ds-text-secondary) !important;
}

.form-inner h4 {
  color: var(--ds-text-primary) !important;
}

.form-inner input,
.form-inner textarea {
  background: var(--ds-bg-tertiary) !important;
  border: 1px solid var(--ds-border-subtle) !important;
  color: var(--ds-text-primary) !important;
}

.form-inner .thm-btn {
  background: var(--ds-accent) !important;
  color: #fff !important;
}

/* -----------------------------------------------
   21. SEARCH POPUP
   ----------------------------------------------- */
.search-popup__content {
  background: var(--ds-bg-secondary) !important;
}

.search-popup__content input {
  background: var(--ds-bg-tertiary) !important;
  color: var(--ds-text-primary) !important;
  border: 1px solid var(--ds-border-subtle) !important;
}

/* -----------------------------------------------
   22. SCROLL REVEAL ANIMATIONS
   ----------------------------------------------- */
.ds-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ds-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.ds-reveal-delay-1 { transition-delay: 0.1s; }
.ds-reveal-delay-2 { transition-delay: 0.2s; }
.ds-reveal-delay-3 { transition-delay: 0.3s; }
.ds-reveal-delay-4 { transition-delay: 0.4s; }

/* -----------------------------------------------
   23. UTILITY CLASSES
   ----------------------------------------------- */
.ds-accent-line {
  width: 60px;
  height: 1px;
  background: var(--ds-border-accent);
  display: block;
}

.ds-section-dark {
  background: var(--ds-bg-primary);
}

.ds-section-darker {
  background: var(--ds-bg-secondary);
}

.ds-text-accent {
  color: var(--ds-accent);
}

.ds-text-gold {
  color: var(--ds-accent);
}

.ds-text-muted {
  color: var(--ds-text-secondary);
}

/* Process / How it works numbers */
.ds-process-number {
  font-family: var(--ds-font-heading);
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: -10px;
  right: 16px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* -----------------------------------------------
   24. RESPONSIVE
   ----------------------------------------------- */
@media (max-width: 1199px) {
  .main-menu .main-menu__list,
  .ds-header__links {
    display: none !important;
  }
  .ds-header__cta {
    display: none !important;
  }
  .mobile-nav__toggler {
    display: block !important;
  }
  .ds-header__glass {
    border-radius: 6px;
    padding: 0 6px;
  }
  .ds-header__inner {
    padding: 10px 16px;
  }
  .ds-header-float {
    padding: 12px 0 0;
  }
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list {
    display: flex !important;
  }
  .mobile-nav__toggler {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  :root {
    --ds-section-pad: 90px;
  }

  .counter-one__count-box h3,
  .counter-one__count-box .odometer {
    font-size: 36px !important;
  }

  .ds-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .ds-bento__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --ds-section-pad: 60px;
  }

  .counter-one {
    margin-top: -40px !important;
  }

  .counter-one__inner {
    padding: 30px 24px !important;
  }

  .counter-one__list {
    justify-content: center;
  }

  .counter-one__count-box h3,
  .counter-one__count-box .odometer {
    font-size: 32px !important;
  }

  .section-title__title {
    font-size: 28px !important;
  }

  .about-two__tab-box .tab-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .about-two__tab-box .tab-buttons .tab-btn {
    max-width: 100% !important;
    flex: none !important;
  }

  .ds-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .ds-bento__item--wide {
    grid-column: span 1;
  }
  .ds-cta-parallax {
    background-attachment: scroll;
  }

  .ds-page-header {
    padding: 140px 0 70px;
  }

  .ds-page-header__title {
    font-size: 36px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__bottom-menu {
    justify-content: center;
  }

  /* Char tabs mobile */
  .ds-char-nav {
    flex-direction: row;
    overflow-x: auto;
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
  }

  .ds-char-tab {
    border-left: none;
    border-bottom: 2px solid transparent;
    margin-left: 0;
    margin-bottom: -2px;
    white-space: nowrap;
    font-size: 12px;
    padding: 12px 16px;
  }

  .ds-char-tab.active,
  .ds-char-tab:hover {
    border-left-color: transparent;
    border-bottom-color: var(--ds-accent);
  }

  /* Footer fix for stacked columns */
  .footer-widget__about {
    margin-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .thm-btn {
    padding: 11px 22px;
    font-size: 10px;
  }

  .ds-cta-parallax h2 {
    font-size: 24px;
  }

  .ds-cta-parallax p {
    font-size: 14px;
  }
}

/* -----------------------------------------------
   25. PRINT STYLES
   ----------------------------------------------- */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .ds-hero { display: none; }
}
