/* ============================================
   SRCC Static Site — Master Stylesheet
   Converted from Tailwind CSS + globals.css
   ============================================ */

/* ── Google Fonts ────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ── Reset / Base ────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #171717;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* ── Utility Classes (only used ones) ─────── */
.hidden {
  display: none;
}

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

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Backgrounds & Gradients */
.bg-gradient-hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.gradient-text-brand {
  background: linear-gradient(to right, #F7941E, #5A4A42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-orange {
  background: linear-gradient(to right, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes truckDrive {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}

#learnMoreBtn:hover #learnMoreTruck {
  animation: truckDrive 0.5s ease-in-out infinite;
}

#learnMoreBtn:hover {
  background: #5A4A42 !important;
  transform: scale(1.05);
  box-shadow: 0 15px 20px rgba(90, 74, 66, 0.2) !important;
}

.port-tooltip {
  background: white !important;
  border: none !important;
  border-radius: 0.5rem !important;
  padding: 0.25rem 0.75rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #5a4a42 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
}

.port-tooltip::before {
  border-top-color: white !important;
}

#automoveMap {
  opacity: 0;
  transition: opacity 0.3s;
}

.leaflet-container {
  opacity: 1;
}

/* ── Animations ──────────────────────────── */

/* Truck animations */
/* Trucks moving Left-to-Right (already face right naturally) */
/* Trucks moving Left-to-Right — flip to face right */
@keyframes moveRTL {
  0% {
    transform: translateX(110vw);
  }

  100% {
    transform: translateX(-150px);
  }
}

@keyframes moveLTR {
  0% {
    transform: translateX(-150px);
  }

  100% {
    transform: translateX(110vw);
  }
}

.animate-truck-rtl {
  animation: moveRTL 10s linear infinite;
}

.animate-truck-ltr {
  animation: moveLTR 12s linear infinite;
}

.animate-truck-ltr {
  animation: moveLTR 12s linear infinite;
}

.animate-truck-rtl {
  animation: moveRTL 10s linear infinite;
}

/* Pulse slow */
@keyframes pulse-slow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.animate-pulse-slow {
  animation: pulse-slow 2.5s ease-in-out infinite;
}

/* Fade in */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

/* Fade in up (for scroll-triggered) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.anim-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

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

.anim-fade-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s ease, transform 1s ease;
}

.anim-fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

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

.anim-fade-in-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s ease, transform 1s ease;
}

.anim-fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.anim-scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Bounce */
@keyframes bounce {

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

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

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Ping / Ripple */
@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Pulse */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Spin */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Float */
@keyframes float {

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

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Floating (for vision/mission cards) */
@keyframes floating {

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

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

.animate-floating {
  animation: floating 3s ease-in-out infinite;
}

/* Industry scroll */
@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }

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

.animate-scroll-ticker {
  animation: scroll-ticker 25s linear infinite;
}

.animate-scroll-ticker:hover {
  animation-play-state: paused;
}

/* Slide up (modal) */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

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

.animate-slideUp {
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Fade in (modal bg) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.2s ease-out;
}

/* Pulse glow (AutoMove CTA) */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.7), 0 0 20px rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 1), 0 0 40px rgba(16, 185, 129, 0.7);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
  pointer-events: none;
}

/* Scroll indicator */
@keyframes scroll-indicator {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(10px);
  }
}

.animate-scroll-indicator {
  animation: scroll-indicator 1.5s ease-in-out infinite alternate;
}



/* ── Flip Card ───────────────────────────── */
.flip-card-container {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip-card-container:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  overflow: hidden;
}

.flip-card-front {
  transform: rotateY(0deg);
}

.flip-card-back {
  transform: rotateY(180deg);
  background: white;
}


/* ── Swiper Custom Styles ────────────────── */
.fleet-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #D1D5DB;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 6px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
}

.fleet-pagination .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-pagination .swiper-pagination-bullet:hover {
  background: #F7941E;
  transform: scale(1.2);
}

.fleet-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #F7941E 0%, #E8850D 100%);
  opacity: 1;
  width: 40px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(247, 148, 30, 0.4);
}

.fleet-pagination .swiper-pagination-bullet-active::before {
  border-color: rgba(247, 148, 30, 0.3);
}

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

