/* ============================================================
   IRON HAUL — COMPLETE CSS
   Truck Dispatch Services Website
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS (Variables)
   ============================================================ */
:root {
  /* ===== Colors ===== */
  --ink: #0B1A2E;
  /* Primary dark text */
  --asphalt: #1A2A3A;
  /* Dark background */
  --steel: #2C3E50;
  /* Medium dark */
  --steel-2: #5A7A8A;
  /* Medium text */
  --steel-3: #8AA8B8;
  /* Light text */
  --paper: #F7F8FA;
  /* Light gray background */
  --paper-dim: #E8EDF2;
  /* Dimmer gray */
  --chrome: #B0C4D8;
  /* Chrome accent */
  --accent: #1E6F9F;
  /* Primary brand color (Blue) */
  --accent-dk: #155A82;
  /* Darker brand color */
  --accent-light: #E6F0F8;
  /* Light brand color */
  --line: rgba(255, 255, 255, 0.10);
  /* Light line */
  --line-dark: rgba(0, 0, 0, 0.08);
  /* Dark line */
  --hero-bg: #E8ECF0;
  /* Hero background */
  --white: #FFFFFF;
  /* White */

  /* ===== Fonts ===== */
  --f-display: 'Oswald', sans-serif;
  /* Display font */
  --f-body: 'Inter', sans-serif;
  /* Body font */
  --f-mono: 'JetBrains Mono', monospace;
  /* Monospace font */

  /* ===== Spacing & Effects ===== */
  --radius: 4px;
  /* Border radius */
  --shadow-card: 0 4px 20px rgba(11, 26, 46, 0.08);
  /* Card shadow */
  --shadow-card-hover: 0 8px 40px rgba(11, 26, 46, 0.15);
  /* Card hover shadow */
}

/* ============================================================
   2. GLOBAL RESET & BASE STYLES
   ============================================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

::selection {
  background: var(--accent);
  color: #fff;
}

a {
  text-decoration: none;
}

.text-accent {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   3. LED LOAD TICKER
   ============================================================ */
.load-ticker {
  background: var(--ink);
  color: var(--steel-3);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  height: 34px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 38s linear infinite;
  padding-left: 100%;
}

.load-ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.ticker-item {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .03em;
  padding: 0 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.ticker-item i {
  color: var(--accent);
}

.ticker-item b {
  color: #fff;
  font-weight: 600;
  margin-left: .35rem;
}

.ticker-item em {
  color: var(--accent);
  font-style: normal;
  margin-left: .35rem;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
#mainNav {
  top: 34px;
  background: #000000 !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  transition: all .3s ease;
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  z-index: 1040;
}

#mainNav.scrolled {
  background: #000000 !important;
  border-bottom-color: var(--accent);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.6);
  padding: 0.3rem 2rem;
}

#mainNav .container-fluid {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Brand / Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 1.5rem 0.2rem 0.5rem;
  text-decoration: none;
  position: relative;
  margin-right: 0;
}

.brand-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  filter: drop-shadow(0 0 15px rgba(30, 111, 159, 0.3));
  animation: truckPulse 3s ease-in-out infinite;
}

@keyframes truckPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.brand-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  padding-right: 0.5rem;
}

.brand-text .text-accent {
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 40px rgba(30, 111, 159, 0.25);
}

.brand-tagline {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(30, 111, 159, 0.12);
  border: 1px solid rgba(30, 111, 159, 0.2);
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 0.3rem;
  position: relative;
  overflow: hidden;
}

.brand-tagline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 111, 159, 0.15), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Separator line after brand */
.navbar-brand::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 35px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Nav Links */
.nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem !important;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 0.1rem;
}

/* Underline animation */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 60%;
}

/* Glow effect on hover */
.nav-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(30, 111, 159, 0.12), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  pointer-events: none;
}

.nav-link:hover::after {
  width: 120px;
  height: 120px;
}

.nav-link:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.nav-link.active {
  color: #ffffff !important;
}

/* CTA Button in Nav */
.btn-accent {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #fff !important;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.btn-accent i {
  font-size: 1.1rem;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-accent:hover::before {
  left: 100%;
}

.btn-accent:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(30, 111, 159, 0.4);
}

.btn-accent:active {
  transform: translateY(0px);
}

