/* ==========================================================================
   R & M TRANSPORT INC - MAIN STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT FACES & UTILITIES
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Ethnocentric';
  src: url('../fonts/Ethnocentric-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Neue Plak';
  src: url('../fonts/Neue%20Plak%20Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Neue Plak';
  src: url('../fonts/Neue%20Plak%20SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Neue Plak';
  src: url('../fonts/Neue%20Plak%20Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Neue Plak Extended';
  src: url('../fonts/Neue%20Plak%20Extended%20Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --primary-red: #FD0100;
  --primary-red-hover: #D60000;
  --accent-blue-line: #061947;
  --accent-blue-marquee: #0c2b74;
  --theme-dark-bg: #0C0C1A;
  --text-dark: #000000;
  --font-ethnocentric: 'Ethnocentric', sans-serif;
  --font-neue-plak: 'Neue Plak', 'Neue Plak Extended', sans-serif;
}

/* Global Reset & Base Typography */
* {
  box-sizing: border-box;
}

/* Custom Responsive Spacing Utilities */
.pe-6 {
  padding-right: clamp(1.5rem, 4vw, 4.5rem) !important;
}

.ps-6 {
  padding-left: clamp(1.5rem, 4vw, 4.5rem) !important;
}

.padding-gap {
  padding-right: clamp(1rem, 3vw, 3rem);
}

/* 5 Column Grid Utility for Desktop */
@media (min-width: 1200px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

body {
  font-family: var(--font-neue-plak);
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 *,
h1 .word,
h1 .char,
h2 .word,
h2 .char,
.font-ethnocentric,
.font-ethnocentric * {
  font-family: var(--font-ethnocentric) !important;
}

p,
span:not(.char):not(.word),
a,
li,
label,
input,
button {
  font-family: var(--font-neue-plak);
}

/* Subtitle Line Helper */
.subtitle-with-line {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 2px;
  color: var(--accent-blue-line);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subtitle-with-line::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-blue-line);
  margin-left: 14px;
}

.subtitle-with-line-white {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subtitle-with-line-white::before,
.subtitle-with-line-white::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 12px;
}

/* --------------------------------------------------------------------------
   2. BUTTON STYLES (Red Slanted Parallelogram Button)
   -------------------------------------------------------------------------- */
.btn-red-slant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-red);
  color: #ffffff !important;
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: 0;
  padding: 16px 42px;
  border: none;
  border-radius: 0;
  transform: skewX(-20deg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 1, 0, 0.3);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.btn-red-slant .btn-text {
  display: inline-block;
  transform: skewX(20deg);
  font-family: var(--font-ethnocentric) !important;
}

.btn-red-slant:hover {
  background-color: var(--primary-red-hover);
  color: #ffffff !important;
  transform: skewX(-20deg) translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 1, 0, 0.5);
}

.btn-hero {
  padding: 18px 48px;
  font-size: clamp(13px, 1.1vw, 15px);
}

/* --------------------------------------------------------------------------
   3. HERO BANNER & FLOATING HEADER SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #040914;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating Site Header / Navbar (Full-width White Bar) */
.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 0 3%;
}

.header-unified-bar {
  background: #ffffff;
  padding: 14px 40px 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0% 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-logo {
  max-height: 50px;
  width: auto;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-desktop a,
.header-nav-list a,
.header-nav-link {
  font-family: var(--font-neue-plak), sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #111111 !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
  letter-spacing: 0.3px !important;
}

.header-nav-desktop a:hover,
.header-nav-list a:hover,
.header-nav-link:hover,
.header-nav-list .current-menu-item>a,
.header-nav-list .current_page_item>a,
.header-nav-list .active>a {
  color: var(--primary-red) !important;
}

/* Header Quote CTA Button */
.btn-header-quote {
  padding: 12px 30px !important;
  font-size: 12px !important;
  margin-left: 10px;
  box-shadow: 0 3px 12px rgba(253, 1, 0, 0.25);
}

/* Hamburger Toggle Button (Hidden on Desktop) */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 30;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--accent-blue-line);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger X State */
.hamburger-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(6, 25, 71, 0.97);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-nav-link,
.mobile-nav-list li a {
  font-family: var(--font-ethnocentric) !important;
  font-size: 18px;
  color: #ffffff !important;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-list li a:hover {
  color: var(--primary-red) !important;
}

.mobile-nav-quote {
  margin-top: 10px;
  padding: 14px 36px !important;
  font-size: 13px !important;
}

/* Hero Section (White bg so PNG bottom cuts show white) */
.hero-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  clip-path: polygon(0 0, 100% 0, 100% 89%, 96% 100%, 4% 100%, 0 89%);
}

