@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Space+Grotesk:wght@300..700&display=swap");

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

:root {
  --bg: #03080c;
  --surface: #161a1f;
  --text: #e8e8e8;
  --red: #fe0100;
  --white: #ffffff;
  --black: #010101;
  --btn-bg: #3c536d;
  --menu-w: 300px;
  --primary-font: "Plus Jakarta Sans", sans-serif;
  --secondary-font: "Space Grotesk", sans-serif;
  --transition: all 0.3s ease-in-out;
  --gradient-red: linear-gradient(135deg, var(--red) 0%, #aa0004 100%);
  --hex-w: 240px;
  --hex-h: 208px;
  /* 240 * 0.866 */
  --hex-gap: 12px;
  --col-ml: -50px;
  /* dx = 190.5. diff from 240 is ~50 */
  --col-offset-0: 0px;
  --col-offset-1: 110px;
  /* (208 + 12)/2 = 110 */
  --col-offset-2: 220px;
  /* 110 * 2 = 220 */
  -webkit-font-smoothing: antialiased;
}

html,
body {
  overflow-x: clip;
}

img {
  width: auto;
  max-width: 100%;
  vertical-align: center;
}

a {
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
}

/* ── Global css ── */

h1 {
  font-family: var(--primary-font);
  line-height: 1.1;
  color: var(--white);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.6px;
  text-align: center;
}

h2 {
  font-family: var(--primary-font);
  font-size: clamp(40px, 6vw, 105px);
  /* font-size: 105px; */
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  text-align: left;
  background: linear-gradient(180deg,
      rgba(14, 30, 43, 1) 0%,
      rgba(9, 24, 36, 0) 116%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -30px;
  position: relative;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

h3 {
  font-family: var(--primary-font);
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  position: relative;
}

/* ── Global Button ── */
.primary-btn,
.secondary-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 60px;
  height: 56px;
  padding: 0 28px;
  color: var(--text);
  background: var(--red);
  border: 1px solid var(--red);
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.secondary-btn {
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
}

.primary-btn:hover {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.secondary-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.secondary-btn img {
  transition: var(--transition);
}

.secondary-btn:hover img {
  filter: invert(1);
}

/* ───────────────── Header Start ───────────────── */
header {
  position: fixed;
  top: 0;
  z-index: 900;
  background: transparent;
  padding: 30px 0;
  width: 100%;
  transition: var(--transition);
}

header.scrolled {
  background: #000000;
}

.header_wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ── Desktop Nav ── */
nav.desktop {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

nav.desktop a {
  font-family: var(--primary-font);
  text-transform: capitalize;
  color: var(--white);
  padding: 5px 0;
  transition: var(--transition);
  position: relative;
  opacity: 0.9;
}

nav.desktop a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: var(--transition);
}

nav.desktop a:hover::after,
nav.desktop a.active::after {
  width: 100%;
}

nav.desktop a.active {
  opacity: 1;
  font-weight: 500;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  order: 10;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.25s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ───────────────── OVERLAY ───────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ───────────────── SLIDE MENU (RTL – slides from RIGHT) ───────────────── */
.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--menu-w);
  max-width: 88dvw;
  height: 100%;
  background: var(--surface);
  z-index: 960;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition);
  overflow-y: auto;
}

.slide-menu.open {
  transform: translateX(0);
}

/* Menu header strip */
.slide-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--white);
}

.slide-menu-header .logo img {
  height: 44px;
}

.close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--white);
  border-radius: 5px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.slide-menu nav {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  flex: 1;
}

.slide-menu nav a {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.slide-menu nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  padding-left: 30px;
}

.slide-menu nav a.active {
  color: var(--red);
}

.slide-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--white);
}

.slide-menu-footer .secondary-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 12px 20px;
}

.slide-menu.open nav a {
  animation: slideIn 0.4s cubic-bezier(0.77, 0, 0.18, 1) both;
}

.slide-menu.open nav a:nth-child(1) {
  animation-delay: 0.05s;
}

.slide-menu.open nav a:nth-child(2) {
  animation-delay: 0.1s;
}

.slide-menu.open nav a:nth-child(3) {
  animation-delay: 0.15s;
}

.slide-menu.open nav a:nth-child(4) {
  animation-delay: 0.2s;
}

.slide-menu.open nav a:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ───────────────── Header end ───────────────── */

/* ───────────────── Banner Start ───────────────── */

.banner_sec {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  /* background-image: url("../images/banner_bg.png"); */
  /* background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%; */
  padding-top: 140px;
}

.banner_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  z-index: -2;
}

.banner_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(3 8 12 / 66%) 0%, rgb(3 8 12 / 45%) 40%, rgb(3 8 12 / 81%) 75%, rgb(3 8 12 / 93%) 100%);
  z-index: -1;
}

.banner_content_wrp {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 150px;
}

.banner_content {
  text-align: center;
  /*   max-width: 900px; */
  margin: 0 auto;
}

.banner_content_wrp {
  position: relative;
  z-index: 2;
}

.banner_content h1 {
  margin-bottom: 20px;
}

.banner_content p {
  font-family: var(--primary-font);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
}

.banner_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.banner_search_wrp {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 50px;
}

.banner_search {
  padding: 35px 50px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 15px;
  backdrop-filter: blur(28px);
  background: rgba(59, 59, 59, 0.48);
}