/* Mobile Toggler */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(30, 111, 159, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.6em;
  height: 1.6em;
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: #E8ECF0;
  padding: 10rem 0 6rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated Grid Lines */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(11, 26, 46, 0.03) 78px 80px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(11, 26, 46, 0.02) 78px 80px);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 70%);
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(78px, 78px);
  }
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(30, 111, 159, 0.12);
  border-radius: 50%;
  animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  top: 50%;
  right: 5%;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(5) {
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(6) {
  top: 70%;
  left: 8%;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  top: 30%;
  left: 30%;
  animation-delay: 2.5s;
  width: 7px;
  height: 7px;
  opacity: 0.2;
}

.particle:nth-child(8) {
  bottom: 40%;
  right: 15%;
  animation-delay: 4.5s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translateY(20px) scale(0.8);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-10px) scale(1.1);
    opacity: 0.5;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(30, 111, 159, 0.08);
  border: 1px solid rgba(30, 111, 159, 0.12);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #2E9E4F;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.badge-text {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--steel-2);
}

/* Hero Title */
.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-family: var(--f-display);
  text-transform: uppercase;
}

.hero-title-accent {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(30, 111, 159, 0.1);
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.hero-sub {
  color: var(--steel-2);
  font-size: 1.1rem;
  max-width: 34rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  font-weight: 400;
}

/* Hero Actions / Buttons */
.hero-actions {
  margin-top: 2rem;
}

.btn-hero-primary {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(30, 111, 159, 0.3);
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid var(--steel-3);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(30, 111, 159, 0.1);
  background: rgba(30, 111, 159, 0.04);
}

/* Trust Badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(11, 26, 46, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel-2);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(11, 26, 46, 0.08);
}

/* Hero Stats */
.hero-stats {
  max-width: 30rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 26, 46, 0.06);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ink);
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--steel-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* ===== Dispatch Ticket (Signature Element) ===== */
.ticket-wrapper {
  perspective: 1200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ticket-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(30, 111, 159, 0.05), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.dispatch-ticket {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow:
    0 20px 60px -20px rgba(11, 26, 46, 0.12),
    0 0 0 1px rgba(11, 26, 46, 0.05);
  transform: rotate(2deg) translateY(0);
  max-width: 420px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.dispatch-ticket:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow:
    0 30px 80px -20px rgba(11, 26, 46, 0.18),
    0 0 0 1px rgba(30, 111, 159, 0.12);
}

/* Ticket Notch Effects */
.dispatch-ticket::before,
.dispatch-ticket::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--hero-bg);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.dispatch-ticket::before {
  left: -12px;
}

.dispatch-ticket::after {
  right: -12px;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--steel-2);
  text-transform: uppercase;
  border-bottom: 2px dashed var(--paper-dim);
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
}

.ticket-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-icon {
  font-size: 1rem;
}

.ticket-title {
  font-weight: 600;
}

.ticket-id {
  color: var(--accent);
  font-weight: 700;
  background: rgba(30, 111, 159, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.route-origin,
.route-destination {
  display: flex;
  flex-direction: column;
}

.route-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--steel-2);
  text-transform: uppercase;
}

.route-location {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.route-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.route-arrow i {
  color: var(--accent);
  font-size: 1.2rem;
}

.route-miles {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--steel-2);
  font-weight: 600;
}

.ticket-divider {
  border-top: 2px dashed var(--paper-dim);
  margin: 1rem 0;
}

.ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.detail-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--steel-2);
  text-transform: uppercase;
}

.detail-value {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.detail-value.accent {
  color: var(--accent);
  font-weight: 700;
}

.status-booked {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2E9E4F;
  animation: pulse 1.5s infinite;
}

.ticket-footer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 2px dashed var(--paper-dim);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--steel-2);
  text-align: center;
}

.ticket-footer span {
  display: block;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--steel-3);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceUp 2s infinite;
  opacity: 0.5;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

@keyframes bounceUp {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================================
   6. SECTIONS — General
   ============================================================ */
.section {
  background: var(--white);
  padding: 6rem 0;
}

.section-alt {
  background: var(--paper);
  padding: 6rem 0;
}

#about {
  background: var(--white);
}

#testimonials {
  background: var(--paper);
}

#pricing {
  background: var(--white);
}

#contact {
  background: var(--hero-bg);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3.25rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
}

