/* ===== DESIGN SYSTEM - PREMIUM LIGHT / WHITE THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary Palette */
  --primary: #EF6C23;
  --primary-dark: #C6421A;
  --primary-light: #F7973F;
  --primary-glow: rgba(239, 108, 35, 0.08);

  /* Accent Palette */
  --accent: #FF6B2C;
  --accent-dark: #E05315;
  --accent-light: #FF8A56;
  --accent-glow: rgba(255, 107, 44, 0.12);

  /* Light Theme Backgrounds */
  --bg-dark: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-elevated: #F1F5F9;

  /* High Contrast Typography */
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-accent: #EF6C23;

  /* Subtle Borders */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-light: rgba(15, 23, 42, 0.12);
  --border-focus: rgba(239, 108, 35, 0.4);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #EF6C23 0%, #C6421A 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B2C 0%, #E05315 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  --gradient-hero-overlay: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.15) 100%);

  /* 3D Shadows & Depth */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.09);
  --shadow-glow: 0 15px 35px rgba(239, 108, 35, 0.18);
  --shadow-3d: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 25px rgba(239, 108, 35, 0.08);

  /* Spacing */
  --section-py: clamp(4.5rem, 8vw, 7rem);
  --container-max: 1280px;
  --container-px: clamp(1rem, 4vw, 2rem);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 500ms;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* Dark hero banners: keep headings light so they never hide on the dark background.
   (Inline-coloured accent spans keep their own colour.) */
section[style*="135deg, #0F172A"] h1,
section[style*="135deg, #0F172A"] h2,
section[style*="135deg, #0F172A"] h3,
section[style*="135deg,#0F172A"] h1,
section[style*="135deg,#0F172A"] h2 {
  color: #FFFFFF;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, #1E293B 0%, #0F172A 72%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Returning within the same session (internal navigation / refresh):
   skip the intro loader entirely so pages open instantly. */
html.li-return #preloader {
  display: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 1rem;
}