.banner_search h4 {
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  font-size: clamp(22px, 4vw, 35px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.35px;
  text-align: center;
}

.search_fields {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.select_wrp {
  position: relative;
  flex: 1 1 160px;
  min-width: 140px;
}

.select_wrp select {
  width: 100%;
  height: 52px;
  padding: 0 42px 0 16px;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 60px;
  color: #636363;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.select_wrp select option {
  background: var(--surface);
  color: var(--text);
}

.select_arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #636363;
}

.search_btn {
  flex-shrink: 0;
  height: 52px;
  padding: 0 26px;
  font-size: 16px;
  border-radius: 60px;
  gap: 8px;
}

/* ───────────────── Banner End ───────────────── */

/* ───────────────── Expertise Section Start ───────────────── */

.expertise_sec {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* ── Layout wrapper ── */
.expertise_wrp {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.expertise_watermark {
  margin-left: -50px;
}

/* ── LEFT column ── */
.expertise_left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 590px;
}

.expertise_left h3 {
  font-family: var(--primary-font);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.expertise_left p {
  font-family: var(--primary-font);
  color: var(--text);
  margin-bottom: 0;
}

.expertise_left .primary-btn {
  display: flex;
  max-width: fit-content;
  margin-top: 10px;
}

.img_grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.img_top {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.img_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img_top:hover img {
  transform: scale(1.04);
}

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

.img_bottom_left,
.img_bottom_right {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.img_bottom_left img,
.img_bottom_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img_bottom_left:hover img,
.img_bottom_right:hover img {
  transform: scale(1.04);
}

.expertise_btn {
  align-self: flex-end;
}

/* ── IMAGES ── */
.dtk-img {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.dtk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dtk-img:hover img {
  transform: scale(1.04);
}

.dtk-img-top {
  aspect-ratio: 16 / 7;
  margin-bottom: 30px;
  border-radius: 10px;
}

.dtk-img-bl {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
}

.dtk-img-br {
  aspect-ratio: 4 / 2.5;
  margin-bottom: 30px;
  border-radius: 10px;
}

.expertise_sec .primary-btn {
  max-width: fit-content;
  line-height: 1;
  text-box-trim: trim-both;
}

/* ───────────────── Expertise Section End ───────────────── */

/* ───────────────── Featured Trucks Section Start ───────────────── */

.featured_sec {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.featured_header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.featured_header h3 {
  font-family: var(--primary-font);
  color: var(--white);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.make_tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.make_tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 50px 14px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  opacity: 0.5;
}

.make_tab img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  transition: var(--transition);
}

.make_tab span {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.make_tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.make_tab.active,
.make_tab:hover {
  opacity: 1;
}

.make_tab.active img,
.make_tab:hover img {
  filter: none;
}

.make_tab.active span {
  color: var(--red);
}

.make_tab.active::after,
.make_tab:hover::after {
  width: 100%;
}

.trucks_panels {
  position: relative;
  z-index: 1;
}

.trucks_panel {
  display: none;
}

.trucks_panel.active {
  display: block;
  animation: fadePanel 0.35s ease both;
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Grid ── */
.trucks_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.truck_card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  background: rgba(5, 12, 18, 1);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.75);
  transition: var(--transition);
  padding: 10px;
  position: relative;
}

.truck_card:hover {
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.75);
}

.truck_img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  /* aspect-ratio: 4 / 3; */
  overflow: hidden;
}

.truck_img::before {
  position: absolute;
  background: linear-gradient(180deg,
      rgba(21, 29, 36, 0) 66.114%,
      rgba(21.02, 29.1, 35.55, 1) 100%);
  content: "";
  transition: var(--transition);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.truck_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.truck_card:hover .truck_img img {
  transform: scale(1.06);
}

.truck_overlay {
  position: absolute;
  inset: 0;
  background: rgba(21.02, 29.1, 35.55, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  transition: var(--transition);
  text-align: center;
  transform: scale(0);
}

.truck_card:hover .truck_overlay {
  transform: scale(1);
}

.overlay_name {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.overlay_price {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.truck_card:hover .truck_info {
  opacity: 0;
}

.truck_info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: var(--transition);
  padding: 25px;
  z-index: 5;
}

.truck_name {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.truck_price {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(232, 232, 232, 0.65);
  margin: 0;
}

/* ───────────────── Featured Trucks Section End ───────────────── */

/* ───────────────── Blog Section Start ───────────────── */

.blog_sec {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  background-color: #1b2833;
}

.blog_heading {
  font-family: var(--primary-font);
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.blog_card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.blog_card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.blog_card_img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.blog_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.blog_card:hover .blog_card_img img {
  transform: scale(1.05);
}

.blog_card_body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog_card_title {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.blog_card_title a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.blog_card_title a:hover {
  color: rgba(232, 232, 232, 0.75);
}

.blog_card_excerpt {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(232, 232, 232, 0.6);
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_read_more {
  display: inline-block;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: 4px;
  transition: var(--transition);
  position: relative;
  width: fit-content;
}

.blog_read_more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s ease;
}

.blog_read_more:hover::after {
  width: 100%;
}

.blog_read_more:hover {
  color: #cc0000;
}

/* ───────────────── Blog Section End ───────────────── */

/* ───────────────── Gallery / Instagram Feed Section Start ───────────────── */

.gallery_sec {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.gallery_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.gallery_title {
  font-family: var(--primary-font);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.gallery_watermark {
  text-align: center;
  margin: 0 0 -45px;
}

.gallery_swiper_wrp {
  position: relative;
  z-index: 2;
  padding: 30px 0 20px;
}

.gallery_swiper {
  overflow: visible !important;
}

.gallery_swiper .swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  transition: var(--transition);
  transform: scale(0.82);
  filter: brightness(0.45);
  opacity: 0.7;
}

.swiper-slide-active {
  transform: scale(1) !important;
  filter: brightness(1) !important;
  opacity: 1 !important;
}

.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(0.88) !important;
  filter: brightness(0.55) !important;
  opacity: 0.85 !important;
}

.slide_inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.swiper-slide-active .slide_inner {
  border-color: #3b82f6;
  box-shadow:
    0 0 0 1px #3b82f6,
    0 20px 60px rgba(59, 130, 246, 0.25);
}

.slide_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.swiper-slide-active .slide_inner:hover img {
  transform: scale(1.05);
}

.slide_overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 12, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.swiper-slide-active .slide_inner:hover .slide_overlay {
  opacity: 1;
}

.slide_overlay_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(10px);
  transition: var(--transition);
}

.swiper-slide-active .slide_inner:hover .slide_overlay_content {
  transform: translateY(0);
}

.slide_overlay_content svg {
  color: var(--white);
}

.slide_overlay_content span {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.gallery_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(254, 1, 0, 0.4);
}

.gallery_arrow:hover {
  background: var(--btn-bg);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.gallery_prev {
  left: 16px;
}

.gallery_next {
  right: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* ───────────────── Gallery / Instagram Feed Section End ───────────────── */

/* ───────────────── Dump Truck Inventory Start ───────────────── */

.dump-truck-inventory {
  position: relative;
  background-image: url("../images/trac_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--text);
  padding-block: 200px 65px;
}

.dump-truck-inventory::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(22, 31, 38, 0) 41.753%,
      rgba(22.05, 30.97, 38, 0.45) 54.375%,
      rgba(22.08, 30.96, 38, 0.73) 66.997%,
      rgba(22.11, 30.94, 38, 1) 104.861%);
  z-index: 1;
}

.dump-truck-inventory .container {
  position: relative;
  z-index: 2;
}

.dump-truck-inventory h3 {
  max-width: 450px;
}

.dump-truck-inventory p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 650px;
}

/* ───────────────── Dump Truck Inventory End ───────────────── */

/* ───────────────── Truck CTA Start ───────────────── */
.truck-cta-section {
  background-color: var(--bg);
}

.truck-cta-section .container {
  position: relative;
}

.cta-title {
  font-size: clamp(25px, 4vw, 48px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

.truck-cta-wrp {
  max-width: 550px;
  margin-inline: auto;
}

.cta-image-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.cta-text {
  color: var(--text);
  max-width: 420px;
}

.cta-divider {
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

/* ───────────────── Truck CTA End ───────────────── */


/* ───────────────── Testimonial Start ───────────────── */
.testimonial-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg);
}

.testi-bg-text {
  text-align: center;
}

.testi-sub {
  color: var(--text);
  text-align: center;
}

.testi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  min-height: 380px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.testi-card:hover::before {
  height: 100%;
}

.quote-bg {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
  transition: all 0.4s ease;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testi-header .stars {
  color: #ffb400;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.testi-content-wrapper {
  flex-grow: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.testi-card p {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  color: #d1d1d1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testi-card p.expanded {
  -webkit-line-clamp: unset;
}

.read-more-btn {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #fff;
}

.testi-footer {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testi-footer .name {
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.testi-footer .role {
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
}

.testi-card:hover {
  background: #fff;
  color: #000;
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.testi-card:hover p {
  color: #444;
}

.testi-card:hover .testi-footer {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.testi-card:hover .testi-footer .name {
  color: #000;
}

.testi-card:hover .quote-bg {
  color: rgba(0, 0, 0, 0.04);
  transform: scale(1.1) rotate(10deg);
}

.testi-card .logo {
  margin: 0;
}

.testi-card .logo img {
  height: 28px;
  max-width: 110px;
  object-fit: contain;
  transition: var(--transition);
}

.testi-card:hover .logo img {
  filter: brightness(1) invert(1);
}

.testi-card.white-theme {
  background: #fff;
  color: #000;
  border-color: rgba(0, 0, 0, 0.05);
}

.testi-card.white-theme::before {
  background: #0B0F13;
}

.testi-card.white-theme .quote-bg {
  color: rgba(0, 0, 0, 0.04);
}

.testi-card.white-theme p {
  color: #444;
}

.testi-card.white-theme .testi-footer {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.testi-card.white-theme .name {
  color: #000;
}

.testi-card.white-theme .logo img {
  filter: brightness(1) invert(1);
}

.testi-card.white-theme:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.testi-card.white-theme:hover .quote-bg {
  color: rgba(255, 255, 255, 0.03);
}

.testi-card.white-theme:hover p {
  color: #d1d1d1;
}

.testi-card.white-theme:hover .testi-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testi-card.white-theme:hover .name {
  color: #fff;
}

.testi-card.white-theme:hover .logo img {
  filter: none;
}

/* ───────────────── Testimonial End ───────────────── */

/* ───────────────── Benefits Start ───────────────── */
.benifit-section {
  margin-bottom: 100px;
}

.benifit-section .container {
  text-align: center;
}

.benifit-section h2 {
  text-align: center;
  text-transform: capitalize;
}

.benifit-wrp {
  max-width: 1100px;
  margin-inline: auto;
  margin-top: 50px;
}

/* ───────────────── Benefits End ───────────────── */

/* ───────────────── About Start ───────────────── */
.about-section {
  overflow: hidden;
  position: relative;
  margin-block: 50px;
}

.about-section::before {
  top: 10%;
  height: 80%;
  left: 0;
  right: 20%;
  border-radius: 0 300px 300px 0;
  background-color: var(--red);
  content: "";
  position: absolute;
}

.about-content p {
  color: var(--text);
  padding-block: 15px;
}

.about-content .secondary-btn {
  max-width: fit-content;
}

.about-content {
  position: relative;
  max-width: 510px;
}

.video-circle {
  position: relative;
  width: 650px;
  max-width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
  aspect-ratio: 1 / 1;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 99;
  color: var(--red);
  font-size: 25px;
  cursor: pointer;
}

.video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ───────────────── About End ───────────────── */

/* ───────────────── FAQ Start ───────────────── */

.faq-section {
  width: 100%;
  margin-bottom: 100px;
}

.filter-bar {
  width: 100%;
  max-width: 100%;
  border-radius: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.filter-item+.filter-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: var(--border);
  pointer-events: none;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: var(--btn-bg);
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 32px 10px 16px;
  cursor: pointer;
  border-radius: 60px;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-select option {
  background: #1a2130;
  color: var(--text);
  font-family: var(--primary-font);
}

/* Placeholder option color */
.filter-select option[value=""] {
  color: var(--text-placeholder);
}

/* ── Chevron icon ── */
.filter-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.filter-chevron svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ── Search Button (last item) ── */
.filter-search-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 4px;
}

.filter-search-btn:hover {
  background: #d40000;
  transform: scale(1.05);
}

.filter-search-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.faq-card {
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50% 1fr;
}

.faq-section h2,
.faq-section h3 {
  text-align: center;
}

.faq-card {
  margin-top: 60px;
}

/* LEFT column */
.faq-list {
  border-right: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: none !important;
  position: relative;
}

.faq-item::before {
  position: absolute;
  background-color: #132431;

  content: "";
  height: 1px;
  width: calc(100% - 50px);
  left: 50px;
  top: calc(100% - 1px);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 50px 0 0 50px;
  transition: var(--transition);
}

.faq-trigger:hover {
  background: #1B2833;
}

.faq-item.active .faq-trigger {
  background: #1B2833;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1B2833;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--white);
}

.faq-item.active .faq-icon svg {
  stroke: var(--red);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transform: rotate(0deg);
  transition: var(--transition);
}

.faq-item.active .faq-icon svg {
  transform: rotate(90deg);
}

.faq-label {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* RIGHT column */
.faq-panel {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0px;
  background-color: #1B2833;
}

.faq-answer {
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  margin-bottom: 20px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ───────────────── FAQ End ───────────────── */

/* ───────────────── Footer Start ───────────────── */

.footer {
  background: #081017;
  padding-top: 90px;
}

.footer_top {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer_hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer_hours_icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_hours_icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(10);
}

.footer_hours_content h6 {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer_hours_content p {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(232, 232, 232, 0.7);
  line-height: 1.7;
  margin: 0;
}

.footer_hours_content p span {
  font-weight: 600;
  color: var(--text);
}

.footer_heading {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer_nav a {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 400;
  color: rgba(232, 232, 232, 0.75);
  padding: 7px 0;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  display: inline-block;
  max-width: fit-content;
}

.footer_nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.footer_nav a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer_nav a:hover::after {
  width: 100%;
}

.footer_contact_sub {
  font-family: var(--primary-font);
  font-size: 14px;
  color: rgba(232, 232, 232, 0.65);
  margin: -10px 0 4px;
  line-height: 1.5;
}

.footer_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer_contact_icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}

.footer_contact_item strong {
  display: block;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.footer_contact_item p {
  font-family: var(--primary-font);
  font-size: 14px;
  color: rgba(232, 232, 232, 0.75);
  line-height: 1.6;
  margin: 0;
}

.footer_contact_item a {
  color: rgba(232, 232, 232, 0.75);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.footer_contact_item a:hover {
  color: var(--red);
}

.footer_map {
  width: 100%;
  height: 100%;
  /* border-radius: 12px; */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer_copy {
  font-family: var(--primary-font);
  font-size: 14px;
  color: rgba(232, 232, 232, 0.5);
  margin: 0;
}

.footer_socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social_btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 232, 232, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.social_btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.social_btn--dark {
  background: rgba(255, 255, 255, 0.12);
}

/* ───────────────── Footer End ───────────────── */

/* ───────────────── Inventory Page Start ───────────────── */
.inner_bnr {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  padding-top: 140px;
  position: relative;
}

.inner_bnr .banner_content_wrp {
  padding-top: 50px;
  padding-bottom: 150px;
}

.inventory_sec {
  padding: 50px 0 80px;
}

.inventory_watermark {
  text-align: center;
  margin-bottom: -10px;
  text-transform: capitalize;
}

/* ───────────────── Inventory Page End ───────────────── */


/* About Page Start */
.about_innr {
  padding: 80px 0;
}

.abt_bnr h1 {
  text-align: left;
}

.abt_bnr .banner_content_wrp {
  justify-content: flex-start;
}

.abt_bnr .banner_content {
  margin: unset;
}

.counter-section .counter-item {
  text-align: center;
  margin-bottom: 40px;
}

.counter-section span {
  font-size: 65px;
  font-weight: 700;
}

.counter-section .counter-text {
  font-size: 16px;
  font-weight: 500;
}

.about_innr img {
  border-radius: 20px;
}

.abt_cntnt .expertise_watermark {
  margin-left: -20px;
}

.abt_fl_cnt {
  margin-left: 20px;
}


/* About Page End */
/* Mission Vision Page Start */
.mission-vision-section {
  padding: 80px 0;
}

.mission-vision-section .msn_sub {
  max-width: 936px;
}

.mission-vision-section img {
  border-radius: 20px;
}

.mission_sec h5 {
  font-size: 35px;
  font-weight: 500;
}

.mission_sec h2.expertise_watermark {
  margin-left: 27px;
}

.misson_cntnt {
  padding: 0 30px;
  margin-top: 31px;
  border-left: 3px solid #FE0100;
}

.msn_img {
  padding: 0 30px;
}

.vsn_img {
  margin-top: -61px;
  padding: 0 30px;
}

/* Mission Vision Page End */


/* Contact Page Start */
.contact-page {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Area */
.page-heading {
  text-align: center;
  margin-bottom: 60px;
}

.page-heading h2 {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  ;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-heading .red-accent {
  color: var((--red));
}

/* Unified Split Card Layout */
.contact-card-glass {
  display: flex;
  background-color: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
}

/* -----------------------
           LEFT SIDE: INFO PANEL
        ------------------------ */
.contact-info-panel {
  flex: 0 0 35%;
  background: linear-gradient(135deg, #f61118 0%, #aa0004 100%);
  padding: 60px 50px;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Decorative Hexagon Pattern Background */
.contact-info-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="69.282" xmlns="http://www.w3.org/2000/svg"><path d="M40 17.32l-20 11.547L0 17.32V-5.774l20-11.547L40-5.774V17.32zm0 46.188l-20 11.548-20-11.548V40.415L20 28.868l20 11.547v23.093z" fill="%23ffffff"/></svg>');
  background-size: 40px 69.282px;
  z-index: -1;
  mix-blend-mode: overlay;
}

.info-header {
  margin-bottom: 50px;
}

.info-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.info-header p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Dark Hexagon Icon Box */
.hex-icon-dark {
  width: 56px;
  height: 56px;
  background-color: var(--bg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.detail-item:hover .hex-icon-dark {
  transform: scale(1.1) rotate(5deg);
  background-color: #1a222e;
}

.hex-icon-dark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.detail-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.detail-text span {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.detail-text strong {
  font-weight: 700;
  color: #ffffff;
  min-width: 75px;
  display: inline-block;
}

/* -----------------------
           RIGHT SIDE: FORM PANEL
        ------------------------ */
.contact-form-panel {
  flex: 1;
  padding: 60px 70px;
  background-color: var(--surface);
  position: relative;
}

.contact-form-panel h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 24px 0;
  color: var(--white);
  ;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}

.form-grid p {
  margin-bottom: 0;
}

.full-width {
  grid-column: span 2;
}

/* Material / Apple Style Floating Labels */
.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  background-color: #111720;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--white);
  padding: 24px 20px 8px 20px;
  font-size: 17px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 140px;
  height: 140px;
  padding-top: 32px;
  /* Space for floated label */
}

.input-wrapper label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #e8e8e8;
  font-size: 16px;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-wrapper textarea~label {
  top: 25px;
  transform: none;
}

/* Focus state on the input itself */
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(246, 17, 24, 0.1);
  background-color: #151d28;
}

.input-wrapper label.active {
  top: 8px;
  transform: translateY(0);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e8e8e8;
  /* filled but not focused = grey */
}

/* Label reverts color when filled but not focused */
.input-wrapper span:not(:focus-within) input:not(:placeholder-shown)~label,
.input-wrapper textarea:not(:focus):not(:placeholder-shown)~label {
  color: #e8e8e8;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(246, 17, 24, 0.1);
  background-color: #151d28;
}

.input-wrapper:focus-within label,
.input-wrapper input:not(:placeholder-shown)+label,
.input-wrapper textarea:not(:placeholder-shown)+label {
  top: 8px;
  transform: translateY(0);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper input:not(:focus):not(:placeholder-shown)~label,
.input-wrapper textarea:not(:focus):not(:placeholder-shown)~label {
  color: #e8e8e8;
  /* Revert label color if has value but not focused */
}


/* Submit Button Styling */
.btn-glowing {
  background: linear-gradient(135deg, var(--red) 0%, #aa0004 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 45px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(246, 17, 24, 0.3);
  width: 100%;
  margin-top: 15px;
}

.btn-glowing:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(246, 17, 24, 0.5);
  background: linear-gradient(135deg, #ff232a 0%, #bb0005 100%);
}

.btn-glowing:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(246, 17, 24, 0.3);
}

.btn-glowing svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.btn-glowing:hover svg {
  transform: translateX(6px);
}

/* -----------------------
           MAP SECTION
        ------------------------ */
.map-wrapper-premium {
  width: 100%;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  background-color: var(--surface);
}

.map-wrapper-premium iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



/* ============ Car Detail Page================= */

/* Container */
.car-details-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  padding-top: 150px;
}


/* Breadcrumb */
.breadcrumb {
  margin-bottom: 25px;
  font-size: 14px;
  color: #e8e8e8;
  font-weight: 500;
}

.breadcrumb a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.08);
}

.breadcrumb .current {
  color: var(--white);
}

/* Header Row (Title and Price) */
.truck-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.truck-title-box {
  flex: 1;
}

.truck-title-box h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white);
  text-transform: uppercase;
}

.stock-number {
  font-size: 14px;
  color: #e8e8e8;
  display: inline-block;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  font-weight: 500;
}

.price-wrapper {
  filter: drop-shadow(0 8px 15px rgba(246, 17, 24, 0.25));
  margin-top: 5px;
}

.truck-price-box {
  background: var(--red);
  color: #fff;
  padding: 12px 35px 12px 45px;
  font-size: 34px;
  font-weight: 900;
  clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

/* Main Details Grid */
.truck-details-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

/* Left: Image Gallery */
.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* THUMBNAIL SLIDER */
.thumbnails-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.thumbnails {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  width: 100%;
}

.thumbnails::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex: 0 0 calc(25% - 11.25px);
  /* Show 4 items by default */
  scroll-snap-align: start;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: var(--surface);
}

.thumb:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.thumb.active {
  border-color: var(--red);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--btn-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: background 0.3s;
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-btn.left {
  left: -18px;
}

.slider-btn.right {
  right: -18px;
}

/* Right: Action Panel (Buttons & Map) */
.action-panel {
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.contact-action-btn:hover {
  background: var(--btn-bg);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.contact-action-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  color: var(--white);
}

.btn-whatsapp svg {
  color: #25D366;
  fill: #25D366;
}

/* Map Section */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--surface);
}

/* Lower Section: Tabs */
.tabs-container {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  display: flex;
}

.tab-headers {
  display: flex;
  flex-direction: column;
  background: var(--btn-bg);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  width: 250px;
  flex-shrink: 0;
}

.tab-btn {
  padding: 25px 30px;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #e8e8e8;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: transparent;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
  color: var(--white);
  background: #161a1f;
}

.tab-btn.active::after {
  background: var(--red);
  box-shadow: 0 0 10px rgba(246, 17, 24, 0.5);
}

.tab-content {
  padding: 40px 50px;
  display: none;
  flex-grow: 1;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.description-text h3 {
  font-size: 20px;
  color: var(--white);
  margin-top: 15px;
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.description-text h3:first-child {
  margin-top: 0;
}

.description-text p {
  font-size: 16px;
  color: #e8e8e8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.description-text ul {
  list-style: none;
  margin-bottom: 25px;
  margin-top: 10px;
}

.description-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #e8e8e8;
  line-height: 1.7;
}

.description-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
}

.description-text ul li strong {
  color: var(--white);
}

/* Detailed Specs Table */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  list-style: none;
}

.spec-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-label-container {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e8e8e8;
  flex: 1;
}

.spec-label-container svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
  flex-shrink: 0;
}

.spec-value {
  font-weight: 600;
  text-align: right;
  color: var(--white);
}

/* -------------------------------------
           NEW SECTIONS (Contact, Calculator, Related)
        -------------------------------------- */

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.contact-section p {
  font-size: 16px;
  color: #e8e8e8;
  margin-top: 15px;
}

.contact-form-card {
  background: var(--surface);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}

.full-width {
  grid-column: span 2;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  background-color: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--white);
  padding: 24px 20px 8px 20px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 32px;
}

.input-wrapper label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #e8e8e8;
  font-size: 15px;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.25s ease;
}

.input-wrapper textarea~label {
  top: 25px;
  transform: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--red);
  background-color: #151d28;
}

.input-wrapper input:focus~label,
.input-wrapper input:not(:placeholder-shown)~label,
.input-wrapper textarea:focus~label,
.input-wrapper textarea:not(:placeholder-shown)~label {
  top: 8px;
  transform: translateY(0);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}

.btn-submit {
  background: var(--gradient-red);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(246, 17, 24, 0.3);
}

.btn-submit:hover {
  box-shadow: 0 10px 20px rgba(246, 17, 24, 0.5);
  transform: translateY(-2px);
} */

/* Loan Calculator */
.loan-calculator-box {
  background: var(--surface);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.loan-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.loan-header h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}

.loan-header svg {
  width: 38px;
  height: 38px;
  fill: var(--red);
}

.loan-inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.loan-field label {
  display: block;
  font-size: 13px;
  color: #e8e8e8;
  margin-bottom: 10px;
}

.loan-field label span {
  color: var(--red);
}

.loan-field-wrapper {
  position: relative;
}

.loan-field input {
  width: 100%;
  padding: 15px 15px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.loan-field input:focus {
  border-color: var(--red);
}

.btn-calculate {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  height: 51px;
  transition: background 0.3s;
}

.btn-calculate:hover {
  background: #d00000;
}

.calc-result {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.calc-result h3 {
  font-size: 24px;
  color: var(--red);
  font-weight: 900;
}

/* Search Results SLIDER Section */
.related-section {
  margin-bottom: 60px;
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.related-header h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  letter-spacing: 1px;
}

.related-header h2 span {
  font-size: 20px;
  color: #e8e8e8;
}

.related-nav {
  display: flex;
  gap: 10px;
}

.related-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--btn-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}

.related-nav button:hover {
  background: var(--btn-bg);
  border-color: #fff;
}

.related-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  padding-bottom: 15px;
}

.related-grid::-webkit-scrollbar {
  display: none;
}

.related-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.rc-img {
  position: relative;
  height: 200px;
  border-bottom: 2px solid var(--red);
}

.rc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-price {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  padding: 5px 15px 5px 25px;
  font-weight: 900;
  font-size: 15px;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.rc-title {
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid red;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#searchBtn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}


/* Error Page */
/* Simple Layout Container */
.error-container {
  padding: 140px 0;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: auto;
}

/* 404 Floating Animation */
.error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 4px #fe0100;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards 0.2s, floatAnimation 4s ease-in-out infinite 1s;
}

/* Heading fade in */
.error-container h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.error-container .primary-btn {
  width: fit-content;
  margin: auto;
}

/* Paragraph fade in */
.error-container p {
  font-size: 1.1rem;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

/* Minimal Button */
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fe0100;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn-home:hover {
  background-color: #ff3333;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(254, 1, 0, 0.3);
}

.btn-home svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.btn-home:hover svg {
  transform: translateX(-5px);
}

/* Keyframes */
@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Blog Details Page */
.blog-details-section h1 {
  font-weight: 900;
  font-size: 2.75rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.5px;
  color: var(--white);
}

.blog-details-section h2 {
  font-size: 2.1rem;
  color: var(--red);
  margin-top: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  -webkit-text-fill-color: var(--red);
  /* Reset global decorative h2 (watermark-style) so article titles wrap and stay readable */
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  pointer-events: auto;
  user-select: text;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  position: relative;
  z-index: 1;
  line-height: 1.3;
  font-weight: 700;
}

.blog-content-wrapper>h2:first-child {
  margin-top: 0;
}

.blog-details-section h3 {
  font-size: 1.8rem;
  color: var(--white);
}

.blog-details-section strong {
  color: var(--white);
  font-weight: 700;
}

/* Structured Lists */
.blog-details-section ul,
ol {
  color: var(--grey);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.blog-details-section ul li,
ol li {
  margin-bottom: 0.85rem;
}

/* Custom Ordered List */
.blog-details-section ol {
  counter-reset: custom-counter;
  list-style: none;
}

.blog-details-section ol li {
  position: relative;
}

.blog-details-section ol li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter) ". ";
  color: var(--red);
  font-weight: 900;
  font-size: 1.2rem;
  position: absolute;
  left: -1.75rem;
}

/* Custom Unordered List */
.blog-details-section ul {
  list-style: none;
}

.blog-details-section ul li {
  position: relative;
}

.blog-details-section ul li::before {
  content: '■';
  color: var(--red);
  position: absolute;
  left: -1.5rem;
  font-size: 0.8rem;
  top: 0.4rem;
}

/* Image Formatting */
.blog-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-hero img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 520px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

.blog-details-section img.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  display: block;
  margin: 3rem 0 0 0;
}

p.image-caption {
  padding: 15px 25px;
  font-size: 0.95rem;
  color: var(--grey);
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 12px 12px;
  margin-bottom: 3rem !important;
  font-style: italic;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Meta Information details */
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-badge {
  background: var(--red);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* Main Section Styling */
section.blog-details-section {
  padding: 140px 0;
}

/* Glassmorphism/Surface Wrapper */
.blog-content-wrapper {
  background: var(--surface);
  padding: 50px 60px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Blockquote Styling */
.blog-details-section blockquote {
  border-left: 5px solid var(--red);
  padding: 25px 35px;
  margin: 3rem 0;
  background: rgba(254, 1, 0, 0.05);
  /* Very slight red tint */
  border-radius: 0 8px 8px 0;
}

.blog-details-section blockquote p {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Tags Post Area */
.blog-tags-container {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-tags-label {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 5px;
}

.blog-tag {
  background: #3c536d;
  color: var(--white);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.blog-tag:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-btn {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
  /* max-width: 48%; */
}

.nav-btn .nav-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-style: normal;
}

.nav-btn .nav-title {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.nav-btn:hover .nav-title {
  color: var(--red);
}

.nav-btn.prev {
  align-items: flex-start;
  text-align: left;
}

.nav-btn.next {
  align-items: flex-end;
  text-align: right;
}

.app-section {
  padding: 60px 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Iframe Card wrapper */
.iframe-card {
  background-color: var(--surface-dark);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  /* Gives iframe tall enough constraints to scroll natively within the box */
  height: clamp(800px, 80vh, 1100px);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Iframe header simulating a native browser window or secure portal header */
.iframe-header {
  background-color: #0b0e12;
  padding: 12px 20px;
  border-bottom: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333d4a;
}

.portal-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #586777;
  letter-spacing: 1px;
}

.iframe-wrap {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* Typically third-party portals are light */
}

/* Honeycomb Grid Container */
.honeycomb-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hex-col {
  display: flex;
  flex-direction: column;
  gap: var(--hex-gap);
  margin-left: var(--col-ml);
}

.hex-col:first-child {
  margin-left: 0;
}

.col-offset-0 {
  margin-top: var(--col-offset-0);
}

.col-offset-1 {
  margin-top: var(--col-offset-1);
}

.col-offset-2 {
  margin-top: var(--col-offset-2);
}

/* Hexagon Shape */
.hex {
  width: var(--hex-w);
  height: var(--hex-h);
  flex-shrink: 0;
  clip-path: url(#hexagon-clip);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
  background-color: #1B2833;
  color: var(--text-white);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
}

.hex.red {
  background-color: var(--red);
}

/* Flip Card Styles */
.hex.flip-card {
  padding: 0;
  transform-style: preserve-3d;
  background-color: transparent !important;
  transition: transform 0.6s ease-in-out, box-shadow 0.3s ease-in-out !important;
  clip-path: none !important;
  /* Removed from parent to restore proper 3D backface visibility */
}

.hex.flip-card .front-face,
.hex.flip-card .back-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: url(#hexagon-clip);
  /* Apply clip directly to faces instead */
}

.hex.flip-card .front-face {
  background-color: var(--red);
  transform: rotateY(0deg) translateZ(1px);
  /* Prevent z-fighting edge bleeding */
}

.hex.flip-card .back-face {
  background-color: #ffffff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotateY(180deg) translateZ(1px);
  /* Prevent z-fighting edge bleeding */
}

.hex.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}

.hex:hover {
  transform: scale(1.05);
  z-index: 10;
}

.hex.flip-card:hover {
  transform: scale(1.05) rotateY(180deg);
  z-index: 10;
}

.hex-inner {
  max-width: 150px;
  z-index: 1;
  pointer-events: none;
}

.hex-inner h4 {
  font-size: 15px;
  margin: 0 0 10px 0;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

.hex-inner p {
  font-size: 11px;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}

/* SVGs & Icon Layout inside hex */
.icon-hex {
  position: relative;
}

.icon-hex img {
  width: 50px;
  height: 50px;
  z-index: 1;
}

.icon-combo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.icon-combo svg.shield {
  width: 28px;
  height: 28px;
  margin-bottom: -10px;
  z-index: 2;
}

.icon-combo svg.hands {
  width: 52px;
  height: 52px;
}


/* ==========================================================================
   Advanced Sticky Section
   ========================================================================== */
.advanced-sticky-section {
  padding: 120px 0;
  color: #ffffff;
  position: relative;
  overflow: clip;
}

/* Background Decoration */


.sticky-container {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* --- Left Panel --- */
.sticky-left {
  flex: 0 0 42%;
  position: sticky;
  top: 150px;
  /* Adjust based on navbar height */
  padding-bottom: 50px;
}

.left-content {
  padding-right: 20px;
}

.left-content .subtitle {
  color: var(--red, #e31837);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.left-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
}

.left-content h2 .red-accent {
  color: var(--red, #e31837);
}

.left-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #b0b0b0;
  font-weight: 400;
}

/* --- Right Panel --- */
.sticky-right {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
}

/* --- Sticky Cards --- */
.solution-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  position: sticky;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(227, 24, 55, 0.2);
}

/* Staggered top values for stacking effect */
.solution-card.card-1 {
  top: 150px;
  z-index: 10;
}

.solution-card.card-2 {
  top: 170px;
  z-index: 11;
}

.solution-card.card-3 {
  top: 200px;
  z-index: 12;
}

.solution-card.card-4 {
  top: 230px;
  z-index: 13;
}

.solution-card.card-5 {
  top: 260px;
  z-index: 14;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.15) 0%, rgba(227, 24, 55, 0.05) 100%);
  border: 1px solid rgba(227, 24, 55, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--red, #e31837);
}

.solution-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.card-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #999999;
  margin-bottom: 35px;
}

.feature-list-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.feature-list li {
  position: relative;
  padding-left: 35px;
  font-size: 1.05rem;
  color: #bbbbbb;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: rgba(227, 24, 55, 0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e31837' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .about-sticky-col {
    position: sticky;
    top: 150px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   MERGED FROM: baldwin-park-page.css
   Used Dump Trucks Baldwin Park — scoped layout polish & motion
   (Only loaded by used-dump-trucks-baldwin-park.html)
═══════════════════════════════════════════════════════════════════ */

/* ── Local variable overrides for this page ── */
.page-baldwin-park {
  --grey: #a0aab4;
  /* fallback: not in global :root */
  --radius: 10px;
}

@keyframes bp-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bp-soft-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Lead hero (full bleed image band) */
.page-baldwin-park .bp-hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  margin-bottom: 0;
}

.page-baldwin-park .bp-hero-banner img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 480px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

.page-baldwin-park .bp-intro-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 1.5rem;
}

.page-baldwin-park .bp-intro-meta .blog-badge {
  background: var(--red);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.page-baldwin-park .bp-intro-meta a {
  color: var(--red);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.page-baldwin-park .bp-intro-meta a:hover {
  color: var(--white);
}

/* Section headline helper (inside expertise / inventory — not global h2) */
.page-baldwin-park .bp-section-kicker {
  font-size: 1rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Truck CTA repurposed lists */
.page-baldwin-park .bp-cta-col ul.bp-plain-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 1rem;
}

.page-baldwin-park .bp-cta-col ul.bp-plain-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
}

.page-baldwin-park .bp-cta-col ul.bp-plain-list li::before {
  content: "■";
  color: var(--red);
  position: absolute;
  left: 0;
  font-size: 0.65rem;
  top: 0.35rem;
}

/* ══════════════════════════════════════════
   SECTION 1 — Smarter Buying Checklist
   Premium glassmorphism card layout
══════════════════════════════════════════ */

.page-baldwin-park .bp-about-section {
  overflow: hidden;
  position: relative;
  margin-block: 0;
  /* Subtle ambient glow from left */
}

.page-baldwin-park .bp-about-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 1, 0, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-baldwin-park .bp-about-section .container {
  position: relative;
  z-index: 1;
}

/* Glass card wraps all the content */
.page-baldwin-park .bp-checklist-col {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 52px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

/* Red accent bar top-left of card */
.page-baldwin-park .bp-checklist-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
  border-radius: 24px 0 0 24px;
}

/* Numbered checklist items */
.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  counter-increment: chk;
}

.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul li:hover {
  background: rgba(254, 1, 0, 0.06);
  border-color: rgba(254, 1, 0, 0.25);
  transform: translateY(-2px);
}

/* Auto-numbered red badge */
.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul li::before {
  content: counter(chk, decimal-leading-zero);
  font-family: var(--secondary-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(254, 1, 0, 0.12);
  border: 1px solid rgba(254, 1, 0, 0.3);
  border-radius: 6px;
  padding: 3px 7px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.05em;
  position: static;
  top: auto;
  left: auto;
}

.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul {
  counter-reset: chk;
}

/* bp-mission-vision-section */
.page-baldwin-park .bp-mission-vision-section .msn_img {
  border-radius: 12px;
  object-fit: cover;
}

/* Fallback: other ul inside bp-checklist-col */
.page-baldwin-park .bp-checklist-col ul:not(.faq-list):not(.bp-checklist-ul) {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 0;
}

.page-baldwin-park .bp-checklist-col ul:not(.faq-list):not(.bp-checklist-ul) li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--grey);
  line-height: 1.55;
}

.page-baldwin-park .bp-checklist-col ul:not(.faq-list):not(.bp-checklist-ul) li::before {
  content: "■";
  color: var(--red);
  position: absolute;
  left: 0;
  font-size: 0.72rem;
  top: 0.42rem;
}

.page-baldwin-park .bp-organized-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.25rem;
}

.page-baldwin-park .bp-organized-tags span {
  background: rgba(254, 1, 0, 0.12);
  color: var(--white);
  border: 1px solid rgba(254, 1, 0, 0.35);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ── Typography utilities used throughout the page ── */
.page-baldwin-park .about-title {
  font-family: var(--primary-font);
  color: var(--white);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.page-baldwin-park .about-text {
  color: var(--grey);
  line-height: 1.65;
  font-size: 1rem;
}

.page-baldwin-park .cta-title {
  font-family: var(--primary-font);
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.page-baldwin-park .cta-text {
  color: var(--grey);
  line-height: 1.65;
  font-size: 1rem;
}

/* CTA image wrapper: subtle glow frame */
.page-baldwin-park .cta-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════════════
   SECTION 2 — Why Choose Us
   Premium isolated dark-surface layout
══════════════════════════════════════════ */

/* Section: dump-truck-inventory intro strip */
.page-baldwin-park .dump-truck-inventory {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-baldwin-park .dump-truck-inventory h3 {
  font-size: clamp(22px, 3vw, 38px);
}

/* ── Why Choose Us specific sub-section ── */
/* Target the last dump-truck-inventory which has the image + list */
.page-baldwin-park .dump-truck-inventory:has(.bp-cta-col) {
  background: linear-gradient(135deg, rgba(22, 26, 31, 0.95) 0%, rgba(10, 14, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

/* Ambient glow top-right */
.page-baldwin-park .dump-truck-inventory:has(.bp-cta-col)::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(254, 1, 0, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.page-baldwin-park .dump-truck-inventory:has(.bp-cta-col) .col-xl-10 {
  position: relative;
  z-index: 1;
}

/* Image: glowing border + red bottom-left accent */
.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(254, 1, 0, 0.18),
    0 20px 56px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(254, 1, 0, 0.08);
}

.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap:hover img {
  transform: scale(1.03);
}

/* Red corner accent on image */
.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--red);
  border-radius: 0 4px 0 20px;
}

/* Styled numbered list for bp-cta-col inside this section */
.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list {
  counter-reset: why;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--grey);
  transition: background 0.2s ease, border-color 0.2s ease;
  counter-increment: why;
  margin-bottom: 0;
}

.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list li:hover {
  background: rgba(254, 1, 0, 0.05);
  border-color: rgba(254, 1, 0, 0.22);
}

.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list li::before {
  content: counter(why);
  font-family: var(--secondary-font);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
  background: rgba(254, 1, 0, 0.10);
  border: 1px solid rgba(254, 1, 0, 0.28);
  border-radius: 50%;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  position: static;
  top: auto;
  left: auto;
}

/* Section: truck CTA two-column */
.page-baldwin-park .truck-cta-section .cta-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  z-index: 0;
}

.page-baldwin-park .truck-cta-wrp {
  position: relative;
  z-index: 1;
}

/* misson_cntnt border accent (override the global padding that may be misaligned) */
.page-baldwin-park .bp-mission-vision-section .misson_cntnt {
  padding: 0 24px;
  margin-top: 24px;
  border-left: 3px solid var(--red);
}

/* Final CTA band */
.page-baldwin-park .bp-final-cta {
  padding: 56px 0 72px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent 0%, rgba(254, 1, 0, 0.04) 100%);
}

.page-baldwin-park .bp-final-cta p {
  color: var(--grey);
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

/* Motion — stagger by section */
.page-baldwin-park .bp-hero-banner {
  animation: bp-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-baldwin-park main.page-baldwin-main>section {
  animation: bp-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(1) {
  animation-delay: 0.02s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(2) {
  animation-delay: 0.06s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(3) {
  animation-delay: 0.1s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(4) {
  animation-delay: 0.12s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(5) {
  animation-delay: 0.14s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(6) {
  animation-delay: 0.16s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(7) {
  animation-delay: 0.18s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(8) {
  animation-delay: 0.2s;
}

.page-baldwin-park .faq-section .faq-card {
  animation: bp-soft-in 0.55s ease-out 0.12s both;
}

.page-baldwin-park .inner_bnr .banner_content h1 {
  animation: bp-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 767.98px) {
  .page-baldwin-park .bp-hero-banner img {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  /* Checklist glass card: tighten padding on mobile */
  .page-baldwin-park .bp-checklist-col {
    padding: 28px 24px;
    border-radius: 16px;
  }

  /* Collapse 2-col checklist to 1 col */
  .page-baldwin-park .bp-checklist-col ul.bp-checklist-ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Why Choose Us dark card: no border-radius on mobile edge-to-edge */
  .page-baldwin-park .dump-truck-inventory:has(.bp-cta-col) {
    border-radius: 16px;
  }

  .page-baldwin-park .bp-mission-vision-section .msn_img,
  .page-baldwin-park .mission-vision-section .msn_img {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .page-baldwin-park .bp-checklist-col {
    padding: 22px 18px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-baldwin-park .bp-hero-banner,
  .page-baldwin-park main.page-baldwin-main>section,
  .page-baldwin-park .faq-section .faq-card,
  .page-baldwin-park .inner_bnr .banner_content h1 {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   MERGED FROM: los-angeles-page.css
   Los Angeles Page — scoped layout & components
═══════════════════════════════════════════════════════════════════ */

/* LA Page Specific Banner */
.la_bnr {
  background-image: url('../images/banner_bg.png');
  background-position: center center;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 120px;
}

.la_bnr h1 {
  font-size: clamp(32px, 5vw, 65px);
}

/* Strategic Move Grid */
.strategic-section {
  padding: 80px 0;
  position: relative;
}

.strategic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

@media (max-width: 767px) {
  .strategic-grid {
    grid-template-columns: 1fr;
  }
}

.strategic-card {
  background: rgba(22, 26, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.strategic-card:hover {
  transform: translateY(-10px);
  border-color: var(--red);
}

.strategic-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(254, 1, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--red);
  font-size: 24px;
}

.strategic-card h4 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 15px;
  font-family: var(--primary-font);
  font-weight: 700;
}

.strategic-card p {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Wide Range / Models Section */
.models-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(14, 30, 43, 0.4) 100%);
  position: relative;
}

.model-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.model-item {
  flex: 1 1 300px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.model-img {
  height: 240px;
  background-color: #0d1218;
  position: relative;
  overflow: hidden;
}

.model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.model-item:hover .model-img img {
  transform: scale(1.05);
  opacity: 1;
}

.model-content {
  padding: 30px;
}

.model-content h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}

.model-content p {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
}

/* Split Info Section (Personalization & Advantage) */
.split-info-section {
  padding: 100px 0;
  position: relative;
}

.split-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.split-info-content {
  flex: 1 1 500px;
}

.split-info-content h3 {
  margin-bottom: 25px;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.custom-list li i {
  color: var(--red);
  font-size: 20px;
  margin-top: 3px;
}

.advantage-box {
  background: rgba(22, 26, 31, 0.8);
  border-left: 4px solid var(--red);
  padding: 40px;
  border-radius: 0 15px 15px 0;
}

.advantage-box h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 26px;
}


/* ═══════════════════════════════════════════════════════════════════
   MERGED FROM: trucks-for-sale.css
   Trucks For Sale Page — scoped layout & components
═══════════════════════════════════════════════════════════════════ */

/* Banner */
.tfs_bnr {
  background-image: url('../images/banner_bg.png');
  background-position: center center;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 120px;
}

.tfs_bnr h1 {
  font-size: clamp(30px, 4.5vw, 60px);
}

/* Wide Intro Section */
.wide-intro {
  padding: 100px 0 60px;
  text-align: center;
}

.wide-intro-text {
  max-width: 900px;
  margin: 0 auto 50px;
}

.wide-intro-text h2 {
  text-align: center;
  margin-bottom: 10px;
}

.wide-intro-text h3 {
  margin-bottom: 30px;
}

.wide-intro-text p {
  font-size: 1.15rem;
  color: #b0b0b0;
  line-height: 1.7;
}

.img-panoramic {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Sticky Strategy Split Screen */
.sticky-strategy-section {
  padding: 100px 0;
  background: #0b0e12;
  position: relative;
}

.strategy-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.strategy-left {
  flex: 0 0 35%;
  position: sticky;
  top: 140px;
}

.strategy-right {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strategy-block {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--red);
  padding: 40px;
  border-radius: 0 15px 15px 0;
  transition: transform 0.4s ease, background 0.4s ease;
}

.strategy-block:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.06);
}

.strategy-block i {
  font-size: 30px;
  color: var(--red);
  margin-bottom: 20px;
}

.strategy-block h4 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.strategy-block p {
  color: #a0a0a0;
  font-size: 16px;
  margin: 0;
}

/* Zig-Zag Inventory Section */
.zig-zag-section {
  padding: 120px 0;
}

.zig-zag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.zig-zag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.zig-zag-row:last-child {
  margin-bottom: 0;
}

.zig-zag-img-col {
  flex: 0 0 50%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
}

.zig-zag-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zig-zag-row:hover .zig-zag-img-col img {
  transform: scale(1.05);
}

.zig-zag-txt-col {
  flex: 0 0 40%;
}

.zig-zag-txt-col h4 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.zig-zag-txt-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.zig-zag-txt-col p {
  font-size: 17px;
  color: #b0b0b0;
  line-height: 1.6;
}

/* Overlapping Cards Section */
.overlap-cards-section {
  padding: 120px 0;
  background: url('../images/trac_bg.png') center center/cover;
  position: relative;
  background-attachment: fixed;
}

.overlap-cards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 12, 0.95) 0%, rgba(3, 8, 12, 0.7) 100%);
}

.overlap-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlap-card-1 {
  flex: 0 0 50%;
  padding: 60px;
  background: linear-gradient(135deg, rgba(22, 26, 31, 0.95), rgba(22, 26, 31, 0.85)), url('../images/feature_1.png') center/cover;
  backdrop-filter: blur(15px);
  border: 1px solid var(--red);
  border-radius: 20px;
  z-index: 3;
  margin-right: -80px;
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.6);
}

.overlap-card-1 h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.overlap-card-1 ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.overlap-card-1 li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #e8e8e8;
}

.overlap-card-1 li i {
  color: var(--red);
  margin-top: 4px;
}

.overlap-card-2 {
  flex: 0 0 45%;
  padding: 60px 50px 60px 120px;
  background: linear-gradient(145deg, #11151a, #090c0f);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  z-index: 2;
}

.overlap-card-2 h4 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 15px;
}

.overlap-card-2 p {
  color: #999;
  font-size: 16px;
  margin-bottom: 35px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .strategy-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .strategy-left {
    position: static;
  }

  .zig-zag-row {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 60px;
  }

  .zig-zag-txt-col {
    padding: 0 15px;
  }

  .overlap-container {
    flex-direction: column;
  }

  .overlap-card-1 {
    margin-right: 0;
    margin-bottom: -30px;
  }

  .overlap-card-2 {
    padding: 60px 40px;
    width: 90%;
    margin: 0 auto;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   Last updated: 2026-05-05
═══════════════════════════════════════════════════════════════════ */

/* Main section */
.app-section {
  padding: 50px 0 80px;
  flex-grow: 1;
}

/* ── TAB SWITCHER ── */
.tab-switcher {
  display: flex;
  gap: 0;
  background: #0f1318;
  border: 1px solid #222933;
  border-radius: 12px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 40px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(209, 17, 17, 0.4);
}

.tab-btn:not(.active):hover {
  color: #ffffff;
}

/* ── TAB PANELS ── */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.app-section .tab-btn.active::after {
  background: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   Inventory Detailed Content CSS
   Updated: 12-05-2026
═══════════════════════════════════════════════════════════════════ */

/* Section Typography & Utilities */
.dtk-inv-intro,
.dtk-inv-glance,
.dtk-inv-performance,
.dtk-inv-faq {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dtk-inv-solutions {
  border: none;
}

.section-title {
  font-family: var(--primary-font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.txt-red {
  color: var(--red);
  position: relative;
  display: inline-block;
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(22, 26, 31, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-panel p {
  color: #c0c0c0;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Intro Image & Badge */
.dtk-inv-image-wrapper {
  position: relative;
  z-index: 1;
}

.dtk-inv-image-wrapper img {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dtk-inv-image-wrapper:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: rgba(254, 1, 0, 0.9);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(254, 1, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  animation: floatUpDown 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* At a Glance Cards */
.glance-card {
  background: linear-gradient(145deg, rgba(22, 26, 31, 0.8) 0%, rgba(14, 17, 21, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.glance-card:hover {
  transform: translateY(-10px);
  border-color: rgba(254, 1, 0, 0.3);
}

.glance-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glance-list li {
  position: relative;
  padding-left: 25px;
  color: #e0e0e0;
  font-size: 16px;
}

.glance-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metrics-grid span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #ccc;
  transition: all 0.3s ease;
}

.metrics-grid span:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Solutions Grid */
.dtk-inv-solutions {
  background: url('../images/trac_bg.png') center/cover fixed;
}

.dtk-inv-solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 17, 21, 0.95) 0%, rgba(14, 17, 21, 0.8) 100%);
}

.dtk-inv-solutions .container {
  position: relative;
  z-index: 2;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.solution-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.solution-item:hover {
  background: rgba(254, 1, 0, 0.2);
  border-color: var(--red);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

/* Performance Cards */
.perf-card {
  background: rgba(22, 26, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
}

.perf-card:hover {
  background: rgba(22, 26, 31, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.perf-icon {
  width: 60px;
  height: 60px;
  background: rgba(254, 1, 0, 0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.perf-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.perf-card p {
  color: #a0a0a0;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.perf-card-wide {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .perf-card-wide {
    flex-direction: column;
  }
}


@media (max-width: 991px) {
  .floating-badge {
    right: 10px;
    bottom: -20px;
  }
}


/* ═══════════════ Compare Page Styles (14-05-2026) ═══════════════ */

.compare-section {
  background: var(--bg);
  position: relative;
}

.compare-column {
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.compare-selector-wrp .select_wrp {
  max-width: 100%;
}

.compare-selector-wrp select.compare-select {
  height: 60px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.compare-selector-wrp select.compare-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(254, 1, 0, 0.2);
}

.compare-data-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

/* Car Summary Header (Image/Price/Name) */
.compare-car-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-car-brand {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.compare-car-title {
  font-family: var(--primary-font);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.compare-car-price {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(254, 1, 0, 0.1);
  border: 1px solid rgba(254, 1, 0, 0.3);
  border-radius: 40px;
}

/* Spec Row Item */
.compare-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.compare-spec-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.spec-label {
  color: #a0a0a0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-label i {
  color: var(--red);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.spec-value {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

/* Value Highlights based on type */
.spec-value.feature-yes {
  color: #4caf50;
}

.spec-value.feature-no {
  color: #f44336;
}

@media (max-width: 768px) {
  .compare-column {
    padding: 20px;
  }

  .compare-spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .spec-value {
    text-align: left;
    padding-left: 30px;
  }
}

.compare-car-image-wrp {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.compare-car-image-wrp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.compare-car-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.compare-car-image-wrp:hover .compare-car-image {
  transform: scale(1.05);
}



/* 16-05-2026 - Stylish Range Slider Filters */
.stylish-range-container {
  max-width: 1100px;
  margin: 0 auto 50px auto;
  padding: 35px 50px;
  border-radius: 15px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.range-group {
  position: relative;
  margin-bottom: 0;
  flex: 1;
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.range-header span:first-child {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.range-value {
  color: var(--red);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  background: rgba(254, 1, 0, 0.1);
  padding: 6px 18px;
  border-radius: 30px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 5px;
}

.slider-track {
  position: absolute;
  height: 100%;
  background: transparent;
  border-radius: 5px;
  z-index: 1;
}

.stylish-range-container input[type="range"] {
  position: absolute;
  width: 100%;
  height: 8px;
  top: 0;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  pointer-events: none;
  z-index: 2;
  margin: 0;
}

.stylish-range-container input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 4px solid var(--red);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.stylish-range-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.stylish-range-container input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 4px solid var(--red);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

/* 16-05-2026 - Interactive FAQ Page */
.interactive-faq-sec {
  padding: 80px 0;
  position: relative;
  background-color: #0b0f13;
}

.simple-stylish-faq {
  max-width: 900px;
  margin: 0 auto;
}

.custom-accordion .accordion-item {
  background: #1e1e1e;
  /* Slight black matching other site components */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item.active {
  border-color: var(--red);
  box-shadow: 0 5px 20px rgba(254, 1, 0, 0.15);
}

.custom-accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-accordion .accordion-header .icon {
  font-size: 24px;
  color: var(--red);
  transition: transform 0.3s ease;
  font-weight: 400;
  line-height: 1;
}

.custom-accordion .accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.custom-accordion .accordion-item.active .accordion-header {
  color: var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-accordion .accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-accordion .accordion-item.active .accordion-body {
  grid-template-rows: 1fr;
}

.custom-accordion .accordion-content {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.custom-accordion .accordion-item.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.custom-accordion .accordion-body {
  padding: 0;
}

.custom-accordion .accordion-content p {
  padding: 20px 30px;
  margin: 0;
  color: #d1d1d1;
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--primary-font);
  background: transparent;
}



/* 16-05-2026 - Responsive Stylish Range Slider */
@media (max-width: 991px) {
  .stylish-range-container {
    padding: 25px 30px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .stylish-range-container {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 25px;
  }
}

@media(max-width: 480px) {
  .range-value {
    font-size: 13px;
  }
}

.testimonial-content {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-content.expanded {
  display: block;
}

.read-toggle {
  color: red;
  cursor: pointer;
  font-weight: 600;
  font-style: italic;
}

/* 16-05-2026 - Sticky Strategy Overlapping Cards */
.strategy-right .strategy-block {
  background: #1e1e1e;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
}

@media (min-width: 992px) {
  .strategy-right .strategy-block:nth-child(1) {
    position: sticky;
    top: 150px;
    z-index: 10;
  }

  .strategy-right .strategy-block:nth-child(2) {
    position: sticky;
    top: 180px;
    z-index: 11;
  }

  .strategy-right .strategy-block:nth-child(3) {
    position: sticky;
    top: 210px;
    z-index: 12;
  }

  .strategy-right .strategy-block:nth-child(4) {
    position: sticky;
    top: 240px;
    z-index: 13;
  }

  .strategy-right .strategy-block:nth-child(5) {
    position: sticky;
    top: 270px;
    z-index: 14;
  }
}

@media (max-width: 991px) {
  .strategy-right .strategy-block:nth-child(1) {
    position: sticky;
    top: 120px;
    z-index: 10;
  }

  .strategy-right .strategy-block:nth-child(2) {
    position: sticky;
    top: 150px;
    z-index: 11;
  }

  .strategy-right .strategy-block:nth-child(3) {
    position: sticky;
    top: 180px;
    z-index: 12;
  }

  .strategy-right .strategy-block:nth-child(4) {
    position: sticky;
    top: 210px;
    z-index: 13;
  }

  .strategy-right .strategy-block:nth-child(5) {
    position: sticky;
    top: 240px;
    z-index: 14;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   16-05-2026 - Blog Listing Page
═══════════════════════════════════════════════════════════════════ */
.blog-featured-section {
  background-color: var(--bg);
}

.featured-post-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-post-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.featured-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-post-card:hover .featured-img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
}

.blog-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.featured-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-title a:hover {
  color: var(--red);
}

.featured-meta {
  color: #a0a0a0;
  font-size: 14px;
}

.featured-meta i {
  color: var(--red);
  margin-right: 5px;
}

/* Side Posts */
.side-posts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.side-post-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #161a1f;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
}

.side-post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--red);
  box-shadow: 0 5px 15px rgba(254, 1, 0, 0.08);
}

.side-post-img-wrap {
  position: relative;
  width: 120px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.side-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side-post-card:hover .side-post-img {
  transform: scale(1.1);
}

.side-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.side-post-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.side-post-content h4 a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-post-content h4 a:hover {
  color: var(--red);
}

.side-meta {
  color: #a0a0a0;
  font-size: 13px;
}

/* Latest Articles Adjustments */
.blog-listing-section {
  background-color: var(--bg);
}

.blog-card {
  background: #161a1f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 3px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 10px 30px rgba(254, 1, 0, 0.15);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.blog-card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--red);
}

.blog-card-meta {
  display: flex;
  color: #888;
  font-size: 14px;
}

/* Pagination Adjustments for reference style */
.custom-pagination .page-item .page-link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin: 0 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-pagination .page-item .page-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.custom-pagination .page-item.active .page-link {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.custom-pagination .page-item.disabled .page-link {
  color: rgba(255, 255, 255, 0.3);
  border-color: transparent;
  background: transparent;
}

.custom-pagination .page-item:last-child .page-link {
  border-radius: 20px;
  width: auto;
  padding: 0 20px;
}

.blog-listing-section h3 span {
  color: var(--red);
}

.accordion-content p a {
  color: var(--red);
}

.ti-widget[data-wkey="feed-instagram"][data-style=dark][data-widget-type=social] .ti-widget-header .ti-header-btn .ti-btn {
  background-color: var(--red) !important;
}

.ti-widget[data-wkey="feed-instagram"][data-style=dark][data-widget-type=social] .ti-widget-header .ti-header-btn .ti-btn:hover {
  background-color: var(--red) !important;

  outline-color: #bb3433 !important;
}
.footer_copy a{
	color: var(--red);
}
.footer_copy a:hover{
	color: var(--white);
}