.hero-banner-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.93%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Hero Content Overlay at Bottom of Banner */
.hero-content-overlay {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 100%;
  z-index: 10;
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(24px, 3.8vw, 52px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}



/* --------------------------------------------------------------------------
   4. "WHO WE ARE" / "YOUR JOURNEY, OUR COMMITMENT" SECTION
   -------------------------------------------------------------------------- */
.journey-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.journey-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(28px, 3.8vw, 60px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Staggered Stat Cards Container */
.stat-cards-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 20px;
}

/* Slanted Stat Card with Dark Blue Left Border Accent */
.stat-card-slanted {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--accent-blue-line) !important;
  padding: 24px 42px;
  transform: skewX(-16deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 380px;
}

.stat-card-slanted:hover {
  transform: skewX(-16deg) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-card-1 {
  align-self: flex-start;
  margin-left: 0;
}

.stat-card-2 {
  align-self: flex-start;
  margin-left: 110px;
}

.stat-card-3 {
  align-self: flex-start;
  margin-left: 15px;
}

.stat-card-content {
  transform: skewX(16deg);
}

.stat-number {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-ethnocentric) !important;
  font-size: 12.5px;
  color: #4a4a4a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. "BUILT ON RELIABILITY" / "WHY CHOOSE US" SECTION
   -------------------------------------------------------------------------- */
.why-choose-section {
  padding: 0;
  background-color: #f4f6fa;
  position: relative;
  overflow: hidden;
}

.why-choose-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(28px, 3.8vw, 60px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

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

.feature-icon-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--font-neue-plak);
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 4px;
}

.feature-desc {
  font-family: var(--font-neue-plak);
  font-size: 13.5px;
  color: #666666;
  line-height: 1.6;
}

.why-choose-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.why-choose-img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 1;
}

.why-choose-blue-shape {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 2;
  pointer-events: none;
}

.why-choose-white-line {
  position: absolute;
  top: 28%;
  right: 71px;
  width: 2.5px;
  height: 380px;
  background-color: #ffffff;
  transform: rotate(12deg);
  transform-origin: top right;
  z-index: 5;
  pointer-events: none;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   6. TOP MARQUEE BANNER SECTION ("R&M TRANSPORT" IN BLUE)
   -------------------------------------------------------------------------- */
.marquee-section {
  background-color: transparent;
  padding: clamp(20px, 3vw, 30px) 0 clamp(10px, 2vw, 15px);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(36px, 6vw, 92px);
  font-weight: 400;
  color: var(--accent-blue-marquee);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 clamp(20px, 3vw, 45px);
  display: inline-flex;
  align-items: center;
}

.marquee-item .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--primary-red);
  border-radius: 50%;
  margin-left: clamp(20px, 3vw, 45px);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   7. OUR GROWING TEAM SECTION
   -------------------------------------------------------------------------- */
.team-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.team-red-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(80px, 9vw, 135px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  transform: scaleX(-1);
}

.team-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(28px, 3.8vw, 60px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
  word-break: normal;
}

.team-description {
  font-family: var(--font-neue-plak);
  font-size: clamp(13.5px, 1.05vw, 15px);
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}

.team-img-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.team-img-cut {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.team-blue-divider {
  position: absolute;
  top: 35%;
  right: 16px;
  width: 3.5px;
  height: clamp(200px, 28vw, 407px);
  background-color: var(--accent-blue-line);
  transform: rotate(21deg);
  transform-origin: top right;
  z-index: 5;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   8. SHIPPING SOLUTIONS SECTION
   -------------------------------------------------------------------------- */
.shipping-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.shipping-red-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(80px, 9vw, 135px);
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.shipping-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(28px, 3.8vw, 60px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
  word-break: normal;
}

.shipping-description {
  font-family: var(--font-neue-plak);
  font-size: clamp(13.5px, 1.05vw, 15px);
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}

.shipping-img-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.shipping-img-cut {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.shipping-blue-divider {
  position: absolute;
  top: 35%;
  left: 16px;
  width: 3.5px;
  height: clamp(200px, 28vw, 407px);
  background-color: var(--accent-blue-line);
  transform: rotate(-21deg);
  transform-origin: top left;
  z-index: 5;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION ("OUR RELIABLE TRANSPORT. EXCEPTIONAL SERVICE.")
   -------------------------------------------------------------------------- */
.services-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: #ffffff;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 2px;
  color: var(--accent-blue-line);
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(26px, 3.8vw, 54px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 82% 100%, 0 100%);
}

.service-card-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img-wrapper img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-blue-line);
  color: #ffffff;
  font-family: var(--font-neue-plak);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 0;
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(6, 25, 71, 0.4);
	text-transform: capitalize;
}

.services-btn-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

.services-btn-divider::before,
.services-btn-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #e2e8f0;
}