.preloader-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.preloader-logo {
  width: 60px;
  height: 56px;
  border-radius: 16px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(239, 108, 35, 0.35);
  animation: pl-bob 1.8s ease-in-out infinite;
}
.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.preloader-name span { color: #F7973F; }

.preloader-route {
  position: relative;
  width: min(300px, 72vw);
  height: 28px;
}
.preloader-track,
.preloader-progress {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.preloader-track {
  right: 0;
  background: repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.35) 0 6px, transparent 6px 12px);
}
.preloader-progress {
  width: 0;
  background: linear-gradient(90deg, #EF6C23, #F7973F);
  animation: pl-progress 2.1s ease-in-out infinite;
}
.preloader-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(247, 151, 63, 0.15);
  color: #F7973F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.preloader-dot.start { left: -4px; }
.preloader-dot.end { right: -4px; color: #EF6C23; background: rgba(239, 108, 35, 0.18); }

.preloader-vehicle {
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  font-size: 1.05rem;
  transform: translate(-50%, -50%);
  text-shadow: 0 4px 12px rgba(247, 151, 63, 0.6);
  animation: pl-fly 2.1s ease-in-out infinite;
}

.preloader-text {
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  animation: pl-fade 1.8s ease-in-out infinite;
}

@keyframes pl-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes pl-progress {
  0%   { width: 0; }
  70%  { width: 100%; }
  100% { width: 100%; opacity: 0; }
}
@keyframes pl-fly {
  0%   { left: 0;    opacity: 0; }
  12%  { opacity: 1; }
  70%  { left: 100%; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes pl-fade {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Keep a spinner class available (used nowhere critical now). */
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .preloader-logo, .preloader-progress, .preloader-vehicle, .preloader-text { animation: none; }
  .preloader-progress { width: 100%; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-glow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(239, 108, 35, 0.4);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-out);
}

/* Header Top Announcement Bar */
.header-top {
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.74rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.38rem 0;
  line-height: 1.25;
  width: 100%;
}

.header-top .container,
.header-top-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 1rem !important;
  max-width: 1400px !important;
  padding: 0 1.25rem !important;
}

.header-top-left {
  display: flex !important;
  align-items: center !important;
  gap: 1.1rem !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.header-top-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-size: 0.74rem !important;
  color: #E2E8F0 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.header-top-icon {
  color: #F7973F !important;
  font-size: 0.78rem !important;
  flex-shrink: 0 !important;
}

.header-top-link {
  color: #FFFFFF !important;
  font-weight: 500 !important;
  font-size: 0.74rem !important;
  text-decoration: none !important;
  transition: color var(--duration-fast) var(--ease-out) !important;
}

.header-top-link:hover {
  color: #F7973F !important;
  text-decoration: none !important;
}

.header-top-sep {
  color: rgba(255, 255, 255, 0.25) !important;
  margin: 0 0.25rem !important;
  user-select: none !important;
}

.header-top-location {
  color: #CBD5E1 !important;
  font-weight: 500 !important;
  font-size: 0.74rem !important;
  white-space: nowrap !important;
}

.header-top-location strong {
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

.header-top-dot {
  color: #F7973F !important;
  margin: 0 0.25rem !important;
  font-weight: bold !important;
}

.header-top-right {
  display: flex !important;
  align-items: center !important;
  gap: 1.1rem !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.header-top-badge {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  color: #F7973F !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.header-top-badge i {
  color: #F59E0B !important;
  font-size: 0.72rem !important;
}

.header-top-lang {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  display: inline-flex !important;
  gap: 0.45rem !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.header-top-lang .lang-item {
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out);
}

.header-top-lang .lang-item.active {
  color: #F7973F !important;
}

.header-top-lang .lang-item:hover:not(.active) {
  color: #CBD5E1 !important;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Main Nav */
.header-main {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled .header-top {
  display: none;
}

.header.scrolled .header-main {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: var(--shadow-glow);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-spring);
}

.logo:hover .logo-icon {
  transform: rotateY(180deg);
}

/* Actual LSKP logo image in a clean white tile (works on light & dark) */
.logo-img {
  width: 46px;
  height: 42px;
  border-radius: 10px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s var(--ease-spring);
}
.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 1.1rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary);
}

.nav-link .chevron {
  font-size: 0.7rem;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  max-height: 480px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transform-origin: top center;
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), visibility var(--duration-fast);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

/* Invisible bridge so moving mouse from nav link down to dropdown never breaks hover */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.dropdown-link:hover {
  background: var(--primary-glow);
  color: var(--primary);
  padding-left: 1.25rem;
}

.dropdown-link i {
  font-size: 1rem;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.nav-cta {
  margin-left: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(239, 108, 35, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(239, 108, 35, 0.38);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.25);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 107, 44, 0.38);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--bg-surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: calc(var(--header-h, 130px) + 1rem);
  padding-bottom: 2rem;
}

/* ===== FIXED-HEADER CLEARANCE =====
   The header is position:fixed and its height changes with viewport,
   so page content is offset by the live --header-h variable (set in JS)
   to guarantee nothing ever hides behind the header on any device. */
:root { --header-h: 130px; }

html { scroll-padding-top: var(--header-h); }

/* Dark page-hero banners on interior pages */
section[style*="135deg, #0F172A"] {
  padding-top: calc(var(--header-h) + 1.75rem) !important;
}

/* On tablets keep the HQ / contact line visible, but trim the right-side
   extras and tighten spacing so the announcement bar stays tidy.
   (Header clearance is handled by --header-h, so a slightly taller header
   never hides page content.) */
.mobile-wa-header-link {
  display: none !important;
}

@media (max-width: 991px) {
  .mobile-wa-header-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
  }
}

@media (max-width: 1200px) {
  .header-top {
    font-size: 0.72rem;
  }
  .header-top-item,
  .header-top-link,
  .header-top-location {
    font-size: 0.72rem !important;
  }
  .header-top .container,
  .header-top-container {
    gap: 0.75rem !important;
    padding: 0 1rem !important;
  }
  .header-top-left {
    gap: 0.85rem !important;
  }
  .header-top-right {
    gap: 0.85rem !important;
  }
  .header-top-badge {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 1040px) {
  .header-top-location .header-top-subtext {
    display: none !important;
  }
  .header-top .container,
  .header-top-container {
    padding: 0 0.75rem !important;
  }
}

@media (max-width: 860px) {
  .header-top-lang {
    display: none !important;
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 108, 35, 0.1) 0%, transparent 70%);
  top: 20%;
  right: -10%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 900px;
}

.hero-3d-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.1), 0 0 35px rgba(239, 108, 35, 0.08);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.4s var(--ease-out);
}

.hero-3d-card:hover {
  box-shadow: 0 40px 90px -15px rgba(15, 23, 42, 0.14), 0 0 45px rgba(239, 108, 35, 0.12);
}

.floating-3d-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  z-index: 5;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  pointer-events: none;
  animation: floatBadge 5s ease-in-out infinite alternate;
}

