:root {
  --brand-red: #d90429;
  --brand-red-dark: #7f0018;
  --ink: #09090b;
  --soft: #f8fafc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 88px;
}

html,
body {
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--soft);
  color: #334155;
}

body {
  min-width: 320px;
}

.no-scroll {
  overflow: hidden !important;
}

img,
video,
iframe {
  max-width: 100%;
}

.container-x {
  width: 100%;
}

.section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-head {
  margin-bottom: 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   Marquee
----------------------------- */

.dts-marquee {
  overflow: hidden;
}

.dts-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 1rem 0;
  animation: dtsMarquee 28s linear infinite;
}

.dts-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.5rem;
}

.dts-marquee-item i {
  color: var(--ic, #ef233c);
}

@keyframes dtsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* -----------------------------
   Hero Slider
----------------------------- */

.dts-hero-slider {
  height: 100svh;
  min-height: 620px;
  max-height: 860px;
  overflow: hidden;
}

.dts-hero-track,
.dts-hero-grid {
  height: 100%;
  min-height: 100%;
}

.dts-hero-track {
  position: relative;
}

.dts-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #09090b url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&q=90&w=1920") center / cover no-repeat;
}

.dts-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: brightness(0.58) saturate(1.15) contrast(1.04);
}

.dts-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 4, 41, 0.3), transparent 34%),
    radial-gradient(circle at 20% 65%, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.48) 0%, rgba(9, 9, 11, 0.7) 58%, rgba(9, 9, 11, 0.95) 100%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.72) 0%, rgba(9, 9, 11, 0.3) 50%, rgba(9, 9, 11, 0.72) 100%);
}

.dts-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.12;
  pointer-events: none;
}

.dts-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.9s ease;
}

.dts-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dts-hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6.5rem 0 4.5rem;
}

.dts-hero-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.dts-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #ffe4e6;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 0 45px rgba(217, 4, 41, 0.2);
}

.dts-ping {
  width: 0.55rem;
  height: 0.55rem;
  min-width: 0.55rem;
  border-radius: 999px;
  background: #ef233c;
  box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.65);
  animation: dtsPing 1.8s infinite;
}

@keyframes dtsPing {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.65);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(239, 35, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0);
  }
}

.dts-hero-title {
  margin: 0 auto 1.1rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.25rem, 5.1vw, 4.95rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.dts-hero-title span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #ffccd5 24%, #ef233c 54%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dts-hero-text {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  color: rgba(241, 245, 249, 0.94);
  font-size: clamp(0.94rem, 1.45vw, 1.08rem);
  line-height: 1.72;
  font-weight: 600;
}

.dts-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* -----------------------------
   Buttons
----------------------------- */

.dts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.82rem 1.45rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.dts-btn:hover {
  transform: translateY(-2px);
}

.dts-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #ef233c 0%, #b00020 100%);
  box-shadow: 0 22px 44px -18px rgba(239, 35, 60, 0.88);
}

.dts-btn-dark {
  color: #fff;
  background: #09090b;
  box-shadow: 0 18px 34px -20px rgba(0, 0, 0, 0.65);
}

.dts-btn-white {
  color: #09090b;
  background: #fff;
  box-shadow: 0 18px 34px -20px rgba(255, 255, 255, 0.55);
}

.dts-btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

/* -----------------------------
   Hero Floating Cards
----------------------------- */

.dts-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 22px 55px -24px rgba(0, 0, 0, 0.8);
  animation: dtsFloat 4.8s ease-in-out infinite;
}

.dts-float i {
  color: #ffccd5;
  font-size: 1.1rem;
}

.dts-float strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 900;
}

.dts-float span {
  display: block;
  font-size: 0.62rem;
  line-height: 1.2;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-top: 0.25rem;
}

.dts-float-1 {
  top: 19%;
  left: 7%;
}

.dts-float-2 {
  top: 21%;
  right: 8%;
  animation-delay: 0.9s;
}

.dts-float-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 1.6s;
}

.dts-float-4 {
  bottom: 17%;
  right: 9%;
  animation-delay: 2.2s;
}

@keyframes dtsFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* -----------------------------
   Hero Navigation
----------------------------- */