.section-sub {
  color: var(--steel-2);
  font-size: 1.02rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ============================================================
   7. SERVICES SECTION
   ============================================================ */
/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 111, 159, 0.08);
  border: 1px solid rgba(30, 111, 159, 0.12);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--steel-2);
  text-transform: uppercase;
}

.badge-icon {
  font-size: 0.9rem;
}

.section-title {
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Card Glow Effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  background-size: 200% 100%;
  animation: shimmerBorder 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes shimmerBorder {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.service-card:hover::before {
  opacity: 1;
}

/* Card Background Pattern */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(30, 111, 159, 0.02), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s ease;
}

.service-card:hover::after {
  transform: scale(1.5);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent);
}

/* Icon Wrapper */
.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 2.2rem;
  color: var(--accent);
  display: block;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-number {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel-3);
  background: var(--paper);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.service-card p {
  color: var(--steel-2);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--accent-dk);
}

.service-link:hover i {
  transform: translateX(6px);
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.service-link:hover::after {
  width: 100%;
}

/* ============================================================
   8. HOW IT WORKS SECTION
   ============================================================ */
.section-head-left {
  position: sticky;
  top: 120px;
  padding-right: 2rem;
}

#how .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 111, 159, 0.08);
  border: 1px solid rgba(30, 111, 159, 0.12);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--steel-2);
  text-transform: uppercase;
}

.section-title-left {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.2rem;
}

.section-title-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-sub-left {
  color: var(--steel-2);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Mini Stats */
.mini-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid var(--line-dark);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-stat-num {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.mini-stat-label {
  font-size: 0.65rem;
  color: var(--steel-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.mini-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--line-dark);
}

/* Step Cards */
.step-card {
  position: relative;
  padding: 2rem 1.5rem 1.8rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  text-align: left;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 111, 159, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  border-radius: 14px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.step-card:hover::after {
  opacity: 0.15;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent);
}

.step-number {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(30, 111, 159, 0.08);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(30, 111, 159, 0.1);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}

.step-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.step-card:hover .step-icon-wrapper {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(30, 111, 159, 0.15);
  background: var(--accent);
}

.step-icon {
  font-size: 1.6rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.step-card p {
  color: var(--steel-2);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   9. SECTION FOOTER / CTA BUTTONS
   ============================================================ */
.section-footer {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.section-footer-text {
  font-family: var(--f-mono);
  font-size: 0.9rem;
  color: var(--steel-2);
  margin-bottom: 1.2rem;
}

.btn-section-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  border: none;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 0.9rem 2.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(30, 111, 159, 0.25);
}

/* Always visible shine effect */
.btn-section-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.8s ease;
}

/* Always visible glow */
.btn-section-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  z-index: -1;
  opacity: 0.5;
  filter: blur(4px);
  transition: opacity 0.3s ease;
}

.btn-section-primary:hover::after {
  opacity: 0.8;
  filter: blur(8px);
}

.btn-section-primary .btn-arrow {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.btn-section-primary:hover .btn-arrow {
  transform: translateX(8px) scale(1.1);
}

.btn-section-primary:hover::before {
  left: 100%;
}

.btn-section-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 45px rgba(30, 111, 159, 0.35);
  background: linear-gradient(135deg, var(--accent-dk), #0D4A6E);
}

.btn-section-primary:active {
  transform: translateY(0px) scale(0.98);
}

.btn-section-primary i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-section-primary:hover i {
  transform: scale(1.1);
}

/* ============================================================
   10. STAT BAND
   ============================================================ */
.stat-band {
  background: var(--ink);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.stat-band .stat-num {
  font-size: 2.1rem;
  color: #fff;
}

.stat-band .stat-label {
  color: var(--chrome);
}

/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11, 26, 46, 0.15);
  max-height: 480px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Image Overlay */
.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 26, 46, 0.1), transparent 50%);
  pointer-events: none;
}