.floating-3d-badge i {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(239, 108, 35, 0.3);
}

.badge-1 {
  top: 10%;
  right: -2.5rem;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 15%;
  right: -3rem;
  animation-delay: 2.5s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(3deg); }
}

@media (max-width: 1024px) {
  .floating-3d-badge {
    display: none;
  }
}

.hero-badge {
  display: none !important;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 800px;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero-stat:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.hero-stat h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
}

.hero-stat p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* /* Hero slider nav - Floating side controls */
.hero-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}

.hero-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 1.15rem;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav-btn:hover {
  background: #EF6C23;
  border-color: #F7973F;
  color: #FFFFFF;
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(239, 108, 35, 0.5);
}

.hero-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.hero-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  background: #FFFFFF;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: none !important;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== 3D CARD GLARE & TILT STYLES ===== */
.card-3d-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(1.03) contrast(1.03);
  transition: transform 0.6s var(--ease-out);
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.05);
}

.about-image-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(239, 108, 35, 0.35);
  text-align: center;
  min-width: 170px;
  transform: translateZ(40px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-image-float h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

.about-image-float p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

.about-content {
  padding-left: 1rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-fast) var(--ease-out);
}

.about-feature:hover {
  transform: translateX(6px);
  border-color: var(--border-focus);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-3d);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.02);
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.25), transparent);
}

.service-card-icon {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 10px 25px rgba(239, 108, 35, 0.3);
  z-index: 2;
  transition: transform var(--duration-fast) var(--ease-spring);
  transform: translateZ(40px);
}

.service-card:hover .service-card-icon {
  transform: translateZ(50px) scale(1.1) rotate(-5deg);
}

.service-card-body {
  padding: 2.5rem 1.5rem 1.75rem;
  transform-style: preserve-3d;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transform: translateZ(25px);
}

.service-card-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  transform: translateZ(15px);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--duration-fast) var(--ease-out);
  transform: translateZ(20px);
}

.service-card-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

/* ===== STATS SECTION ===== */
.stats-section {
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
  padding: 4rem 0;
  box-shadow: 0 10px 40px rgba(239, 108, 35, 0.2);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  transform-style: preserve-3d;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.03);
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.why-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-3d);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all var(--duration-fast) var(--ease-spring);
  transform: translateZ(30px);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-primary);
  color: white;
  transform: translateZ(40px) scale(1.08);
  box-shadow: 0 8px 20px rgba(239, 108, 35, 0.3);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transform: translateZ(20px);
}

.why-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  transform: translateZ(10px);
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 108, 35, 0.1), var(--primary), rgba(239, 108, 35, 0.1));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  transform-style: preserve-3d;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
  border-color: var(--border-focus);
}

.process-step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-sm);
  transform: translateZ(30px);
}

