/* ============================================
   BringCar — Premium Car Transport from EU
   Design System & Styles v2
   ============================================ */

/* --- Custom Properties --- */
:root {
  --navy-900: #0a1628;
  --navy-800: #111d35;
  --navy-700: #1a2d4d;
  --navy-600: #243b5e;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-600: #16a34a;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --white: #ffffff;
  --red-500: #ef4444;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .1);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, .12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .18);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .25);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, .25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.2s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 0.4s cubic-bezier(.4, 0, .2, 1);

  --header-h: 72px;
  --section-py: 100px;
  --container: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-600);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-600);
  margin-bottom: 12px;
}

/* --- Scroll Reveal Animations (faster, smoother) --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children (reduced delays) */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.40s;
}

.stagger-children .reveal:nth-child(7) {
  transition-delay: 0.48s;
}

.stagger-children .reveal:nth-child(8) {
  transition-delay: 0.56s;
}

/* Removing delays after elements have appeared so they don't delay hover actions */
.stagger-children .reveal.revealed {
  transition-delay: 0s;
}

/* ============================================
   SECTIONS — General
   ============================================ */
section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--slate-100);
}

/* ============================================
   HEADER (simplified — no social icons)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo span {
  color: var(--blue-400);
}

.header.scrolled .logo {
  color: var(--navy-900);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-400);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.header.scrolled .nav-links a {
  color: var(--slate-600);
}

.header.scrolled .nav-links a:hover {
  color: var(--blue-600);
}

/* Header phone */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  transition: var(--transition);
}

.header-phone:hover {
  color: var(--blue-400);
}

.header.scrolled .header-phone {
  color: var(--navy-900);
}

.header.scrolled .header-phone:hover {
  color: var(--blue-600);
}

@media(max-width:1100px) {
  /* Phone is still visible */
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.header-cta:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.header-cta::after {
  display: none;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.header.scrolled .burger span {
  background: var(--navy-900);
}

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

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

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

/* Mobile nav */
@media(max-width:1100px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-xl);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--white);
  }

  .header.scrolled .nav-links a {
    color: var(--white);
  }

  .header-cta-nav {
    display: inline-flex;
    margin-top: 16px;
  }

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

@media(min-width:1101px) {
  .header-cta-nav {
    display: none;
  }
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 40px) 0 60px;
}

/* Dark overlay for maximum contrast */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  z-index: 1;
  pointer-events: none;
}

/* Decorative grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, .08) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(37, 99, 235, .3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-400);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-400);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--blue-600);
  color: var(--blue-600);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-number span {
  color: var(--blue-400);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--slate-400);
}

/* Hero image with glow effect (no card) */
.hero-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  transform-style: preserve-3d;
  min-height: 400px;
}

.hero-car-img {
  position: relative;
  z-index: 2;
  width: 130%;
  max-width: 900px;
  height: auto;
  left: -5%;
  /* Bright blue glowing shadows + strong dark base shadow */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 120px rgba(37, 99, 235, 0.3));
  transform: translateZ(60px) scale(1.1);
  animation: floatCar 6s ease-in-out infinite, fadeInCar 1.2s ease-out 0.3s both;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  transform-origin: center bottom;
}

.hero-car-img:hover {
  transform: translateZ(90px) scale(1.15);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 80px rgba(59, 130, 246, 0.6)) drop-shadow(0 0 150px rgba(37, 99, 235, 0.5));
}

@keyframes floatCar {

  0%,
  100% {
    transform: translateZ(60px) scale(1.1) translateY(0);
  }

  50% {
    transform: translateZ(60px) scale(1.1) translateY(-10px);
  }
}

@keyframes fadeInCar {
  from {
    opacity: 0;
    transform: translateZ(60px) scale(0.9) translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateZ(60px) scale(1.1) translateX(0);
  }
}