/* Floating Badges */
.about-badge-top {
  position: absolute;
  top: 20px;
  right: -10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.about-badge-bottom {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  animation: floatBadge 3s ease-in-out infinite 1.5s;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.badge-number {
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.badge-content i {
  font-size: 1rem;
  color: #FFB800;
}

.badge-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--steel-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* About Content */
.about-content {
  padding-left: 1rem;
}

.about-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 111, 159, 0.08);
  border: 1px solid rgba(30, 111, 159, 0.12);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--steel-2);
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.about-sub {
  color: var(--steel-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Features List */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  transition: all 0.3s ease;
  cursor: default;
}

.about-features li:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(11, 26, 46, 0.06);
}

.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 111, 159, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-features li:hover .feature-icon {
  background: var(--accent);
}

.feature-icon i {
  font-size: 0.9rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.about-features li:hover .feature-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.feature-title {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--steel-2);
}

/* About Button */
.btn-about-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  border: none;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 0.8rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(30, 111, 159, 0.25);
}

.btn-about-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.8s ease;
}

.btn-about-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  z-index: -1;
  opacity: 0.5;
  filter: blur(4px);
  transition: opacity 0.3s ease;
}

.btn-about-primary:hover::after {
  opacity: 0.8;
  filter: blur(8px);
}

.btn-about-primary .btn-arrow {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.btn-about-primary:hover .btn-arrow {
  transform: translateX(8px) scale(1.1);
}

.btn-about-primary:hover::before {
  left: 100%;
}

.btn-about-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 45px rgba(30, 111, 159, 0.35);
  background: linear-gradient(135deg, var(--accent-dk), #0D4A6E);
}

.btn-about-primary:active {
  transform: translateY(0px) scale(0.98);
}

.btn-about-primary i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-about-primary:hover i {
  transform: scale(1.1);
}

/* ============================================================
   12. TESTIMONIALS SECTION
   ============================================================ */
.testimonial-head-left {
  position: sticky;
  top: 120px;
  padding-right: 2rem;
}

.testimonial-head-left .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 111, 159, 0.08);
  border: 1px solid rgba(30, 111, 159, 0.12);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--steel-2);
  text-transform: uppercase;
}

.testimonial-title-left {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.testimonial-title-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.testimonial-sub-left {
  color: var(--steel-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Testimonial Mini Stats */
.testimonial-mini-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid var(--line-dark);
}

.mini-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-stat-number {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.mini-stat-stars {
  display: flex;
  gap: 0.15rem;
  margin: 0.2rem 0;
}

.mini-stat-stars i {
  font-size: 0.7rem;
  color: #FFB800;
}

.mini-stat-label {
  font-size: 0.6rem;
  color: var(--steel-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--line-dark);
}

/* Static Testimonial Card */
.testimonial-card-static {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 60px rgba(11, 26, 46, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
}

.testimonial-card-static:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(11, 26, 46, 0.12);
  border-color: var(--accent);
}

/* Background Pattern */
.t-static-bg-pattern {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(30, 111, 159, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: bgFloat 8s ease-in-out infinite;
}

@keyframes bgFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.1);
  }
}

.t-static-content {
  position: relative;
  padding: 2.5rem;
  z-index: 1;
}

.t-static-quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.t-static-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--steel-2);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.t-static-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.t-static-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-static-avatar span {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.t-static-info {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.t-static-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.t-static-role {
  font-size: 0.75rem;
  color: var(--steel-2);
}

.t-static-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.t-static-rating {
  display: flex;
  gap: 0.15rem;
}

.t-static-rating i {
  font-size: 0.85rem;
  color: #FFB800;
}

.t-static-badge {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: #2E9E4F;
  background: rgba(46, 158, 79, 0.08);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(46, 158, 79, 0.1);
}

.t-static-badge.featured-badge {
  color: var(--accent);
  background: rgba(30, 111, 159, 0.08);
  border-color: rgba(30, 111, 159, 0.1);
}

/* Custom Carousel Navigation */
.carousel-nav-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line-dark);
  background: #ffffff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(30, 111, 159, 0.2);
}

.carousel-btn i {
  font-size: 1.2rem;
}

.carousel-dots-custom {
  display: flex;
  gap: 0.6rem;
}