/* ── Header ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(12px);
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  z-index: 50;
  transition: transform 0.3s;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s;
  color: #374151;
}

.nav-link:hover,
.nav-link.active {
  color: #F7941E;
  background: rgba(255, 247, 237, 0.7);
}

.nav-link.active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-get-quote {
  display: none;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(to right, #F7941E, #E8850D);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
}

.btn-get-quote:hover {
  background: #5A4A42;
  box-shadow: 0 10px 15px rgba(90, 74, 66, 0.3);
  transform: scale(1.05);
}

.hamburger {
  display: block;
  padding: 0.625rem;
  color: #374151;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.hamburger:hover {
  color: #F7941E;
  background: rgba(255, 247, 237, 1);
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: block;
  background: white;
  border-top: 1px solid #f3f4f6;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.mobile-menu.open {
  max-height: 80vh;
  opacity: 1;
}

.mobile-nav {
  padding: 1rem 1.25rem;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  color: #374151;
  font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #F7941E;
  background: rgba(255, 247, 237, 1);
}

.mobile-quote-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(to right, #F7941E, #E8850D);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
}

.mobile-quote-btn:hover {
  background: #5A4A42;
  box-shadow: 0 4px 6px rgba(90, 74, 66, 0.3);
}

/* ── Footer ──────────────────────────────── */
.site-footer {
  position: relative;
  color: #5A4A42;
  overflow: hidden;
  background: white;
  background-image: url('../images/map-pattern.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-cta {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #5A4A42;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom-factory {
  width: 100%;
  position: relative;
  margin-top: -1rem;
}

.footer-bottom-factory img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 300px;
  min-height: 150px;
}

.footer-truck-lane {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  overflow: hidden;
}

.footer-copyright {
  background: #1e3a5f;
  color: #e5e7eb;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* ── WhatsApp Button ─────────────────────── */
.whatsapp-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-tooltip {
  margin-bottom: 0.75rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(to right, #111827, #1f2937);
  color: white;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.3s;
  pointer-events: none;
}

.whatsapp-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-tooltip-arrow {
  position: absolute;
  bottom: -6px;
  right: 2rem;
  width: 12px;
  height: 12px;
  background: #111827;
  transform: rotate(45deg);
}

.whatsapp-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #4ade80, #16a34a);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  box-shadow: 0 25px 50px rgba(74, 222, 128, 0.4);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
  position: relative;
  z-index: 10;
}

.whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover .whatsapp-ring {
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Custom Cursor ───────────────────────── */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #dc2626;
  pointer-events: none;
  z-index: 9999;
  background: transparent;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.custom-cursor.hovered {
  transform: scale(1.5);
  opacity: 0.7;
}

/* ── Modal (Quote) ───────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  margin: 1rem;
  color-scheme: light;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #F7941E;
}

.form-input {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #F9FAFB;
  color: #1f2937;
  padding: 0.75rem;
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder {
  color: #6b7280;
}

.form-input:focus {
  border-color: #F7941E;
  box-shadow: 0 0 0 2px rgba(247, 148, 30, 0.3);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input.error:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: #F7941E;
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #5A4A42;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 20px rgba(90, 74, 66, 0.2);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── Case Studies Modal ──────────────────── */
.cs-modal-header {
  background: linear-gradient(to right, #0f172a, #1e293b);
  padding: 1.25rem 1.5rem;
  position: relative;
}

.cs-modal-header h2 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
}

.cs-modal-header p {
  color: #cbd5e1;
  font-size: 0.75rem;
}

.cs-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}

.cs-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Section Specific ────────────────────── */

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 20;
  padding: 1rem;
}

/* Truck Animation in hero */
.truck-animation {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  z-index: 20;
  color: #F7941E;
}

/* Hero CTA Buttons */
.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 600px;
}

.hero-cta-btn {
  width: 100%;
  max-width: 380px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  font-weight: 600;
  color: white;
  background: #F7941E;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta-btn:hover {
  background: #5A4A42 !important;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(90, 74, 66, 0.3);
}

/* Global: ALL orange buttons hover to #5A4A42 */
button[style*="background:#F7941E"]:hover,
button[style*="background: #F7941E"]:hover {
  background: #5A4A42 !important;
}