.services-btn-divider .btn-red-slant {
  margin: 0 24px;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS SECTION ("REAL STORIES REAL SUCCESS")
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: #091057 !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-subtitle-light {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 2px;
  color: #a0aec0;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.section-title-light {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(24px, 3.5vw, 50px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

.testimonial-card {
  background-color: #ffffff;
  color: #2d3748;
  padding: 32px 26px;
  position: relative;
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-stars {
  color: #ff9900;
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-quote-icon {
  font-family: var(--font-ethnocentric) !important;
  font-size: 20px;
  color: #cbd5e0;
  font-weight: 700;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-neue-plak);
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-neue-plak);
  font-weight: 700;
  font-size: 16px;
  color: #1a202c;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 12px;
  color: #718096;
}

/* --------------------------------------------------------------------------
   11. CONTACT INFO / PICKUP CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
  background-image: url('../images/cta.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: rgba(12, 12, 26, 0.75); */
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 2px;
  color: #e2e8f0;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cta-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 38px;
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   12. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer-section {
  background-color: #0C0C1A !important;
  color: #ffffff;
  position: relative;
  padding-top: 75px;
  padding-bottom: 0;
  overflow: hidden;
}

.footer-truck-bg {
  position: absolute;
  right: -20px;
  bottom: 0px;
  max-height: clamp(180px, 20vw, 270px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

.footer-col {
  padding-bottom: 35px;
}

@media (min-width: 992px) {
  .footer-col-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.footer-logo {
  max-width: 230px;
  height: auto;
  background: white;
  border-radius: 10px;
}

.footer-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b3b9c9;
  text-decoration: none;
  font-size: 14.5px;
  font-family: var(--font-neue-plak);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: "»";
  color: #ffffff;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.footer-links a:hover::before {
  color: var(--primary-red);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.footer-icon-badge {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  margin-right: 14px;
  margin-top: 2px;
}

.footer-icon-badge.dot-badge {
  background: #0088cc;
  border: none;
  font-family: var(--font-ethnocentric) !important;
  font-size: 9px;
  font-weight: 700;
}

.contact-detail {
  font-size: 14px;
  line-height: 1.45;
}

.contact-label {
  color: #838c9e;
  font-size: 12px;
  display: block;
  font-weight: 400;
  font-family: var(--font-neue-plak);
}

.contact-value {
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-neue-plak);
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.footer-bottom-text {
  font-family: var(--font-neue-plak);
  font-size: 13.5px;
  color: #838c9e;
  margin: 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE DESIGN ADJUSTMENTS
   -------------------------------------------------------------------------- */

/* ---- XL Desktop & Below (≤1200px) ---- */
@media (max-width: 1200px) {

  .shipping-blue-divider,
  .team-blue-divider {
    display: none;
  }

  .why-choose-white-line {
    display: none;
  }

  .stat-card-2 {
    margin-left: 60px;
  }
}

/* ---- Tablet (≤991.98px) ---- */
@media (max-width: 991.98px) {

  /* Header */
  .site-header {
    top: 15px;
    padding: 0 2%;
  }

  .header-unified-bar {
    padding: 10px 20px 10px 16px;
    clip-path: none;
  }

  .header-logo {
    max-height: 40px;
  }

  .header-nav-list {
    display: none;
  }

  .header-nav-desktop {
    display: none;
  }

  .btn-header-quote {
    display: none !important;
  }

  .hamburger-toggle {
    display: flex;
  }

  .hero-banner-wrapper {
    clip-path: none !important;
  }

  /* Hero */
  .hero-content-overlay {
    bottom: 8%;
  }

  .hero-title {
    font-size: clamp(24px, 4.5vw, 44px) !important;
  }

  .subtitle-with-line-white {
    font-size: 11px;
  }

  /* Section paddings */
  .pe-6,
  .ps-6,
  .padding-gap {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Journey / Who We Are */
  .stat-cards-wrapper {
    padding-left: 0;
    align-items: center;
  }

  .stat-card-slanted {
    max-width: 320px;
  }

  .stat-card-1,
  .stat-card-2,
  .stat-card-3 {
    margin-left: 0;
    align-self: center;
  }

  /* Why Choose Us */
  .why-choose-img {
    clip-path: none;
    min-height: 350px;
  }

  .why-choose-img-wrapper {
    min-height: 350px;
  }

  .why-choose-blue-shape {
    display: none;
  }

  /* Services */
  .service-card {
    max-width: 100%;
  }

  .service-card-img-wrapper {
    max-width: 100%;
  }

  .service-card-img-wrapper img {
    height: 380px;
  }

  /* Testimonials */
  .testimonial-card {
    min-height: 260px;
    padding: 26px 22px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: clamp(20px, 3vw, 36px);
  }

  /* Footer */
  .footer-truck-bg {
    max-height: 160px;
    opacity: 0.3;
  }
}

/* ---- Small Tablet (≤767.98px) ---- */
@media (max-width: 767.98px) {

  /* Hero */
  .site-header {
    top: 10px;
  }

  .hero-banner-wrapper {
    min-height: 480px;
  }

  .hero-banner-img {
    min-height: 480px;
	object-position: 25% center !important;
	  

  }
	
/* 	img[alt*="Linehaul"] {
    object-position: bottom !important;
  } */

  .hero-content-overlay {
    bottom: 5%;
  }

  .hero-title {
    font-size: clamp(22px, 5vw, 36px) !important;
  }

  .btn-hero {
    padding: 14px 32px;
    font-size: clamp(11px, 1vw, 13px);
  }

  /* Section Titles */
  .journey-title,
  .team-title,
  .shipping-title,
  .why-choose-title {
    font-size: clamp(24px, 5vw, 40px) !important;
    margin-bottom: 18px;
  }

  .section-title {
    font-size: clamp(22px, 5vw, 36px) !important;
  }

  .section-title-light {
    font-size: clamp(20px, 4.5vw, 34px) !important;
  }

  /* Why Choose Us */
  .why-choose-section .padding-gap {
    padding: 2rem 1.5rem !important;
  }

  /* Feature List */
  .feature-list {
    gap: 18px;
    margin-top: 24px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-desc {
    font-size: 13px;
  }

  /* Services */
  .service-card-img-wrapper img {
    height: 320px;
  }

  .services-btn-divider {
    margin-top: 40px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: clamp(40px, 6vw, 70px) 0;
  }

  .testimonial-card {
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    min-height: 240px;
    padding: 24px 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  /* Marquee */
  .marquee-section {
    padding: 20px 0 10px;
  }

  .marquee-item .dot {
    width: 10px;
    height: 10px;
  }

  /* Footer */
  .footer-section {
    padding-top: 50px;
  }

  .footer-logo {
    max-width: 180px;
  }

  .footer-title {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .footer-links a {
    font-size: 13.5px;
  }

  .footer-truck-bg {
    display: none;
  }
}

/* ---- Mobile (≤575.98px) ---- */
@media (max-width: 575.98px) {

  /* Header */
  .header-unified-bar {
    padding: 8px 14px;
  }

  .header-logo {
    max-height: 34px;
  }

  .btn-header-quote {
    padding: 8px 16px !important;
    font-size: 10px !important;
    margin-left: 0;
  }

  /* Hero */
  .hero-banner-wrapper {
    min-height: 450px;
  }

  .hero-banner-img {
    min-height: 450px;
  }

  .hero-content-overlay {
    bottom: 4%;
    padding: 0 10px;
  }

  .hero-title {
    font-size: clamp(18px, 6vw, 28px) !important;
  }

  .subtitle-with-line-white {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .subtitle-with-line-white::before,
  .subtitle-with-line-white::after {
    width: 20px;
  }

  .btn-hero {
    padding: 12px 24px;
    font-size: 10px;
  }

  /* Buttons */
  .btn-red-slant {
    padding: 12px 28px;
    font-size: 12px;
  }

  /* Spacing */
  .pe-6,
  .ps-6,
  .padding-gap {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Section Titles */
  .journey-title,
  .team-title,
  .shipping-title,
  .why-choose-title {
    font-size: clamp(20px, 6vw, 32px) !important;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(18px, 5.5vw, 28px) !important;
  }

  .section-title-light {
    font-size: clamp(18px, 5vw, 26px) !important;
  }

  .section-subtitle,
  .section-subtitle-light,
  .subtitle-with-line {
    font-size: 10px !important;
    letter-spacing: 1.5px;
  }

  /* Descriptions */
  .shipping-description,
  .team-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  /* Stat Cards */
  .stat-card-slanted {
    padding: 18px 28px;
    max-width: 260px;
    transform: skewX(-12deg);
  }

  .stat-card-slanted:hover {
    transform: skewX(-12deg) translateY(-2px);
  }

  .stat-card-content {
    transform: skewX(12deg);
  }

  .stat-number {
    font-size: clamp(26px, 5vw, 34px);
  }

  .stat-label {
    font-size: 10px;
  }

  /* Services */
  .service-card-img-wrapper img {
    height: 280px;
  }

  .service-card-badge {
    font-size: 11.5px;
    padding: 5px 12px;
    top: 10px;
    left: 10px;
  }

  .services-btn-divider {
    margin-top: 30px;
  }

  /* Testimonials */
  .testimonial-card {
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
    min-height: 220px;
    padding: 22px 18px;
  }

  .testimonial-stars {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .testimonial-author {
    font-size: 14px;
  }

  .testimonial-role {
    font-size: 11px;
  }

  /* CTA */
  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: clamp(18px, 5vw, 28px);
    margin-bottom: 28px;
  }

  .cta-subtitle {
    font-size: 10px;
  }

  /* Footer */
  .footer-section {
    padding-top: 40px;
  }

  .footer-logo {
    max-width: 150px;
  }

  .footer-title {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-contact-item {
    margin-bottom: 16px;
  }

  .footer-icon-badge {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 12px;
  }

  .contact-detail {
    font-size: 13px;
  }

  .footer-bottom-text {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   PREMIUM GSAP & INTERACTION UTILITIES
   -------------------------------------------------------------------------- */
.gsap-reveal {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Service Card Hover Micro-Interactions */
.service-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card-img-wrapper img,
.service-card-banner img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-card-img-wrapper img,
.service-card:hover .service-card-banner img {
  transform: scale(1.08);
}

/* Stat Card Hover Effects */
.stat-card-slanted {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.stat-card-slanted:hover {
  transform: skewX(-15deg) scale(1.04) translateY(-4px);
  box-shadow: 0 10px 25px rgba(6, 25, 71, 0.25);
}

/* Testimonial Card Elevation */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Interactive Floating Image Accents */
.why-choose-blue-shape,
.shipping-red-shape {
  will-change: transform;
  animation: floatAmbient 6s ease-in-out infinite alternate;
}

.team-red-shape {
  will-change: transform;
  animation: floatTeamRed 6s ease-in-out infinite alternate;
}

@keyframes floatAmbient {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatTeamRed {
  0% {
    transform: scaleX(-1) translateY(0px) rotate(0deg);
  }

  100% {
    transform: scaleX(-1) translateY(-8px) rotate(1deg);
  }
}

/* Button Pulse & Glow Interaction */
.btn-red-slant {
  position: relative;
  overflow: hidden;
}

.btn-red-slant::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.btn-red-slant:hover::before {
  left: 150%;
}

/* --------------------------------------------------------------------------
   SWIPER TESTIMONIAL SLIDER STYLES
   -------------------------------------------------------------------------- */
.testimonial-swiper {
  padding: 10px 5px 50px 5px !important;
  overflow: hidden;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-swiper .swiper-slide .testimonial-card {
  width: 100%;
  height: 100%;
}

.testimonial-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.35;
  width: 10px;
  height: 10px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-red);
  opacity: 1;
  width: 28px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   SPLITTING.JS HEADING ANIMATION STYLES
   -------------------------------------------------------------------------- */
h1,
h2 {
  perspective: 600px;
  font-family: var(--font-ethnocentric) !important;
}

h1 .word,
h2 .word {
  display: inline-block;
  white-space: nowrap;
  font-family: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

h1 .char,
h2 .char {
  display: inline-block;
  will-change: transform, opacity;
  backface-visibility: hidden;
  font-family: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

/* --------------------------------------------------------------------------
   INNER PAGE TEMPLATE STYLES
   -------------------------------------------------------------------------- */
.inner-page-hero {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(4, 9, 20, 0.45) 0%, rgba(4, 9, 20, 0.3) 50%, rgba(4, 9, 20, 0.5) 100%); */
  z-index: 1;
}

.inner-banner-wrapper {
  height: 100%;
}

.inner-banner-img {
  height: 100% !important;
  object-fit: cover;
}

.inner-content-overlay {
  position: absolute !important;
  top: 60% !important;
  left: 0;
  width: 100%;
  transform: translateY(-50%) !important;
  bottom: auto !important;
  z-index: 10 !important;
}

.inner-hero-title {
  font-size: clamp(32px, 5vw, 68px) !important;
  margin-top: 15px;
  display: block;
  width: 100%;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}


.inner-services-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background-color: #f7fafc;
}

.section-desc-premium {
  font-size: clamp(14px, 1.2vw, 17px);
  color: #4a5568;
  max-width: 700px;
  line-height: 1.7;
}

.inner-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inner-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(253, 1, 0, 0.15);
}

.inner-service-img-wrapper {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%) !important;
}

.inner-service-img-wrapper img {
  height: 280px !important;
}

.service-card-body-premium {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title-premium {
  font-size: clamp(16px, 1.3vw, 20px) !important;
  color: var(--accent-blue-line);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-desc-premium-card {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.8em;
}

.service-action-premium {
  margin-top: auto;
}

.service-link-premium {
  font-family: var(--font-ethnocentric) !important;
  font-size: 11px;
  color: var(--primary-red) !important;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-link-premium i {
  transition: transform 0.3s ease;
}

.service-link-premium:hover {
  color: var(--primary-red-hover) !important;
}

.service-link-premium:hover i {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   SINGLE SERVICE & SIDEBAR STYLES
   -------------------------------------------------------------------------- */
.single-service-section {
  background-color: #f7fafc;
}

.single-service-content-wrapper {
  border-color: #e2e8f0 !important;
  border-radius: 8px !important;
}

.single-service-content-wrapper h2,
.single-service-content-wrapper h3 {
  color: #fd0100 !important;
}

.single-service-description {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

.single-service-description p,
.single-service-description ul li {
  font-size: 18px !important;
  color: #000000 !important;
  line-height: 1.8 !important;
}

.sidebar-widget {
  border-color: #e2e8f0 !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.sidebar-service-link {
  color: #1e293b;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.widget-cta {
  border-radius: 8px !important;
}

/* --------------------------------------------------------------------------
   WHO WE ARE PAGE STYLES
   -------------------------------------------------------------------------- */
.about-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 12px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(253, 1, 0, 0.18);
}

.inner-about-img {
  height: 480px !important;
  width: 100% !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  display: block;
}

.about-value-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px !important;
  padding: 30px 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(253, 1, 0, 0.15) !important;
}

.difference-card-premium {
  background: linear-gradient(135deg, #091530 0%, #040914 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.difference-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.difference-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(253, 1, 0, 0.2);
  border-color: rgba(253, 1, 0, 0.35);
}

.difference-card-premium:hover::before {
  opacity: 0.06;
}

.difference-card-content {
  position: relative;
  z-index: 2;
}

.text-light-gray {
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS & CONTACT PAGE STYLES
   -------------------------------------------------------------------------- */
.testimonial-card-premium {
  border-color: #e2e8f0 !important;
  border-radius: 8px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.testimonial-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(253, 1, 0, 0.15) !important;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}

.client-name-premium {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-blue-line);
}

.contact-page-list .footer-icon-badge {
  flex-shrink: 0;
  background: rgba(4, 9, 20, 0.05) !important;
  border: 1px solid rgba(4, 9, 20, 0.12) !important;
  color: var(--accent-blue-line) !important;
}

.contact-page-list .footer-icon-badge.dot-badge {
  background: var(--accent-blue-line) !important;
  color: #ffffff !important;
  border: none !important;
}

.contact-page-form-wrapper {
  background: linear-gradient(135deg, #e30613 0%, #90040b 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  box-shadow: 0 20px 45px rgba(227, 6, 19, 0.25) !important;
}

.contact-page-form-wrapper h3 {
  font-family: var(--font-ethnocentric) !important;
  font-size: 20px;
  color: #ffffff !important;
  letter-spacing: 0.5px;
}

.contact-page-form .form-label {
  font-family: var(--font-ethnocentric) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-page-form .form-control {
  border: none !important;
  border-radius: 0px !important;
  padding: 15px 20px !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  font-size: 14px !important;
  color: #040914 !important;
  font-weight: 500;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.contact-page-form .form-control:focus {
  background-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  outline: none;
}

.contact-page-list li {
  transition: transform 0.3s ease;
}

.contact-page-list li:hover {
  transform: translateX(6px);
}

.contact-page-list li:hover .footer-icon-badge {
  background-color: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  color: #ffffff !important;
  transform: scale(1.1) rotate(12deg);
}

.contact-page-list .footer-icon-badge {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.contact-details-card-premium {
  border-color: #e2e8f0 !important;
  border-radius: 8px !important;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: var(--accent-blue-line);
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.contact-social-btn:hover {
  background-color: var(--primary-red);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(253, 1, 0, 0.2);
}

.contact-page-form-wrapper .btn-red-slant {
  background-color: #040914 !important;
  color: #ffffff !important;
}

.contact-page-form-wrapper .btn-red-slant::before {
  background: #ffffff !important;
}

.contact-page-form-wrapper .btn-red-slant:hover {
  color: #040914 !important;
}

/* --------------------------------------------------------------------------
   GET A QUOTE MODAL (POPUP) STYLES
   -------------------------------------------------------------------------- */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 9, 20, 0.72);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.quote-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-container {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  position: relative;
  padding: 40px 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  color: #040914;
  max-height: 90vh;
  overflow-y: auto;
}

/* Scrollbar inside Modal Container */
.quote-modal-container::-webkit-scrollbar {
  width: 6px;
}

.quote-modal-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 3px;
}

.quote-modal-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  color: #040914;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.quote-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
}

.quote-modal-container .form-label {
  font-family: var(--font-ethnocentric) !important;
  color: #040914 !important;
  font-size: 10.5px !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  font-weight: 700 !important;
}

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

.input-icon-group .input-icon {
  position: absolute;
  left: 14px;
  top: 15px;
  transform: none;
  color: #64748b;
  font-size: 14px;
  z-index: 5;
  pointer-events: none;
  transition: color 0.3s ease;
}

.input-icon-group .textarea-icon {
  top: 15px;
  transform: none;
}

.input-icon-group:focus-within .input-icon {
  color: var(--primary-red);
}

.quote-modal-container .form-control {
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 6px !important;
  padding: 12px 16px 12px 42px !important;
  background-color: #f8fafc !important;
  font-size: 13.5px !important;
  color: #0f172a !important;
  font-weight: 500;
  clip-path: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

.quote-modal-container .form-control:focus {
  background-color: #ffffff !important;
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 4px rgba(253, 1, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  outline: none;
}

.quote-modal-container .btn-red-slant,
.quote-modal-container .btn-red-slant .btn-text {
  background-color: var(--primary-red) !important;
  color: #ffffff !important;
}

.quote-modal-container .btn-red-slant::before {
  background: #040914 !important;
}

.quote-modal-container .btn-red-slant:hover,
.quote-modal-container .btn-red-slant:hover .btn-text {
  background-color: #040914 !important;
  color: #ffffff !important;
}

.quote-modal-container .subtitle-with-line {
  color: var(--primary-red) !important;
}

.quote-modal-container .subtitle-with-line::before {
  background-color: var(--primary-red) !important;
}

/* --------------------------------------------------------------------------
   WHO WE ARE PREMIUM DETAILED STYLES
   -------------------------------------------------------------------------- */
.about-watermark-bg {
  position: absolute;
  top: 10%;
  right: -5%;
  font-size: clamp(120px, 15vw, 280px);
  color: rgba(4, 9, 20, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.first-letter-slanted {
  font-family: var(--font-ethnocentric);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  float: left;
  margin-right: 8px;
  color: var(--primary-red);
}

.about-value-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(253, 1, 0, 0.05);
  border: 1px solid rgba(253, 1, 0, 0.15);
  color: var(--primary-red);
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-value-box:hover .about-value-icon-badge {
  background-color: var(--primary-red);
  color: #ffffff;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 10px 20px rgba(253, 1, 0, 0.2);
}

.difference-card-premium .about-value-icon-badge {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--primary-red);
}

.difference-card-premium:hover .about-value-icon-badge {
  background-color: var(--primary-red);
  color: #ffffff;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 10px 20px rgba(253, 1, 0, 0.2);
}

/* --------------------------------------------------------------------------
   WHO WE ARE ENHANCED PREMIUM SECTIONS & ACCENTS
   -------------------------------------------------------------------------- */
.about-story-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-premium-img-wrap {
  position: relative;
  padding: 10px;
}

.about-premium-img-accent {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 70%;
  height: 70%;
  border-top: 3px solid var(--primary-red);
  border-left: 3px solid var(--primary-red);
  border-radius: 14px 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.about-experience-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: linear-gradient(135deg, #091530 0%, #040914 100%);
  border: 1px solid rgba(253, 1, 0, 0.35);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.about-exp-number {
  font-family: var(--font-ethnocentric);
  font-size: 32px;
  color: var(--primary-red);
  line-height: 1;
}

.about-exp-label {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-stats-section {
  padding: clamp(70px, 9vw, 110px) 0;
  background: linear-gradient(135deg, #040914 0%, #091530 50%, #040914 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stats-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(253, 1, 0, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.about-difference-section {
  padding: clamp(70px, 9vw, 120px) 0;
  background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   SINGLE SERVICE PAGE PREMIUM & STICKY SIDEBAR STYLES
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .single-service-sidebar-sticky {
    position: sticky;
    top: 110px;
    align-self: flex-start;
    z-index: 10;
  }
}

.single-service-featured-img {
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single-service-img-wrapper:hover .single-service-featured-img {
  transform: scale(1.03);
}

.service-img-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(4, 9, 20, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-ethnocentric);
  font-size: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(253, 1, 0, 0.3);
  letter-spacing: 1px;
}

.feature-icon-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.sidebar-service-link {
  background-color: #f8fafc;
  color: #1e293b !important;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidebar-service-link:hover {
  background-color: #fff5f5 !important;
  color: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(253, 1, 0, 0.12);
}

.sidebar-service-link:hover .sidebar-service-title,
.sidebar-service-link:hover .sidebar-service-icon,
.sidebar-service-link:hover .sidebar-arrow-icon {
  color: var(--primary-red) !important;
  opacity: 1 !important;
}

.sidebar-service-link.active-service-link {
  background: linear-gradient(135deg, #e30613 0%, #90040b 100%) !important;
  color: #ffffff !important;
  border-color: var(--primary-red) !important;
  box-shadow: 0 6px 16px rgba(253, 1, 0, 0.25);
}

.sidebar-service-link.active-service-link .sidebar-service-title,
.sidebar-service-link.active-service-link .sidebar-service-icon,
.sidebar-service-link.active-service-link .sidebar-arrow-icon {
  color: #ffffff !important;
  opacity: 1 !important;
}

.sidebar-service-title {
  font-family: var(--font-ethnocentric) !important;
  font-size: 10px !important;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.sidebar-service-icon {
  font-size: 14px;
  color: var(--primary-red);
  transition: transform 0.3s ease, color 0.3s ease;
  min-width: 18px;
  text-align: center;
}

.sidebar-service-link:hover .sidebar-service-icon {
  transform: scale(1.2) rotate(8deg);
}

.sidebar-arrow-icon {
  font-size: 11px;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Contact Form 7 Layout Correction & Integrations */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 p {
  margin: 0 !important;
  padding: 0 !important;
}

.wpcf7 br {
  display: none !important;
}

.wpcf7 form .row {
  margin-top: 0;
}

/* Flatpickr Red Theme Customizations */
.flatpickr-calendar {
  box-shadow: 0 20px 40px rgba(4, 9, 20, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: inherit !important;
  padding: 10px !important;
  background: #ffffff !important;
}

.flatpickr-months {
  background: #040914 !important;
  border-radius: 8px 8px 0 0 !important;
  padding: 8px 0 !important;
}

.flatpickr-months .flatpickr-month {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #ffffff !important;
  fill: #ffffff !important;
  padding: 8px !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--primary-red) !important;
}

.flatpickr-weekdays {
  background: #f8fafc !important;
  padding: 6px 0 !important;
}

span.flatpickr-weekday {
  color: #475569 !important;
  font-weight: 700 !important;
  font-size: 11px !important;
}

.flatpickr-day {
  border-radius: 6px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected.nextMonthDay {
  background: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(253, 1, 0, 0.35) !important;
}

.flatpickr-day.today {
  border-color: var(--primary-red) !important;
  font-weight: 700 !important;
}

.flatpickr-day.today:hover {
  background: var(--primary-red) !important;
  color: #ffffff !important;
  border-color: var(--primary-red) !important;
}

/* Time Picker Container Styling */
.flatpickr-time {
  max-height: 54px !important;
  border-top: 1px solid #e2e8f0 !important;
  padding: 6px 12px !important;
  background: #f8fafc !important;
  border-radius: 0 0 10px 10px !important;
}

.flatpickr-time input.flatpickr-hour,
.flatpickr-time input.flatpickr-minute {
  font-weight: 700 !important;
  color: #040914 !important;
  font-size: 16px !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
}

.flatpickr-time input.flatpickr-hour:focus,
.flatpickr-time input.flatpickr-minute:focus {
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 2px rgba(253, 1, 0, 0.2) !important;
}

.flatpickr-time .flatpickr-time-separator {
  color: #040914 !important;
  font-weight: 800 !important;
  font-size: 18px !important;
}

.flatpickr-time .flatpickr-am-pm {
  color: #ffffff !important;
  background: #040914 !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  transition: all 0.2s ease !important;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: var(--primary-red) !important;
}


/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}