.carousel-dots-custom button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--steel-3);
  background: transparent;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dots-custom button.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.carousel-dots-custom button:hover:not(.active) {
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ============================================================
   13. PRICING SECTION
   ============================================================ */
.price-card {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 2.75rem 2.25rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.price-card-featured {
  background: var(--asphalt);
  border-color: var(--accent);
  box-shadow: 0 4px 30px rgba(30, 111, 159, 0.15);
}

.price-card-featured:hover {
  box-shadow: 0 8px 50px rgba(30, 111, 159, 0.25);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 2.25rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
}

.price-card h3 {
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.price-sub {
  color: var(--chrome);
  font-size: .88rem;
  margin-top: .4rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: 1.75rem 0;
}

.price-amount {
  font-family: var(--f-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.price-unit {
  color: var(--chrome);
  font-size: .85rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--chrome);
}

.price-list i {
  color: var(--accent);
}

/* ============================================================
   14. CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  background: var(--ink);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 46, .92), rgba(11, 26, 46, .88));
}

.cta-title {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 600;
}

.cta-sub {
  color: var(--chrome);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ============================================================
   15. CONTACT SECTION
   ============================================================ */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--f-mono);
  font-size: .98rem;
  color: var(--ink);
}

.contact-list i {
  color: var(--accent);
  width: 1.2rem;
}

.contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-dark);
}

.form-label {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--steel-2);
}

.form-control,
.form-select {
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  padding: .65rem .85rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 111, 159, .12);
}

.form-note {
  color: #2E9E4F;
  font-family: var(--f-mono);
  font-size: .85rem;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--steel-3);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.site-footer h6 {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  font-size: .85rem;
  margin-bottom: 1.1rem;
}

.footer-sub {
  font-size: .92rem;
  margin-top: 1rem;
  max-width: 22rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-links a {
  color: var(--steel-3);
  font-size: .92rem;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
}

.footer-links i {
  color: var(--accent);
}

.social-row {
  display: flex;
  gap: .75rem;
  margin-top: 1.4rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-row a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 3rem;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
}

.footer-fine {
  color: var(--steel-2);
}

/* ============================================================
   17. MODAL
   ============================================================ */
.modal-content {
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modal-title {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.1rem;
}

.modal .btn-outline-light:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   18. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30, 111, 159, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
  z-index: 1030;
  font-size: 1.1rem;
}

.back-to-top:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ===== DESKTOP (1200px+) ===== */
@media (max-width: 1199.98px) {
  #mainNav {
    padding: 0.6rem 1.5rem;
  }
  #mainNav.scrolled {
    padding: 0.3rem 1.5rem;
  }
  .brand-text {
    font-size: 1.7rem;
  }
  .brand-icon {
    font-size: 1.8rem;
  }
}

/* ===== TABLET & SMALL LAPTOP (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title-line {
    font-size: 3.5rem !important;
  }
  .section-title {
    font-size: 2.2rem !important;
  }
  .about-image-wrapper {
    max-height: 420px !important;
  }
  .about-image-wrapper img {
    max-height: 420px !important;
  }
}

/* ===== TABLET (768px - 991px) ===== */
@media (max-width: 991.98px) {
  #mainNav {
    padding: 0.5rem 1.2rem;
  }
  #mainNav.scrolled {
    padding: 0.3rem 1.2rem;
  }
  .brand-text {
    font-size: 1.5rem;
  }
  .brand-icon {
    font-size: 1.5rem;
  }
  .brand-tagline {
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
  }
  .navbar-brand::after {
    display: none;
  }

  /* Mobile Menu */
  .navbar-collapse {
    background: #000000 !important;
    margin-top: 0.75rem;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
  }
  .navbar-collapse .nav-link {
    padding: 0.8rem 1.2rem !important;
    border-radius: 6px;
    transition: background 0.2s ease;
    margin: 0.1rem 0;
  }
  .navbar-collapse .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .navbar-collapse .nav-link::before,
  .navbar-collapse .nav-link::after {
    display: none;
  }
  .navbar-collapse .btn-accent {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
    margin-left: 0;
  }

  /* Hero */
  .hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }
  .hero-title-line {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }
  .ticket-wrapper {
    margin-top: 2rem;
  }
  .dispatch-ticket {
    transform: rotate(0deg);
  }
  .dispatch-ticket::before,
  .dispatch-ticket::after {
    display: none;
  }
  .scroll-indicator {
    display: none;
  }

  /* Sections - Left Headers become static */
  .section-head-left {
    position: static !important;
    padding-right: 0 !important;
  }
  .testimonial-head-left {
    position: static !important;
    padding-right: 0 !important;
  }
  .section-title-left::after {
    left: 0 !important;
    transform: none !important;
  }
  .testimonial-title-left::after {
    left: 0 !important;
    transform: none !important;
  }

  /* Services */
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-icon {
    font-size: 1.8rem;
  }

  /* How It Works */
  .mini-stats {
    justify-content: center;
  }
  .step-card {
    padding: 1.8rem 1.2rem;
  }
  .step-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .step-icon {
    font-size: 1.4rem;
  }

  /* About */
  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  .about-image-wrapper {
    max-height: 400px;
  }
  .about-image-wrapper img {
    max-height: 400px;
  }
  .about-badge-top {
    right: 10px;
    top: 10px;
    padding: 0.5rem 0.8rem;
  }
  .about-badge-bottom {
    left: 10px;
    bottom: 10px;
    padding: 0.5rem 0.8rem;
  }
  .badge-number {
    font-size: 1.2rem;
  }
  .about-title {
    font-size: 1.6rem;
  }

  /* Testimonials */
  .testimonial-head-left {
    margin-bottom: 2.5rem;
  }
  .testimonial-mini-stats {
    justify-content: center;
  }
  .t-static-content {
    padding: 2rem;
  }

  /* Buttons */
  .btn-section-primary {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
  }
  .btn-about-primary {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
  }
}