.dts-hero-nav {
  position: absolute;
  inset: auto 0 1.6rem 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

.dts-hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.36);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dts-hero-dot.is-active {
  width: 2.2rem;
  background: linear-gradient(90deg, #ef233c 0%, #fff 100%);
}

.dts-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.42);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dts-hero-arrow:hover {
  background: #d90429;
  border-color: #d90429;
}

.dts-hero-arrow.prev {
  left: 1.4rem;
}

.dts-hero-arrow.next {
  right: 1.4rem;
}

/* -----------------------------
   Images / Cards
----------------------------- */

.fleet-card:hover .fleet-img,
.image-hover:hover img {
  transform: scale(1.08);
}

/* -----------------------------
   Form
----------------------------- */

.form-field {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.95rem 1rem;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field:focus {
  border-color: #ef233c;
  box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.1);
}

/* -----------------------------
   FAQ
----------------------------- */

.dts-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  height: fit-content;
}

.dts-faq-item.active,
.dts-faq-item:hover {
  border-color: #fb7185;
  box-shadow: 0 18px 44px rgba(217, 4, 41, 0.11);
}

.dts-faq-btn {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem;
  text-align: left;
  cursor: pointer;
}

.dts-faq-q {
  color: #0f172a;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 900;
}

.dts-faq-icon {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 999px;
  background: #fff1f2;
  border: 1px solid #ffe4e6;
  color: #d90429;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dts-faq-item.active .dts-faq-icon {
  background: #d90429;
  border-color: #d90429;
  color: #fff;
  transform: rotate(45deg);
}

.dts-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.dts-faq-content {
  padding: 0 1.45rem 1.45rem;
  border-top: 1px solid #f1f5f9;
}

.dts-faq-answer {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 1rem 0 0;
}

/* -----------------------------
   Mobile Sticky CTA
----------------------------- */

.mobile-sticky-cta {
  display: none;
}

/* -----------------------------
   Responsive
----------------------------- */

@media (max-height: 820px) and (min-width: 992px) {
  .dts-hero-slider {
    height: 100svh;
    min-height: 600px;
    max-height: 760px;
  }

  .dts-hero-grid {
    padding: 5.8rem 0 3.8rem;
  }

  .dts-hero-title {
    font-size: clamp(2.2rem, 4.6vw, 4.25rem);
    line-height: 1.03;
    margin-bottom: 0.95rem;
  }

  .dts-hero-text {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
  }

  .dts-hero-badge {
    padding: 0.55rem 0.9rem;
    font-size: 0.66rem;
    margin-bottom: 0.9rem;
  }

  .dts-float {
    transform: scale(0.92);
  }

  .dts-float-1 {
    top: 18%;
    left: 5%;
  }

  .dts-float-2 {
    top: 18%;
    right: 5%;
  }

  .dts-float-3 {
    bottom: 13%;
    left: 6%;
  }

  .dts-float-4 {
    bottom: 13%;
    right: 6%;
  }
}

@media (max-width: 1199.98px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-head {
    margin-bottom: 3rem;
  }

  .dts-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  }
}

@media (max-width: 991.98px) {
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .dts-hero-slider {
    height: 100svh;
    min-height: 600px;
    max-height: none;
  }

  .dts-hero-grid {
    padding: 6.5rem 0 4.4rem;
  }

  .dts-hero-title {
    font-size: clamp(2.1rem, 7vw, 3.6rem);
    line-height: 1.06;
  }

  .dts-hero-text {
    max-width: 92%;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .dts-float,
  .dts-hero-arrow {
    display: none !important;
  }

  .grid.lg\:grid-cols-12 {
    gap: 2.25rem !important;
  }

  #about .grid.grid-cols-2 img {
    height: 230px !important;
  }

  #team img {
    height: 340px !important;
  }
}