.process-step:hover .process-step-number {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
  transform: translateZ(40px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transform: translateZ(20px);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transform: translateZ(10px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper {
  position: relative;
  overflow: visible;
  padding: 0.5rem 0;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
  transform: none !important;
}

@media (max-width: 992px) {
  .testimonials-track {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}

.testimonial-card {
  min-width: 0;
  width: 100%;
  padding: 0;
}

.testimonial-card-inner {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  max-width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonial-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.2rem;
  color: rgba(239, 108, 35, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  color: #F59E0B;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #F1F5F9;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(239, 108, 35, 0.25);
}

.testimonial-author h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.testimonial-author p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: none !important;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.testimonial-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== PARTNERS ===== */
.partners-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: scroll-x 30s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
  padding: 0.85rem 1.75rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.partner-item:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partners-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* ===== QUOTE / CTA SECTION ===== */
.quote-section {
  background: #FFFFFF;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.quote-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.quote-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quote-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-fast) var(--ease-out);
}

.quote-contact-item:hover {
  background: #FFFFFF;
  border-color: var(--border-focus);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.quote-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.quote-contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.quote-contact-item a,
.quote-contact-item p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.quote-contact-item a:hover {
  color: var(--primary);
}

/* Form */
.quote-form {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.quote-form h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transform: translateZ(25px);
}

.quote-form > p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-bottom: 2rem;
  transform: translateZ(15px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  transform-style: preserve-3d;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateZ(15px);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(239, 108, 35, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: #FFFFFF;
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 0.5rem;
  transform: translateZ(25px);
}

/* ===== FOOTER ===== */
.footer {
  background: #0F172A;
  color: #F8FAFC;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  padding: 4.5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
}

.footer-brand .logo {
  color: white;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.925rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #E2E8F0;
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  color: #94A3B8;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-link:hover {
  color: #F7973F;
  padding-left: 0.5rem;
}

.footer-link i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.925rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: #F7973F;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: #64748B;
  transition: color var(--duration-fast);
}

.footer-bottom-links a:hover {
  color: #F7973F;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible,
body.no-observer .reveal,
html:not(.js) .reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

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

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1050; /* above the fixed header (z-index:1000) */
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 1060; /* above the overlay (1050) and header (1000) */
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.25rem 2rem;
  box-shadow: -20px 0 60px rgba(15, 23, 42, 0.18);
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -1.25rem -1.25rem 1.25rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: -1.25rem;
  background: #FFFFFF;
  z-index: 2;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all var(--duration-fast) var(--ease-out);
}

.mobile-menu-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav-link {
  position: relative;
  padding: 0.85rem 1rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.mobile-nav-link:hover {
  background: var(--primary-glow);
  color: var(--primary);
  transform: translateX(3px);
}

.mobile-nav-link.active {
  background: var(--primary-glow);
  color: var(--primary);
}

.mobile-nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  border-radius: 3px;
  background: var(--primary);
}

.mobile-nav-sub {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.mobile-nav-sub a {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.mobile-nav-sub a:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

.mobile-nav-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN SYSTEM ===== */
@media (max-width: 1200px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .hero .container > div {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .hero .container > div > div {
    grid-column: span 12 !important;
  }
  .hero-3d-card {
    max-width: 100% !important;
  }

  #showcaseContainer {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  #serviceNavList, #serviceShowcaseTarget {
    grid-column: span 12 !important;
  }
  #serviceNavList {
    max-height: 360px !important;
  }

  #faqs > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  #faqs > div > div {
    grid-column: span 12 !important;
  }

  .footer .container > div:first-child {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
  .footer .container > div:first-child > div {
    grid-column: span 1 !important;
  }

  .footer .container > div:nth-child(2) {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .nav-menu,
  .nav-cta {
    display: none !important;
  }

  .hero {
    min-height: auto !important;
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-description {
    font-size: 1rem !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .hero-stat {
    padding: 0.85rem 1rem !important;
  }

  .hero-stat h3 {
    font-size: 1.4rem !important;
  }

  .hero-stat p {
    font-size: 0.75rem !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-content {
    padding-left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer .container > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer .container > div:first-child > div {
    grid-column: span 1 !important;
  }

  .footer .container > div:nth-child(2) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  .footer .container > div:last-child {
    flex-direction: column !important;
    text-align: center;
    gap: 1rem !important;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 1.5rem;
  }

  .footer .container > div:nth-child(2) {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .spec-chip {
    padding: 0.5rem !important;
  }

  .service-showcase-body {
    padding: 1.25rem !important;
  }

  .testimonials-track {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .testimonial-card-inner {
    padding: 1.25rem 1rem !important;
  }

  .testimonial-quote {
    font-size: 2.5rem !important;
    top: 0.75rem !important;
    right: 0.85rem !important;
  }
}

@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
  }
}

/* ===== SCROLL-REVEAL ANIMATION (progressive enhancement) ===== */
/* JS adds .js-fade-up to sections; content is fully visible if JS never runs. */
@media (prefers-reduced-motion: no-preference) {
  .js-fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .js-fade-up.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ===== ACCESSIBILITY & SCROLLBAR ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: rgba(239, 108, 35, 0.2);
  color: var(--primary-dark);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* ===== COMPREHENSIVE LOGISTICS & REGULATORY SOLUTIONS SECTION ===== */
.gold-gradient-text {
  background: linear-gradient(135deg, #EF6C23 0%, #C6421A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-filter-btn:hover {
  border-color: #CBD5E1;
  color: #0F172A;
  background: #FFFFFF;
}

.service-filter-btn.active {
  background: #0F172A;
  border-color: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.service-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: left;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #334155;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  width: 100%;
}

.service-nav-item:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.service-nav-item.active {
  background: #0F172A;
  border-color: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
  transform: translateX(6px);
}

.service-nav-item .nav-icon {
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #EF6C23;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.service-nav-item.active .nav-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #F7973F;
}

.service-nav-item .nav-tag {
  font-size: 0.65rem;
  font-family: monospace;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: #E2E8F0;
  color: #475569;
}

.service-nav-item.active .nav-tag {
  background: rgba(239, 108, 35, 0.25);
  color: #F7973F;
}

.service-showcase-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-showcase-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-showcase-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
}

.service-showcase-media-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
}

.service-showcase-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.spec-chip {
  padding: 0.65rem 0.85rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 0.7rem;
}

.matrix-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.matrix-card:hover {
  background: #FFFFFF;
  border-color: #EF6C23;
  box-shadow: var(--shadow-3d);
  transform: translateY(-5px);
}

/* ===== INDUSTRIES WE SERVE ENHANCED ANIMATIONS ===== */
.industry-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease, 
              border-color 0.35s ease, 
              background-color 0.35s ease !important;
  cursor: pointer;
  z-index: 1;
}

/* Glowing Top Accent Line on Hover */
.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #EF6C23 0%, #F7973F 50%, #C6421A 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  background: #FFFFFF !important;
  border-color: rgba(239, 108, 35, 0.4) !important;
  box-shadow: 0 22px 45px rgba(239, 108, 35, 0.12), 0 8px 20px rgba(15, 23, 42, 0.05) !important;
}

/* Icon Box Animation */
.industry-card .industry-icon-box {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background 0.4s ease, 
              color 0.4s ease, 
              box-shadow 0.4s ease !important;
}

.industry-card:hover .industry-icon-box {
  transform: scale(1.15) rotate(6deg) !important;
  background: linear-gradient(135deg, #EF6C23 0%, #C6421A 100%) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 8px 22px rgba(239, 108, 35, 0.35) !important;
}

/* Arrow & Text Micro-Animations */
.industry-card .fa-arrow-right {
  transition: transform 0.3s ease, color 0.3s ease;
}

.industry-card:hover .fa-arrow-right {
  transform: translateX(6px);
  color: #EF6C23;
}

/* ===== COMPANY TIMELINE STYLES ===== */
.timeline-wrapper {
  position: relative;
  padding: 2rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-left: 2px dashed #CBD5E1;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.timeline-item.timeline-right {
  justify-content: flex-start;
}

.timeline-item.timeline-left {
  justify-content: flex-end;
}

/* Central Node Circle */
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #EF6C23;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 0 4px rgba(239, 108, 35, 0.15);
}

/* Horizontal Dashed Connector */
.timeline-connector {
  height: 2px;
  border-top: 2px dashed #CBD5E1;
  z-index: 2;
}

.timeline-right .timeline-connector {
  width: 40px;
  margin-left: calc(50% + 8px);
}

.timeline-left .timeline-connector {
  width: 40px;
  margin-right: calc(50% + 8px);
}

/* Year Badge */
.timeline-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EF6C23 0%, #C6421A 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(239, 108, 35, 0.35);
  flex-shrink: 0;
  z-index: 3;
}

/* Content Box */
.timeline-content {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  width: 380px;
  max-width: 90%;
  position: relative;
  z-index: 3;
}

.timeline-right .timeline-content {
  margin-left: 1rem;
}

.timeline-left .timeline-content {
  margin-right: 1rem;
  text-align: right;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: #EF6C23;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 768px) {
  .timeline-line {
    left: 28px;
  }
  .timeline-dot {
    left: 28px;
  }
  .timeline-item {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding-left: 0;
  }
  .timeline-left .timeline-connector,
  .timeline-right .timeline-connector {
    width: 20px;
    margin: 0;
  }
  .timeline-left .timeline-badge,
  .timeline-right .timeline-badge {
    margin-left: 45px;
  }
  .timeline-left .timeline-content,
  .timeline-right .timeline-content {
    margin-left: 1rem !important;
    margin-right: 0 !important;
    text-align: left !important;
    width: calc(100% - 120px);
  }
}

/* ============================================================
   TRENDING SERVICE ANIMATIONS & MODERN INTERACTION STYLES
   ============================================================ */

/* 1. Shimmer & Glow Keyframes */
@keyframes serviceShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes floatVehicle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 108, 35, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(239, 108, 35, 0); }
}

@keyframes badgeShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* 2. Interactive Card Lift & Glassmorphism */
.service-card-animated {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #EF6C23 0%, #F7973F 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-animated:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(239, 108, 35, 0.3);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 0 25px rgba(239, 108, 35, 0.08);
}

.service-card-animated:hover::before {
  opacity: 1;
}

/* 3. Icon Hover & Floating Animations */
.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(239, 108, 35, 0.09);
  color: #EF6C23;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.35s ease;
}

.service-card-animated:hover .service-icon-box {
  background: #EF6C23;
  color: #FFFFFF;
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 10px 20px rgba(239, 108, 35, 0.3);
}

.float-vehicle {
  animation: floatVehicle 4s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

/* 4. Process Flow Step Animations */
.process-step-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  padding: 1.75rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: #EF6C23;
  box-shadow: 0 14px 35px rgba(239, 108, 35, 0.1);
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #F7973F;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.process-step-card:hover .process-step-number {
  background: #EF6C23;
  color: #FFFFFF;
  transform: scale(1.1);
}

/* 5. FAQ Interactive Accordion Hover */
.faq-item-modern {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 1.5rem 1.75rem;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: rgba(239, 108, 35, 0.4);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

/* 6. Hero Badge Shimmer */
.shimmer-badge {
  position: relative;
  overflow: hidden;
}

.shimmer-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: badgeShine 3s infinite;
}






/* ===== HOME FAQ TOPIC FILTER ===== */
.faq-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-filter-btn {
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #475569;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-filter-btn:hover {
  border-color: #B45309;
  color: #B45309;
}

.faq-filter-btn.active {
  border-color: #0F172A;
  background: #0F172A;
  color: #FFFFFF;
}

.faq-filter-btn:focus-visible {
  outline: 2px solid #B45309;
  outline-offset: 2px;
}

.faq-item[hidden] {
  display: none !important;
}