/* ===== TABLET LANDSCAPE (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title-line {
    font-size: 2.8rem !important;
  }
  .section-title {
    font-size: 2rem !important;
  }
  .brand-text {
    font-size: 1.4rem !important;
  }
  .brand-icon {
    font-size: 1.6rem !important;
  }
  .about-image-wrapper {
    max-height: 380px !important;
  }
  .about-image-wrapper img {
    max-height: 380px !important;
  }
  .service-card {
    padding: 1.8rem !important;
  }
  .step-card {
    padding: 1.5rem !important;
  }
  .section {
    padding: 5rem 0 !important;
  }
  .stat-band {
    padding: 3rem 0 !important;
  }
  .stat-band .stat-num {
    font-size: 2rem !important;
  }
}

/* ===== MOBILE LANDSCAPE (576px - 767px) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title-line {
    font-size: 2.2rem !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .brand-text {
    font-size: 1.2rem !important;
  }
  .brand-icon {
    font-size: 1.4rem !important;
  }
  .hero {
    padding: 7rem 0 3rem !important;
  }
  .dispatch-ticket {
    padding: 1.5rem !important;
  }
  .about-image-wrapper {
    max-height: 300px !important;
  }
  .about-image-wrapper img {
    max-height: 300px !important;
  }
  .service-card {
    padding: 1.5rem !important;
  }
  .step-card {
    padding: 1.2rem !important;
  }
  .section {
    padding: 4rem 0 !important;
  }
  .stat-band {
    padding: 2.5rem 0 !important;
  }
  .stat-band .stat-num {
    font-size: 1.8rem !important;
  }
  .testimonial-card-static {
    max-width: 100% !important;
  }
}

/* ===== MOBILE PORTRAIT (Up to 575px) ===== */
@media (max-width: 575.98px) {
  /* Typography */
  .hero-title-line {
    font-size: 1.8rem !important;
  }
  .section-title {
    font-size: 1.5rem !important;
  }
  .section-title-left {
    font-size: 1.3rem !important;
  }
  .about-title {
    font-size: 1.2rem !important;
  }
  .testimonial-title-left {
    font-size: 1.2rem !important;
  }
  .brand-text {
    font-size: 1rem !important;
  }
  .brand-icon {
    font-size: 1.2rem !important;
  }
  .brand-tagline {
    display: none !important;
  }

  /* Load Ticker */
  .load-ticker {
    height: 28px !important;
  }
  .ticker-item {
    font-size: 0.6rem !important;
    padding: 0 0.8rem !important;
  }
  #mainNav {
    top: 28px !important;
  }

  /* Navbar */
  #mainNav {
    padding: 0.2rem 0.5rem !important;
  }
  #mainNav.scrolled {
    padding: 0.15rem 0.5rem !important;
  }
  .navbar-brand {
    gap: 0.3rem !important;
    padding: 0.1rem 0.3rem !important;
  }
  .navbar-toggler {
    padding: 0.4rem 0.5rem !important;
  }
  .navbar-toggler-icon {
    width: 1.2em !important;
    height: 1.2em !important;
  }
  .navbar-collapse {
    padding: 0.8rem !important;
    margin-top: 0.5rem !important;
  }
  .navbar-collapse .nav-link {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.75rem !important;
  }

  /* Hero */
  .hero {
    padding: 6rem 0 2rem !important;
  }
  .hero-badge {
    padding: 0.3rem 0.8rem !important;
    font-size: 0.6rem !important;
  }
  .hero-sub {
    font-size: 0.9rem !important;
  }
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-actions a {
    width: 100% !important;
    justify-content: center !important;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.75rem !important;
    padding: 0.6rem 1.2rem !important;
  }
  .hero-trust {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .trust-divider {
    display: none !important;
  }
  .hero-stats {
    max-width: 100% !important;
  }
  .stat-num {
    font-size: 1.2rem !important;
  }
  .stat-label {
    font-size: 0.55rem !important;
  }

  /* Dispatch Ticket */
  .dispatch-ticket {
    padding: 1rem !important;
  }
  .dispatch-ticket::before,
  .dispatch-ticket::after {
    display: none !important;
  }
  .ticket-route {
    flex-direction: column !important;
    gap: 0.3rem !important;
  }
  .route-arrow {
    flex-direction: row !important;
    gap: 0.5rem !important;
  }
  .ticket-details {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
  .detail-value {
    font-size: 0.8rem !important;
  }
  .ticket-header {
    font-size: 0.6rem !important;
  }
  .ticket-id {
    font-size: 0.6rem !important;
  }
  .ticket-footer {
    font-size: 0.55rem !important;
  }

  /* Sections */
  .section {
    padding: 3rem 0 !important;
  }
  .section-head {
    margin-bottom: 2rem !important;
  }
  .section-head-left {
    margin-bottom: 1.5rem !important;
  }
  .section-title::after {
    width: 40px !important;
  }
  .section-title-left::after {
    width: 40px !important;
  }
  #how .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Grid Gaps */
  .row.g-4 {
    --bs-gutter-y: 1rem !important;
    --bs-gutter-x: 0.8rem !important;
  }
  .row.g-5 {
    --bs-gutter-y: 1.5rem !important;
    --bs-gutter-x: 0.8rem !important;
  }

  /* Services */
  .service-card {
    padding: 1.2rem !important;
  }
  .service-icon {
    font-size: 1.6rem !important;
  }
  .service-card h3 {
    font-size: 0.95rem !important;
  }
  .service-card p {
    font-size: 0.85rem !important;
  }
  .service-number {
    font-size: 0.65rem !important;
  }
  .service-link {
    font-size: 0.7rem !important;
  }

  /* How It Works */
  .step-card {
    padding: 1rem !important;
  }
  .step-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
  }
  .step-icon {
    font-size: 1.2rem !important;
  }
  .step-card h3 {
    font-size: 0.9rem !important;
  }
  .step-card p {
    font-size: 0.8rem !important;
  }
  .step-number {
    font-size: 0.6rem !important;
    padding: 0.15rem 0.6rem !important;
  }
  .mini-stats {
    padding: 0.8rem !important;
    flex-wrap: wrap !important;
  }
  .mini-stat-num {
    font-size: 1rem !important;
  }
  .mini-stat-divider {
    display: none !important;
  }

  /* Stat Band */
  .stat-band {
    padding: 2rem 0 !important;
  }
  .stat-band .stat-num {
    font-size: 1.5rem !important;
  }
  .stat-band .stat-label {
    font-size: 0.6rem !important;
  }

  /* About */
  .about-image-wrapper {
    max-height: 220px !important;
  }
  .about-image-wrapper img {
    max-height: 220px !important;
  }
  .about-badge-top,
  .about-badge-bottom {
    display: none !important;
  }
  .about-content .section-badge {
    font-size: 0.6rem !important;
    padding: 0.25rem 0.7rem !important;
  }
  .about-features li {
    padding: 0.4rem 0.6rem !important;
    gap: 0.5rem !important;
  }
  .feature-icon {
    width: 24px !important;
    height: 24px !important;
  }
  .feature-icon i {
    font-size: 0.7rem !important;
  }
  .feature-title {
    font-size: 0.75rem !important;
  }
  .feature-desc {
    font-size: 0.65rem !important;
  }
  .btn-about-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.7rem !important;
  }

  /* Testimonials */
  .testimonial-card-static {
    padding: 0 !important;
  }
  .t-static-content {
    padding: 1.2rem !important;
  }
  .t-static-quote-mark {
    font-size: 2.5rem !important;
  }
  .t-static-text {
    font-size: 0.85rem !important;
  }
  .t-static-avatar {
    width: 38px !important;
    height: 38px !important;
  }
  .t-static-avatar span {
    font-size: 0.65rem !important;
  }
  .t-static-name {
    font-size: 0.8rem !important;
  }
  .t-static-role {
    font-size: 0.6rem !important;
  }
  .t-static-rating i {
    font-size: 0.7rem !important;
  }
  .t-static-badge {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.6rem !important;
  }
  .t-static-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .testimonial-mini-stats {
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
    padding: 0.8rem !important;
  }
  .mini-stat-divider {
    display: none !important;
  }
  .carousel-btn {
    width: 34px !important;
    height: 34px !important;
  }
  .carousel-btn i {
    font-size: 0.8rem !important;
  }
  .carousel-dots-custom button {
    width: 7px !important;
    height: 7px !important;
  }
  .carousel-nav-custom {
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }

  /* Pricing */
  .price-card {
    padding: 1.5rem !important;
  }
  .price-amount {
    font-size: 2.2rem !important;
  }
  .price-card h3 {
    font-size: 1.1rem !important;
  }
  .price-list li {
    font-size: 0.8rem !important;
  }
  .price-badge {
    left: 1.5rem !important;
    font-size: 0.55rem !important;
    padding: 0.2rem 0.6rem !important;
  }

  /* CTA Band */
  .cta-band {
    padding: 3.5rem 0 !important;
  }
  .cta-title {
    font-size: 1.3rem !important;
  }
  .cta-sub {
    font-size: 0.9rem !important;
  }

  /* Contact */
  .contact-form {
    padding: 1.2rem !important;
  }
  .contact-list li {
    font-size: 0.85rem !important;
  }
  .contact-form .row.g-3 {
    --bs-gutter-y: 0.5rem !important;
  }

  /* Footer */
  .site-footer {
    padding: 2.5rem 0 1.5rem !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }
  .footer-sub {
    font-size: 0.85rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .site-footer h6 {
    text-align: center !important;
  }
  .footer-links {
    align-items: center !important;
  }
  .social-row {
    justify-content: center !important;
  }

  /* Buttons */
  .btn-section-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.7rem 1.5rem !important;
    font-size: 0.75rem !important;
  }
  .btn-accent {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
  }
  .section-footer {
    margin-top: 1.5rem !important;
    padding-top: 1.2rem !important;
  }

  /* Modal */
  .modal-dialog {
    margin: 0.5rem !important;
  }
  .modal-content {
    padding: 0 !important;
  }
  .modal-body {
    padding: 1rem !important;
  }
  .modal-header {
    padding: 0.8rem 1rem !important;
  }

  /* Back to Top */
  .back-to-top {
    width: 38px !important;
    height: 38px !important;
    right: 0.8rem !important;
    bottom: 0.8rem !important;
    font-size: 0.9rem !important;
  }

  /* Scroll Padding */
  html {
    scroll-padding-top: 80px !important;
  }

  /* Images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  .about-image-wrapper {
    border-radius: 10px !important;
  }

  /* Cards */
  .service-card,
  .step-card,
  .price-card {
    border-radius: 8px !important;
  }
  .testimonial-card-static {
    border-radius: 10px !important;
  }

  /* Center text on mobile */
  .text-center-mobile {
    text-align: center !important;
  }
  .section-footer-text {
    text-align: center !important;
  }
}

/* ===== VERY SMALL PHONES (Up to 380px) ===== */
@media (max-width: 380px) {
  .hero-title-line {
    font-size: 1.5rem !important;
  }
  .brand-text {
    font-size: 0.85rem !important;
  }
  .brand-icon {
    font-size: 1rem !important;
  }
  .brand-tagline {
    display: none !important;
  }
  .service-card {
    padding: 0.8rem !important;
  }
  .step-card {
    padding: 0.8rem !important;
  }
  .dispatch-ticket {
    padding: 0.8rem !important;
  }
  .t-static-content {
    padding: 0.8rem !important;
  }
  .price-card {
    padding: 1rem !important;
  }
  .contact-form {
    padding: 0.8rem !important;
  }
  .about-features li {
    padding: 0.3rem 0.4rem !important;
  }
}