@media (max-width: 767.98px) {
  .container-x,
  .max-w-7xl,
  .max-w-6xl,
  .max-w-5xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-head {
    margin-bottom: 2.2rem;
  }

  .section-head h2,
  .h2 {
    font-size: 1.9rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em;
  }

  .section-head p {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }

  .eyebrow {
    font-size: 0.62rem;
    line-height: 1.35;
    padding: 0.5rem 0.78rem;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
  }

  .dts-hero-slider {
    height: 100svh;
    min-height: 560px;
  }

  .dts-hero-grid {
    padding: 5.9rem 0 4.1rem;
  }

  .dts-hero-badge {
    max-width: 100%;
    white-space: normal;
    padding: 0.52rem 0.72rem;
    font-size: 0.58rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
    margin-bottom: 0.85rem;
  }

  .dts-hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 0.9rem;
  }

  .dts-hero-text {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.62;
    margin-bottom: 1.25rem;
  }

  .dts-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .dts-btn {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.72rem 1rem;
    font-size: 0.82rem;
    border-radius: 0.85rem;
  }

  .dts-hero-nav {
    bottom: 1rem;
  }

  .dts-hero-dot {
    width: 0.6rem;
    height: 0.6rem;
  }

  .dts-hero-dot.is-active {
    width: 1.8rem;
  }

  .dts-marquee-track {
    gap: 0.9rem;
    padding: 0.75rem 0;
  }

  .dts-marquee-item {
    font-size: 0.64rem;
    letter-spacing: 0.035em;
  }

  #deals .grid.grid-cols-2 {
    gap: 0.85rem !important;
  }

  #deals .grid.grid-cols-2 > div {
    padding: 1rem !important;
    border-radius: 1.25rem !important;
  }

  #deals .grid.grid-cols-2 span:first-of-type {
    font-size: 1.55rem !important;
  }

  #about .grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }

  #about .grid.grid-cols-2 > div {
    margin-top: 0 !important;
  }

  #about .grid.grid-cols-2 > div:last-child {
    grid-column: span 1 / span 1 !important;
  }

  #about .grid.grid-cols-2 img,
  #team img {
    height: 220px !important;
  }

  #fleets .fleet-card .relative.h-56 {
    height: 210px !important;
  }

  #fleets article .p-7,
  #services .rounded-\[2rem\],
  #why .group,
  #happy-customers .relative.bg-white,
  #happy-customers .relative.bg-slate-950,
  #contact-preview .rounded-\[2rem\],
  .dts-faq-btn {
    padding: 1.25rem !important;
  }

  #services .text-3xl,
  #contact-preview .text-3xl {
    font-size: 1.65rem !important;
    line-height: 1.18 !important;
  }

  .form-field {
    padding: 0.82rem 0.9rem;
    font-size: 0.88rem;
    border-radius: 0.85rem;
  }

  .dts-faq-q {
    font-size: 1rem;
  }

  .dts-faq-content {
    padding: 0 1.25rem 1.25rem;
  }

  .dts-faq-answer {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.75rem;
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .dts-hero-slider {
    min-height: 540px;
  }

  .dts-hero-grid {
    padding: 5.4rem 0 3.8rem;
  }

  .dts-hero-title {
    font-size: clamp(1.7rem, 8.8vw, 2.25rem);
    line-height: 1.08;
  }

  .dts-hero-text {
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .dts-hero-badge {
    font-size: 0.54rem;
  }

  .dts-btn {
    min-height: 2.7rem;
    font-size: 0.78rem;
  }

  #deals .grid.grid-cols-2 {
    grid-template-columns: 1fr 1fr !important;
  }

  #deals .w-12 {
    width: 2.4rem !important;
    height: 2.4rem !important;
    margin-bottom: 0.75rem !important;
  }

  #deals span.block.text-2xl {
    font-size: 1.45rem !important;
  }

  #fleets .fleet-card .relative.h-56 {
    height: 190px !important;
  }

  #about .grid.grid-cols-2 img,
  #team img {
    height: 200px !important;
  }

  .rounded-\[2\.5rem\] {
    border-radius: 1.5rem !important;
  }

  .px-8 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media (max-height: 680px) and (max-width: 767.98px) {
  .dts-hero-slider {
    height: auto;
    min-height: 100svh;
  }

  .dts-hero-grid {
    padding: 5.1rem 0 3.4rem;
  }

  .dts-hero-title {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    margin-bottom: 0.65rem;
  }

  .dts-hero-text {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 0.95rem;
  }

  .dts-hero-badge {
    margin-bottom: 0.65rem;
  }

  .dts-hero-nav {
    bottom: 0.7rem;
  }
}