@media (min-width: 640px) {
  .hero-btns {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .hero-cta-btn {
    width: auto;
    max-width: none;
    padding: 0.75rem 2rem;
    font-size: 0.900rem;
  }

  .truck-animation {
    bottom: 4rem;
  }
}

@media (min-width: 768px) {
  .truck-animation {
    bottom: 5rem;
  }
}

/* Fleet section */
.fleet-section {
  position: relative;
  width: 100%;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #f9fafb, white);
}

.fleet-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
}

.fleet-nav-btn .btn-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #F7941E, #E8850D);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.fleet-nav-btn .btn-circle:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.fleet-nav-btn .btn-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  position: relative;
  z-index: 10;
}

/* Fleet card */
.fleet-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  cursor: pointer;
  height: 100%;
}

.fleet-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fleet-card:hover .fleet-card-border {
  opacity: 1;
}

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

.fleet-card-img-wrapper {
  width: 100%;
  height: 15rem;
  position: relative;
  overflow: hidden;
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s;
}

.fleet-card-body {
  padding: 1.5rem;
  background: white;
}

.fleet-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #5A4A42;
  margin-bottom: 0.5rem;
}

.fleet-card-fuel {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #fff7ed;
  color: #F7941E;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.fleet-card-desc {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.625;
}

.fleet-card-border {
  position: absolute;
  inset: 0;
  border: 2px solid #F7941E;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

/* Industries section */
.industries-section {
  position: relative;
  padding: 4rem 0;
  background: #10192D;
  overflow: hidden;
}

.industries-glow-1 {
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 400px;
  height: 400px;
  background: rgba(247, 148, 30, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.industries-glow-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(90, 74, 66, 0.2);
  border-radius: 50%;
  filter: blur(32px);
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  cursor: pointer;
}

.industry-card-inner {
  position: relative;
  background: rgba(26, 34, 54, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
  width: 100%;
}

.industry-card:hover .industry-card-inner {
  border-color: rgba(247, 148, 30, 0.6);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(247, 148, 30, 0.3);
}

.industry-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(90, 74, 66, 0.4), rgba(247, 148, 30, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(to bottom right, rgba(247, 148, 30, 0.4), rgba(90, 74, 66, 0.4));
}

.industry-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  text-align: center;
  transition: color 0.3s;
  letter-spacing: 0.025em;
}

.industry-card:hover .industry-name {
  color: #F7941E;
}

.industry-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(to right, #F7941E, #5A4A42);
  transition: width 0.5s;
  border-radius: 0 0 0.75rem 0.75rem;
}

.industry-card:hover .industry-accent-bar {
  width: 100%;
}

.industries-fade-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 10;
  background: linear-gradient(to right, #10192D, transparent);
  pointer-events: none;
}

.industries-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 10;
  background: linear-gradient(to left, #10192D, transparent);
  pointer-events: none;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem 2.5rem;
  border-left: 4px solid #F7941E;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: #F7941E;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A4A42;
  font-size: 1.5rem;
  z-index: 20;
  transition: all 0.3s;
}

.testimonial-nav:hover {
  color: #F7941E;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

/* Contact page hero */
.contact-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-hero iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* ── Responsive ──────────────────────────── */
@media (min-width: 640px) {
  .header-logo img {
    height: 3rem;
  }

  .header-inner {
    padding: 0.75rem 1.5rem;
  }

  .fleet-card-img-wrapper {
    height: 15rem;
  }

  .fleet-card-img {
    object-fit: cover;
  }

  .footer-columns {
    flex-direction: row;
    gap: 2.5rem;
  }

  .footer-inner {
    padding: 3rem 1.5rem;
  }

  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-truck-lane {
    height: 5rem;
  }

  .testimonial-nav-prev {
    left: -2.5rem;
  }

  .testimonial-nav-next {
    right: -2.5rem;
  }

  .contact-hero {
    height: 450px;
  }
}

@media (min-width: 768px) {
  .fleet-nav-btn {
    display: block;
  }

  .fleet-card-img-wrapper {
    height: 18rem;
  }

  .header-logo img {
    height: 3.5rem;
  }

  .header-inner {
    padding: 1rem 2rem;
  }

  .footer-bottom-factory {
    margin-top: -2rem;
  }

  .footer-truck-lane {
    height: 6rem;
  }

  .contact-hero {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .btn-get-quote {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* ── Print ───────────────────────────────── */
@media print {

  .site-header,
  .site-footer,
  .whatsapp-container,
  .custom-cursor {
    display: none;
  }
}