@keyframes fadeInCarMobile {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

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

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media(max-width:1200px) {
  .hero-image {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  .hero-stat {
    text-align: center;
  }
}

@media(max-width:480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-section {
  background: linear-gradient(135deg, #0f2444 0%, #1a3a6a 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, .2);
}

.calculator-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.calculator-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

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

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

  .calculator-card {
    padding: 28px 20px;
  }
}

.calc-input,
.calc-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.calc-input::placeholder {
  color: var(--slate-400);
}

.calc-input:focus {
  border-color: var(--blue-500);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.calc-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.calc-select:focus {
  border-color: var(--blue-500);
  background-color: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.calc-select option {
  background: var(--navy-800);
  color: var(--white);
}

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

.calc-submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 16px;
  background: var(--amber-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.calc-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease-in-out;
}

.calc-submit:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.calc-submit:hover::before {
  left: 100%;
}

.calc-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.calc-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, .2);
  border-top-color: var(--navy-900);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
}

.calc-submit.loading .spinner {
  display: block;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-300);
  margin-bottom: 8px;
}

.calc-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.calc-success.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

.calc-success h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.calc-success p {
  color: var(--slate-300);
}

.calc-error {
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 6px;
  display: none;
}

.calc-group.error .calc-input,
.calc-group.error .calc-select {
  border-color: var(--red-500);
}

.calc-group.error .calc-error {
  display: block;
}

/* ============================================
   COUNTRIES / ROUTES — Timeline-style tiles
   ============================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.route-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-500);
}

.route-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.route-flag {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.route-flag-icon {
  color: var(--slate-400);
}

.route-country {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.route-path {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.5;
  margin-bottom: 10px;
}

.route-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-600);
  background: rgba(37, 99, 235, .08);
  padding: 4px 10px;
  border-radius: 50px;
}

.route-card-other {
  border-style: dashed;
  display: flex;
  flex-direction: column;
}

.route-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: auto;
  padding-top: 8px;
  transition: var(--transition);
}

.route-link:hover {
  color: var(--blue-500);
  transform: translateX(4px);
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-size: 1.5rem;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.advantage-card:hover .advantage-icon {
  background: var(--blue-600);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.advantage-title {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.advantage-text {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

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

/* ============================================
   AUCTIONS — Infinite Scroll Marquee
   ============================================ */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  /* Wider blur for better effect */
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.section-alt .marquee-wrapper::before {
  background: linear-gradient(to right, var(--slate-100), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.section-alt .marquee-wrapper::after {
  background: linear-gradient(to left, var(--slate-100), transparent);
}

.marquee-track {
  display: flex;
  gap: 32px;
  padding-right: 32px;
  /* Pad right to match gap for seamless loop */
  animation: marquee 25s linear infinite;
  width: max-content;
  will-change: transform;
}

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

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  /* Horizontal padding only */
  min-width: 160px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover {
  transform: translateY(-4px) scale(1.05);
  /* Just a slight pop on hover */
}

.auction-logo {
  height: 56px;
  /* Slightly larger logos since there's no card */
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  /* Professional muted look */
  transition: filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover .auction-logo {
  filter: grayscale(0%) opacity(1);
  /* Full color on hover */
}

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

  100% {
    transform: translateX(-25%);
    /* Translates exactly 1 set out of 4 to loop perfectly */
  }
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-600), var(--blue-400), var(--green-500));
}

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 48px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--blue-600);
}

/* Step 5 — Final step success styling */
.process-step-final {
  padding-bottom: 0;
}

.process-number-final {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--green-500), 0 0 20px rgba(34, 197, 94, .3);
  animation: pulseGlow 2s ease-in-out infinite;
}

.process-number-final svg {
  width: 24px;
  height: 24px;
}

.process-step-final .process-content {
  background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(74, 222, 128, .04));
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.process-step-final .process-title {
  color: var(--green-600);
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(34, 197, 94, .3);
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--green-500), 0 0 20px rgba(34, 197, 94, .3);
  }

  50% {
    box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--green-500), 0 0 30px rgba(34, 197, 94, .5);
  }
}

.process-content {
  padding-top: 12px;
}

.process-title {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.process-text {
  color: var(--slate-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media(max-width:600px) {
  .process-timeline::before {
    left: 22px;
  }

  .process-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1rem;
  }

  .process-step {
    gap: 20px;
  }

  .process-number-final svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--amber-500);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--slate-500);
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.review-route {
  font-size: 0.8rem;
  color: var(--slate-400);
}

.review-date {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 2px;
}

.review-star-empty {
  color: var(--slate-300);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--blue-400);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1rem;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--blue-600);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--slate-500);
  stroke-width: 2;
  fill: none;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--blue-600);
  transform: rotate(180deg);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.4, 0, .2, 1), padding 0.3s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--slate-500);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border: 2px dashed var(--slate-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--slate-400);
  font-size: 0.8rem;
  background: var(--slate-100);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease-out;
}

.gallery-card:hover .gallery-image-placeholder {
  transform: scale(1.05);
  background: var(--slate-200);
}

.gallery-image-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-image-placeholder svg {
  transform: scale(1.1) translateY(-2px);
}

.gallery-caption {
  padding: 16px;
}

.gallery-caption-title {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gallery-caption-route {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-inner-centered {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info-text {
  color: var(--slate-300);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-channel:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.channel-whatsapp .contact-channel-icon {
  background: #25d366;
}

.channel-viber .contact-channel-icon {
  background: #7360f2;
}

.channel-telegram .contact-channel-icon {
  background: #0088cc;
}

.channel-instagram .contact-channel-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.channel-phone .contact-channel-icon {
  background: var(--blue-600);
}

/* Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-300);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  background-color: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select:focus {
  border-color: var(--blue-500);
  background-color: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.form-select option {
  background: var(--navy-800);
  color: var(--white);
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 6px;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select {
  border-color: var(--red-500);
}

.form-group.error .form-error {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
}

.form-submit:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
}

.form-submit.loading .spinner {
  display: block;
}

.form-micro-incentive {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 12px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.form-success h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--slate-300);
  font-size: 0.95rem;
}

@media(max-width:900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--slate-400);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue-400);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: var(--slate-500);
  font-size: 0.85rem;
}

@media(max-width:768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* ============================================
   FLOATING CONTACT BUTTONS — Custom SVG Icons
   ============================================ */
.floating-contacts {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
  overflow: hidden;
  background: var(--white);
}

.floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 980;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
}

.mobile-cta-bar-inner {
  display: flex;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

.mobile-cta-call {
  background: var(--blue-600);
  color: var(--white);
}

.mobile-cta-msg {
  background: #25d366;
  color: var(--white);
}

@media(max-width:768px) {
  .mobile-cta-bar {
    display: block;
  }

  .floating-contacts {
    bottom: 80px;
  }

  body {
    padding-bottom: 70px;
  }
}

/* ============================================
   PHOTO PLACEHOLDERS
   ============================================ */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border: 2px dashed var(--slate-300);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--slate-400);
  font-size: 0.85rem;
  background: var(--slate-100);
}

.photo-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.mb-0 {
  margin-bottom: 0;
}