﻿/* ============================================================
   LOGIS FREIGHT — styles.css
   Design: Sharp Tech Yellow | Bebas Neue + Roboto | #FFC107
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg:         #060606;
  --yellow:     #FFC107;
  --orange:     #FF9800;
  --white:      #ffffff;
  --card-bg:    rgba(0,0,0,0.50);
  --card-border:rgba(255,193,7,0.35);
  --card-hover: rgba(255,193,7,1);
  --font-h:     'Bebas Neue', Impact, sans-serif;
  --font-t:     'Roboto', Arial, sans-serif;
  --ts-dark:
    1px  1px 0 rgba(0,0,0,1),
   -1px -1px 0 rgba(0,0,0,1),
    1px -1px 0 rgba(0,0,0,1),
   -1px  1px 0 rgba(0,0,0,1),
    2px  2px 0 rgba(0,0,0,0.8),
   -2px -2px 0 rgba(0,0,0,0.8),
    0 0 8px rgba(0,0,0,0.9),
    0 0 20px rgba(0,0,0,0.7);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--bg);
}
body {
  font-family: var(--font-t);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* === ACCENT COLORS === */
.accent-yellow { color: var(--yellow); text-shadow: none; }
.accent-orange { color: var(--orange); text-shadow: none; }

/* === CANVAS === */
#gl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === GRAIN OVERLAY === */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.30;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* === LOADER === */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease;
}
.loader-inner { text-align: center; }
.loader-logo-img {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}
.loader-logo {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 2rem;
}
.loader-bar-wrap {
  width: clamp(200px, 40vw, 360px);
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
#progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transition: width 0.3s ease;
  border-radius: 2px;
}
.loader-pct {
  font-family: var(--font-h);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin: 0.5rem 0 0.5rem;
  text-shadow: none;
}
.loader-text {
  font-family: var(--font-t);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6,6,6,0.97);
  border-bottom: 2px solid rgba(255,193,7,0.4);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  backdrop-filter: blur(12px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
}
.nav-brand-text {
  font-family: var(--font-h);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-t);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--yellow); }
.nav-cta {
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.5);
  padding: 6px 16px;
  border-radius: 2px;
  color: var(--yellow) !important;
  transition: background 0.3s, border-color 0.3s;
}
.nav-cta:hover {
  background: rgba(255,193,7,0.25);
  border-color: var(--yellow);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE DRAWER === */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: rgba(6,6,6,0.98);
  border-left: 1px solid rgba(255,193,7,0.3);
  z-index: 1100;
  padding: 80px 32px 40px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}
.nav-drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid rgba(255,193,7,0.3);
  color: var(--white);
  font-size: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.drawer-close:hover { border-color: var(--yellow); color: var(--yellow); }
.drawer-links { display: flex; flex-direction: column; gap: 1.5rem; }
.drawer-link {
  font-family: var(--font-t);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  transition: color 0.3s;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.drawer-link:hover { color: var(--yellow); }
.drawer-cta {
  color: var(--yellow) !important;
  border-bottom-color: rgba(255,193,7,0.2) !important;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* === UI LAYER === */
#ui-layer {
  position: relative;
  z-index: 10;
}
.stage { position: relative; }

/* === PAGES === */
.page {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0s 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s ease;
}

/* === REVEAL ANIMATION === */
.reveal-3d {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.page.is-active .reveal-3d { opacity: 1; transform: translateY(0); }
.page.is-active .reveal-3d:nth-child(1) { transition-delay: 0.0s; }
.page.is-active .reveal-3d:nth-child(2) { transition-delay: 0.1s; }
.page.is-active .reveal-3d:nth-child(3) { transition-delay: 0.2s; }
.page.is-active .reveal-3d:nth-child(4) { transition-delay: 0.3s; }
.page.is-active .reveal-3d:nth-child(5) { transition-delay: 0.4s; }
.page.is-active .reveal-3d:nth-child(6) { transition-delay: 0.5s; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-t);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: var(--ts-dark);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
}
.btn-primary:hover {
  background: rgba(255,193,7,0.15);
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-outline {
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.9);
}
.btn-full { width: 100%; }

/* === SECTION COMMONS === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 60px;
  width: 100%;
}
.section-header { margin-bottom: 3rem; }
.section-tag {
  font-family: var(--font-t);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: none;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-family: var(--font-t);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffffff;
  text-shadow: var(--ts-dark);
}

/* === HERO === */
#hero {
  justify-content: center;
  align-items: flex-start;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-t);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,193,7,0.4);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-shadow: none;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  margin-bottom: 1rem;
}
.hero-title .accent-yellow { text-shadow: none; }
.hero-subtitle {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  margin-bottom: 1rem;
}
.hero-subtitle .accent-orange { text-shadow: none; }
.hero-desc {
  font-family: var(--font-t);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  text-shadow: var(--ts-dark);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.05em;
  text-shadow: none;
}
.stat-label {
  display: block;
  font-family: var(--font-t);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: var(--ts-dark);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,193,7,0.3);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-shadow: var(--ts-dark);
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,193,7,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.card:hover {
  border-color: var(--card-hover);
  box-shadow: 0 0 20px rgba(255,193,7,0.2);
  transform: translateY(-4px);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.card-title {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  margin-bottom: 0.75rem;
}
.card-accent-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  margin-bottom: 1rem;
  border-radius: 1px;
}
.card-text {
  font-family: var(--font-t);
  font-weight: 300;
  font-size: 0.85rem;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.card-text .accent-orange { text-shadow: none; }
.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,193,7,0.3);
  padding: 3px 10px;
  border-radius: 2px;
  text-shadow: none;
}

/* === ROUTES === */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.route-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.route-card:hover {
  border-color: var(--card-hover);
  box-shadow: 0 0 20px rgba(255,193,7,0.2);
}
.route-arrow {
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  text-shadow: none;
}
.route-cities {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.route-from, .route-to {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: var(--ts-dark);
}
.route-dot-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,193,7,0.5) 0, rgba(255,193,7,0.5) 4px, transparent 4px, transparent 10px);
  min-width: 20px;
}
.route-time {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  margin-bottom: 0.4rem;
}
.route-time .accent-orange { text-shadow: none; }
.route-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: var(--ts-dark);
}
.routes-cta {
  text-align: center;
  padding: 2rem;
}
.routes-note {
  font-family: var(--font-t);
  font-size: 1rem;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  margin-bottom: 1.5rem;
}

/* === PROCESS === */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: var(--card-hover);
  box-shadow: 0 0 20px rgba(255,193,7,0.2);
}
.step-num {
  font-family: var(--font-h);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255,152,0,0.5), 0 0 24px rgba(255,152,0,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  margin-bottom: 0.75rem;
}
.step-text {
  font-family: var(--font-t);
  font-weight: 300;
  font-size: 0.85rem;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  line-height: 1.7;
}
.step-text .accent-orange { text-shadow: none; }
.step-connector {
  width: 2px;
  height: 3px;
  align-self: center;
  margin: 0 0.5rem;
  position: relative;
}
.step-connector::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,193,7,0.5), rgba(255,152,0,0.5));
  margin-top: 80px;
}

/* === ABOUT === */
.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.about-desc {
  font-family: var(--font-t);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-shadow: var(--ts-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.fact-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.fact-num {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-shadow: none;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: var(--ts-dark);
}
.about-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 2px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  white-space: nowrap;
}

/* About Emblem */
.about-emblem {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}
.emblem-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,193,7,0.35);
  animation: rotateSlow 20s linear infinite;
  background: conic-gradient(from 0deg, transparent 70%, rgba(255,193,7,0.4) 100%);
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.emblem-core {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,193,7,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.emblem-truck {
  font-size: 3rem;
  line-height: 1;
}
.emblem-year {
  font-family: var(--font-h);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  text-shadow: none;
}

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(255,193,7,0.6); }
.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.contact-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-shadow: var(--ts-dark);
  margin-bottom: 0.3rem;
}
.contact-value {
  font-family: var(--font-t);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: var(--white);
  text-shadow: var(--ts-dark);
  transition: color 0.3s;
}
.contact-value.accent-orange { text-shadow: none; }
a.contact-value:hover { color: var(--yellow); }

/* Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  padding: 2rem;
}
.form-title {
  font-family: var(--font-h);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-t);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  border-color: rgba(255,193,7,0.7);
  background: rgba(255,193,7,0.05);
}
.form-textarea { min-height: 100px; }
.form-note {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  text-shadow: none;
  line-height: 1.5;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid rgba(255,193,7,0.15);
  margin-top: 4rem;
  padding-top: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-h);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-brand .accent-yellow { text-shadow: none; }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--yellow); }

/* ============================================================
   MOBILE STYLES
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-connector { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-emblem { display: none; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .section-inner { padding: 80px 20px 50px; }
  .hero-inner { padding: 90px 20px 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-stats { gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; padding: 0 20px 2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
  .about-badges { flex-direction: column; }
  .stat-divider { width: 30px; height: 1px; }
}

@media (max-width: 480px) {
  .section-inner { padding: 70px 16px 40px; }
  .hero-inner { padding: 80px 16px 50px; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .fact-item { padding: 1rem 0.75rem; }
}
/* Site Loading Bar */
$10;visibility:hidden;transition:opacity .6s,visibility .6s;transition:opacity .6s}#siteLoadingBar.done{opacity:0;pointer-events:none}.slb-track{width:120px;height:4px;background:rgba(255,255,255,.15);border-radius:4px;overflow:hidden}.slb-fill{height:100%;width:0%;background:var(--gold, var(--accent, #c9a84c));border-radius:4px;transition:width .3s}.slb-text{white-space:nowrap}
