/* ==========================================================================
   CULI KOMPANI / CULI AUTOTRANSPORT — PREMIUM STYLESHEET
   Aesthetics: High-end European Automotive Logistics & Transport
   ========================================================================== */

/* --- ROOT VARIABLES --- */
:root {
  /* Colors */
  --bg-darkest: #07080B;
  --bg-primary: #0C0E14;
  --bg-card: #131720;
  --bg-card-hover: #191E2B;
  --bg-elevated: #1D2331;
  --bg-glass: rgba(15, 18, 26, 0.78);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-focus: #E5A93B;

  --text-pure: #FFFFFF;
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;

  /* Brand Accents */
  --accent-gold: #E5A93B;
  --accent-gold-hover: #F3B84E;
  --accent-gold-glow: rgba(229, 169, 59, 0.28);
  --accent-cyan: #00D2FF;
  --accent-red: #EF4444;
  --accent-green: #10B981;
  --accent-wa: #25D366;

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --header-height: 80px;
  --topbar-height: 38px;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 25px var(--accent-gold-glow);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  overflow-x: clip;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-darkest);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-pure);
  letter-spacing: -0.02em;
}

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

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 56px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
  line-height: 1.15;
}

.btn-primary {
  background: var(--accent-gold);
  color: #07080B;
  box-shadow: 0 4px 18px rgba(229, 169, 59, 0.35);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 169, 59, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-pure);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #232938;
  color: var(--text-pure);
  border: 1px solid var(--border-card);
}

.btn-secondary:hover {
  background: #2F374A;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn-fb {
  background: #1877F2;
  color: #FFFFFF;
}

.btn-fb:hover {
  background: #1466D2;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 24px;
  font-size: 0.96rem;
  min-width: 170px;
}

.btn-block {
  width: 100%;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.topbar {
  background: #07080B;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-secondary);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.topbar-left > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.topbar-link:hover {
  color: var(--accent-gold);
}
/* --- SITE HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  transition: all var(--transition-fast);
}

.site-header.compact {
  height: 65px;
  background: rgba(10, 12, 17, 0.94);
  box-shadow: var(--shadow-card);
}

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

/* Brand Logo */
.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.site-logo-header {
  width: 144px;
  height: 54px;
}

.brand-logo .logo-mark,
.brand-logo .logo-text-group,
.mobile-drawer-header .logo-text-group,
.footer-logo .logo-title,
.footer-logo .logo-subtitle {
  display: none;
}

.site-logo-drawer {
  width: 156px;
  height: 72px;
}

.site-logo-footer {
  width: 190px;
  height: 90px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.16), rgba(12, 14, 20, 0.95));
  border: 1px solid rgba(229, 169, 59, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(229, 169, 59, 0.18);
  flex-shrink: 0;
}

.logo-icon-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent-gold);
}

.logo-svg {
  width: 78%;
  height: 78%;
  color: var(--accent-gold);
  display: block;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 1.6vw, 1.9rem);
  letter-spacing: 0.06em;
  color: var(--text-pure);
  line-height: 0.95;
}

.logo-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  line-height: 1.2;
  margin-top: 4px;
}

.logo-tag {
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
  flex-shrink: 1;
  min-width: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-pure);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-selector {
  display: flex;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.lang-btn {
  padding: 5px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--text-secondary);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-pure);
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #07080B;
}

.header-cta {
  padding: 10px 18px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.header-phone-link {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--accent-gold);
  background: rgba(229, 169, 59, 0.1);
  border: 1px solid rgba(229, 169, 59, 0.35);
  border-radius: 50%;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-pure);
  transition: all var(--transition-fast);
}
/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  background: #0E1118;
  border-left: 1px solid var(--border-card);
  z-index: 999;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.close-drawer-btn {
  font-size: 2rem;
  color: var(--text-secondary);
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  text-transform: uppercase;
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-lang-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: #181C26;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 0 60px;
  overflow: hidden;
  background: var(--bg-darkest);
}

.hero-section .container {
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(20px, 3vw, 56px);
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.03);
  animation: heroZoom 24s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 8, 11, 0.95) 0%,
    rgba(7, 8, 11, 0.80) 45%,
    rgba(7, 8, 11, 0.28) 100%
  );
}

.hero-ambient-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, var(--bg-darkest) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-left: 0;
  margin-right: auto;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(229, 169, 59, 0.12);
  border: 1px solid rgba(229, 169, 59, 0.35);
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse-gold 2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 50px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-pure);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-card);
}

/* --- TRUST BAR --- */
.trust-bar-section {
  background: linear-gradient(90deg, #0B0E14 0%, #121722 50%, #0B0E14 100%);
  border-top: 1px solid rgba(229, 169, 59, 0.18);
  border-bottom: 1px solid rgba(229, 169, 59, 0.18);
  padding: 22px 0;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-marquee-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.trust-marquee-track {
  width: 100%;
}

.trust-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-group[aria-hidden="true"] {
  display: none;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 56px;
  padding: 2px 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.trust-card + .trust-card {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card:hover {
  background: transparent;
  transform: none;
}

.trust-card:hover .trust-icon {
  color: #F2BE52;
  transform: scale(1.08);
}

.trust-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.trust-info h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.trust-info p {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 110px 0;
  background: var(--bg-darkest);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-visual {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover .about-img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(12, 14, 20, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 169, 59, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.badge-text {
  font-size: 0.88rem;
  color: var(--text-pure);
  font-weight: 600;
}

.about-secondary-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.mini-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.mini-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.mini-stat-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.about-lead {
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}

.pillar-item {
  display: flex;
  gap: 14px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(229, 169, 59, 0.12);
  border: 1px solid rgba(229, 169, 59, 0.25);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-item h5 {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.pillar-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-pure);
}

.about-contact-link:hover {
  color: var(--accent-gold);
}

/* --- 1999 TIMELINE --- */
.timeline-container {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.timeline-header {
  text-align: center;
  margin-bottom: 40px;
}

.timeline-title {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 25px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(255, 255, 255, 0.2));
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #11141C;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.timeline-item.highlight .timeline-dot {
  background: var(--accent-gold);
  color: #07080B;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  width: 100%;
}

.timeline-step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --- SERVICES SECTION --- */
.services-section[hidden],
a[href="#services"] {
  display: none !important;
}

.services-section {
  padding: 110px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 169, 59, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 23, 32, 0.95) 0%, rgba(19, 23, 32, 0.2) 60%);
}

.service-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--accent-gold);
  background: rgba(12, 14, 20, 0.8);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229, 169, 59, 0.3);
}

.service-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.service-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.service-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  transition: all var(--transition-fast);
}

.service-card:hover .service-arrow {
  background: var(--accent-gold);
  color: #07080B;
  transform: translateX(4px);
}

/* --- EUROPE ROUTES SECTION (INTERACTIVE MAP) --- */
.routes-section {
  padding: 110px 0;
  background: var(--bg-darkest);
}

.routes-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.pill-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.pill-btn:hover {
  color: var(--text-pure);
  border-color: rgba(255, 255, 255, 0.25);
}

.pill-btn.active {
  background: var(--accent-gold);
  color: #07080B;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 14px var(--accent-gold-glow);
}

.map-interactive-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.map-svg-wrap {
  position: relative;
  background: #090B10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.europe-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Map Country Shapes */
.country-bg {
  fill: #141822;
  stroke: #1F2535;
  stroke-width: 1.5;
}

.country-shape {
  fill: #19202F;
  stroke: #2E384D;
  stroke-width: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.country-shape:hover, .country-shape.active {
  fill: #2B3448;
  stroke: var(--accent-gold);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 10px var(--accent-gold-glow));
}

.hub-country {
  fill: #222938;
}

/* Route Lines */
.transport-route {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 8 6;
  animation: routeDash 1.8s linear infinite;
  opacity: 0.85;
}

.route-de {
  stroke: url(#routeGradDE);
  stroke-width: 4;
}

.route-ch {
  stroke: url(#routeGradCH);
  stroke-width: 4;
}

.route-export {
  stroke: #9CA3AF;
  stroke-width: 2.5;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -28;
  }
}

/* City Nodes */
.city-node {
  cursor: pointer;
}

.city-node text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  fill: #FFFFFF;
  paint-order: stroke;
  stroke: #090B10;
  stroke-width: 3px;
}

.map-label-sub {
  font-size: 11px !important;
  fill: #CBD5E1 !important;
}

.hq-label {
  font-size: 15px !important;
  font-weight: 900 !important;
  fill: var(--accent-gold) !important;
}

.pulse-ring {
  fill: none;
  stroke-width: 2;
  animation: mapRing 2.2s ease-out infinite;
}

@keyframes mapRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Route Info Panel */
.route-info-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.route-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 169, 59, 0.12);
  border: 1px solid rgba(229, 169, 59, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.route-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.route-panel-heading {
  font-size: 1.65rem;
}

.route-panel-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.route-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #0C0E14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}

.route-spec-box {
  display: flex;
  flex-direction: column;
}

.spec-title {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--text-pure);
}

/* --- FLEET SECTION --- */
.fleet-section[hidden] {
  display: none !important;
}

.fleet-section {
  padding: 110px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.fleet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.fleet-filter-buttons {
  display: flex;
  gap: 10px;
}

.fleet-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.fleet-btn.active {
  background: var(--accent-gold);
  color: #07080B;
  border-color: var(--accent-gold);
}

.fleet-stats-banner {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  margin-bottom: 40px;
}

.fleet-stat-box {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.stat-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--accent-gold);
  line-height: 1;
}

.fleet-stat-box h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.fleet-stat-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.fleet-stat-sep {
  width: 1px;
  height: 70px;
  background: var(--border-card);
  margin: 0 40px;
}

.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 169, 59, 0.4);
  box-shadow: var(--shadow-card);
}

.fleet-card-media {
  position: relative;
  height: 230px;
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-type-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.fleet-card-details {
  padding: 24px;
}

.fleet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.fleet-card-header h4 {
  font-size: 1.15rem;
}

.fleet-badge-live {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.fleet-card-details p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.fleet-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.fleet-specs-list strong {
  color: var(--text-pure);
}

/* --- HOW IT WORKS (PROCESS) --- */
.process-section {
  padding: 110px 0;
  background: var(--bg-darkest);
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  flex: 1;
  text-align: center;
  transition: all var(--transition-fast);
}

.process-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.process-card.highlight {
  background: linear-gradient(135deg, #181E2C, #12151E);
  border-color: rgba(229, 169, 59, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.process-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.process-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-connector {
  color: var(--accent-gold);
  opacity: 0.5;
}

/* --- WHY CULI --- */
.why-section {
  padding: 110px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.why-header {
  margin-bottom: 60px;
}

.why-section .why-header {
  margin-bottom: 0;
}

.why-section .section-tag,
.why-section .why-grid {
  display: none;
}

.why-section .section-desc {
  max-width: 720px;
  margin: 18px auto 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition-smooth);
}

.why-card:hover {
  border-color: rgba(229, 169, 59, 0.4);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.why-icon {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- REAL COMPANY GALLERY --- */
.gallery-section {
  padding: 110px 0;
  background: var(--bg-darkest);
}

.gallery-head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
}

.gallery-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.gallery-tab.active {
  background: var(--accent-gold);
  color: #07080B;
  border-color: var(--accent-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.92) 0%, rgba(7, 8, 11, 0.1) 70%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  background: rgba(229, 169, 59, 0.9);
  color: #07080B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-caption h5 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.gallery-item-caption span {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.gallery-more .btn {
  min-width: 235px;
}

/* --- SOCIAL MEDIA BANNER --- */
.social-journey-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.social-banner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 50px;
}

.social-banner-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.social-banner-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 30px;
}

.social-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-card-preview {
  background: #0F131C;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.social-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #07080B;
  font-family: var(--font-display);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.social-handle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.social-card-image {
  height: 200px;
  overflow: hidden;
}

.social-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card-caption {
  padding: 16px;
}

.social-card-caption p {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.social-date {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* --- QUOTE SECTION & FORMS --- */
.quote-section {
  padding: 110px 0;
  background: var(--bg-darkest);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.quote-form-col {
  min-width: 0;
  background: linear-gradient(135deg, rgba(19, 27, 39, 0.96), rgba(8, 11, 16, 0.98));
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.quote-form-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-form-heading .section-tag {
  margin-bottom: 14px;
}

.quote-form-heading .section-title {
  margin-bottom: 12px;
}

.quote-form-heading .section-desc {
  margin: 0 auto;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-workflow-section {
  padding-top: 4px;
}

.form-workflow-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.form-step-number {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #0A0C10;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--accent-gold);
  border-radius: 50%;
}

.form-workflow-heading h3 {
  margin: 0;
  color: var(--text-pure);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
}

.form-workflow-heading p {
  margin: 3px 0 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

.form-country-selection {
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.form-section-label {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #E2E8F0;
}

.form-section-label span {
  color: var(--accent-gold);
}

.country-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.country-selector-card {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  color: var(--text-pure);
  text-align: left;
  background: rgba(9, 11, 16, 0.78);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.country-selector-card:hover {
  border-color: rgba(229, 169, 59, 0.65);
  transform: translateY(-1px);
}

.country-selector-card:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.country-selector-card.is-selected {
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.17), rgba(229, 169, 59, 0.04));
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(229, 169, 59, 0.12), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.country-flag {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: transparent;
  line-height: 1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.country-selector-card[data-country="de"] .country-flag {
  background: linear-gradient(to bottom, #111 0 33.33%, #dd2635 33.33% 66.66%, #f1c43a 66.66%);
}

.country-selector-card[data-country="ch"] .country-flag {
  background: #e22635;
}

.country-selector-card[data-country="ch"] .country-flag::before,
.country-selector-card[data-country="ch"] .country-flag::after {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 1px;
}

.country-selector-card[data-country="ch"] .country-flag::before {
  width: 18px;
  height: 7px;
}

.country-selector-card[data-country="ch"] .country-flag::after {
  width: 7px;
  height: 18px;
}

.country-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  gap: 3px;
}

.country-card-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.country-card-copy small {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.25;
}

.country-selected-icon {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #080A0C;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.country-selector-card.is-selected .country-selected-icon {
  opacity: 1;
  transform: scale(1);
}

.route-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.route-selector-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 104px;
  padding: 14px;
  color: var(--text-pure);
  text-align: left;
  background: rgba(9, 11, 16, 0.72);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.route-selector-card:hover {
  border-color: rgba(229, 169, 59, 0.65);
  transform: translateY(-1px);
}

.route-selector-card:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.route-selector-card.is-selected {
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.15), rgba(229, 169, 59, 0.03));
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(229, 169, 59, 0.12);
}

.route-flags {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1;
}

.route-flags b {
  color: var(--accent-gold);
  font-size: 1.15rem;
}

.route-selector-card strong {
  padding-right: 18px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1.35;
}

.route-selected-icon {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #0A0C10;
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.route-selector-card.is-selected .route-selected-icon {
  opacity: 1;
  transform: scale(1);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: #E2E8F0;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: #090B10;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  outline: none;
  transition: border-color var(--transition-fast);
}

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.other-city-input.is-hidden {
  display: none;
}

.form-row-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-row-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-row-two-wide {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  margin-top: 18px;
}

.form-optional {
  color: var(--text-secondary);
  font-weight: 400;
}

.form-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.form-action-buttons .btn {
  min-height: 64px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .route-selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .form-country-selection {
    padding: 4px 0 0;
  }

  .country-card-grid,
  .route-selector-grid {
    grid-template-columns: 1fr;
  }

  .country-selector-card {
    min-height: 74px;
  }
}

.form-success-box {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 10px;
}

.form-success-box.show {
  display: flex;
}

.success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Direct Contact Info Sidebar */
.direct-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

.direct-contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.direct-contact-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 26px;
}

.contact-number-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.contact-number-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0D1017;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: all var(--transition-fast);
}

.contact-number-item:hover {
  border-color: var(--accent-gold);
  background: #141924;
  transform: translateX(4px);
}

.cnt-flag {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent-gold);
}

.cnt-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cnt-country {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cnt-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-pure);
}

.cnt-alt {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.cnt-action-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(229, 169, 59, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

.base-info-box {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: #090B10;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.base-info-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.base-info-box strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.base-info-box p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 2px 0 6px;
}

.hq-hours {
  font-size: 0.76rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* --- CONTACT & GOOGLE MAP --- */
.contact-section {
  padding: 80px 0 110px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.map-floating-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(12, 14, 20, 0.92);
  border: 1px solid rgba(229, 169, 59, 0.4);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.badge-icon {
  font-size: 1.8rem;
}

.map-floating-badge strong {
  font-size: 0.95rem;
  color: #FFFFFF;
  display: block;
}

.map-floating-badge p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.map-direct-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* --- SITE FOOTER --- */
.site-footer {
  background: #060709;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-facts {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-nav a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.86rem;
}

.footer-contact-list strong {
  color: #FFFFFF;
}

.footer-contact-list a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-links a:hover {
  color: var(--accent-gold);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-media {
  max-width: 1000px;
  max-height: 75vh;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(15, 18, 26, 0.8);
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
}

.lightbox-caption h4 {
  font-size: 1rem;
  color: #FFFFFF;
}

#lightboxIndex {
  font-size: 0.82rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 2.4rem;
  color: #FFFFFF;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: var(--accent-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: var(--accent-gold);
  color: #07080B;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* --- MOBILE STICKY BOTTOM BAR --- */
.mobile-sticky-bar {
  display: none !important;
}

.mobile-bar-btn {
  display: none !important;
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-gold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 169, 59, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(229, 169, 59, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 169, 59, 0); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .header-inner {
    gap: 18px;
  }
  .brand-logo {
    gap: 10px;
  }
  .logo-mark {
    width: 44px;
    height: 44px;
  }
  .logo-title {
    font-size: 1.55rem;
  }
  .logo-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .logo-tag {
    display: none;
  }
  .nav-list {
    gap: 15px;
  }
  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }
  .header-actions {
    gap: 10px;
  }
  .header-cta {
    padding: 9px 14px;
    font-size: 0.76rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-interactive-container {
    grid-template-columns: 1fr;
  }
  .fleet-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 12px;
  }
  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .logo-title {
    font-size: 1.35rem;
  }
  .logo-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
    margin-top: 3px;
  }
  .nav-list {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    padding: 6px 0;
  }
  .header-actions {
    gap: 8px;
  }
  .lang-btn {
    padding: 4px 6px;
    font-size: 0.7rem;
  }
  .header-cta {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .timeline-track {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .timeline-line {
    display: none;
  }
  .process-grid {
    flex-direction: column;
  }
  .process-connector {
    transform: rotate(90deg);
  }
  .trust-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .trust-card:nth-child(3) {
    border-left: 0;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .social-banner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  html, body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }
  body {
    overflow-x: hidden;
  }
  .header-cta {
    display: none;
  }
  .header-phone-link {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .site-header {
    height: var(--header-height);
  }
  .header-inner {
    gap: 10px;
  }
  .hero-cta-group .btn,
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    min-height: 42px;
    font-size: 0.72rem;
    padding: 10px 12px;
    letter-spacing: 0.01em;
    line-height: 1.1;
  }
  /* Compact, content-first layout across the entire mobile experience. */
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .about-section,
  .services-section,
  .routes-section,
  .fleet-section,
  .process-section,
  .why-section,
  .gallery-section,
  .quote-section,
  .contact-section {
    padding: 64px 0;
  }
  .social-journey-section {
    padding: 56px 0;
  }
  .section-head,
  .fleet-head,
  .gallery-head,
  .why-header {
    margin-bottom: 30px;
  }
  .fleet-head,
  .gallery-head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .section-tag {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }
  .section-title {
    font-size: 1.75rem;
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .section-desc {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .trust-bar-section {
    padding: 20px 0;
  }
  .trust-grid {
    display: none;
  }
  .trust-marquee-wrap {
    width: 100%;
    padding: 0 16px;
  }
  .trust-marquee-track {
    width: 100%;
  }
  .trust-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .trust-card {
    min-width: 0;
    min-height: 94px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    border-radius: 0;
  }
  .trust-card + .trust-card {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  .trust-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
  .trust-card:nth-child(3) {
    border-left: 0;
  }
  .trust-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 169, 59, 0.05);
    border: 1px solid rgba(229, 169, 59, 0.15);
    border-radius: 8px;
  }
  .trust-icon svg {
    width: 18px;
    height: 18px;
  }
  .trust-info h4 {
    font-size: 0.72rem;
    line-height: 1.18;
    letter-spacing: 0.02em;
    margin: 0;
  }
  .trust-info p {
    font-size: 0.63rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
    margin: 0;
  }
  .trust-info p,
  .about-secondary-stats,
  .about-actions,
  .timeline-card p,
  .service-text,
  .service-badge,
  .service-arrow,
  .process-desc,
  .process-connector,
  .why-card p,
  .fleet-stats-banner,
  .social-card-preview,
  .map-floating-badge {
    display: none;
  }
  .about-split,
  .map-interactive-container,
  .quote-grid {
    gap: 28px;
  }
  .quote-section {
    padding: 64px 0;
  }
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .quote-form-col,
  .direct-contact-card {
    border-radius: var(--radius-lg);
  }
  .quote-form-col {
    padding: 22px 18px;
  }
  .quote-form {
    gap: 14px;
    margin-top: 18px;
  }
  .form-row {
    gap: 12px;
  }
  .form-group label {
    font-size: 0.74rem;
  }
  .form-group input,
  .form-group select {
    padding: 12px 14px;
  }
  .form-action-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .direct-contact-card {
    padding: 22px 18px;
  }
  .about-image-card {
    border-radius: var(--radius-md);
  }
  .about-pillars-grid {
    gap: 10px;
    margin-bottom: 24px;
  }
  .pillar-item {
    gap: 10px;
  }
  .pillar-icon {
    width: 32px;
    height: 32px;
  }
  .pillar-icon svg {
    width: 16px;
    height: 16px;
  }
  .pillar-item h5 {
    font-size: 0.78rem;
  }
  .pillar-item p {
    display: none;
  }
  .timeline-container {
    padding: 28px 18px;
    border-radius: var(--radius-md);
  }
  .timeline-title {
    font-size: 1.45rem;
    line-height: 1.18;
  }
  .timeline-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .timeline-item {
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    text-align: left;
  }
  .timeline-dot {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin: 14px 0 0;
    font-size: 0.72rem;
  }
  .timeline-card {
    flex: 1;
    min-width: 0;
    padding: 15px 16px;
  }
  .timeline-step {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }
  .timeline-card h4 {
    font-size: 0.98rem;
    line-height: 1.25;
    margin: 0;
  }
  /* On phones, use an editorial timeline instead of another card grid. */
  .timeline-container {
    padding: 0;
    background: transparent;
    border: 0;
  }
  .timeline-header {
    text-align: left;
    margin-bottom: 28px;
  }
  .timeline-track {
    display: block;
    margin-left: 6px;
    padding-left: 24px;
    border-left: 1px solid rgba(229, 169, 59, 0.38);
  }
  .timeline-item {
    display: block;
    padding: 0 0 28px;
  }
  .timeline-item:last-child {
    padding-bottom: 0;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -29px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 12px var(--accent-gold-glow);
  }
  .timeline-dot,
  .timeline-item.highlight .timeline-dot {
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 7px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--accent-gold);
    font-size: 0.76rem;
    line-height: 1;
    text-align: left;
  }
  .timeline-card {
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .timeline-card .timeline-step {
    font-size: 0.72rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .timeline-card h4 {
    font-size: 1.05rem;
  }
  .timeline-step,
  .process-step-num {
    font-size: 1.35rem;
  }
  .service-card,
  .fleet-card,
  .process-card,
  .why-card {
    border-radius: var(--radius-md);
  }
  .service-img-wrapper {
    max-height: 160px;
  }
  .service-body,
  .fleet-card-details {
    padding: 18px;
  }
  .service-title,
  .fleet-card-header h4 {
    font-size: 1.12rem;
  }
  .fleet-filter-buttons,
  .gallery-filters {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .fleet-btn,
  .gallery-tab {
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.74rem;
    line-height: 1.25;
    text-align: center;
  }
  .routes-filter-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 24px;
  }
  .pill-btn {
    min-width: 0;
    padding: 8px 4px;
    font-size: 0.7rem;
  }
  /* Keep the map on mobile, but enlarge its useful central area for legibility. */
  .map-interactive-container {
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .map-svg-wrap {
    display: block;
    height: 245px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
  }
  .europe-map-svg {
    width: 120%;
    max-width: none;
    height: auto;
    transform: translateX(-10%);
  }
  .route-info-panel,
  .quote-form,
  .direct-contact-card,
  .social-banner {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }
  .route-panel-desc {
    display: none;
  }
  .route-info-panel {
    gap: 14px;
  }
  .route-panel-badge {
    align-self: flex-start;
    max-width: 100%;
    padding: 5px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .route-panel-heading {
    font-size: 1.4rem;
    line-height: 1.15;
  }
  .route-spec-grid {
    gap: 8px;
    padding: 14px;
  }
  .route-spec-box {
    min-width: 0;
  }
  .spec-title {
    font-size: 0.62rem;
    line-height: 1.35;
  }
  .spec-value {
    font-size: 0.82rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .route-panel-cta .btn {
    min-height: 50px;
    padding: 12px;
    font-size: 0.82rem;
  }
  .fleet-card-media {
    height: 170px;
  }
  .fleet-specs-list {
    gap: 8px;
    font-size: 0.82rem;
  }
  .process-grid {
    gap: 10px;
  }
  .process-card,
  .why-card {
    padding: 20px 16px;
  }
  .process-card {
    position: relative;
    width: 100%;
    cursor: pointer;
  }
  .process-card::after {
    content: '+';
    position: absolute;
    top: 13px;
    right: 15px;
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
  }
  .process-card.is-open::after {
    content: '-';
  }
  .process-card.is-open .process-desc {
    display: block;
    margin: 12px 4px 0;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .why-grid {
    gap: 10px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item {
    height: 150px;
    border-radius: var(--radius-sm);
  }
.gallery-item-caption {
    display: none;
  }
  .social-banner-title {
    font-size: 1.55rem;
  }
  .contact-number-item {
    padding: 14px;
  }
  .site-footer {
    padding: 48px 0 24px;
  }
  .footer-top {
    gap: 26px;
  }
  /* Mobile hero: keep the message and primary action visible at first glance. */
  .hero-section {
    min-height: auto;
    align-items: flex-start;
    padding: calc(var(--header-height) + 12px) 0 20px;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
  }
  .hero-badge-pill {
    display: none;
    padding: 5px 12px;
    margin-bottom: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 0.96;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.32;
    margin-bottom: 18px;
  }
  .hero-desc,
  .hero-cta-group .btn-outline,
  .hero-stats-row {
    display: none;
  }
  .hero-cta-group {
    display: block;
    margin: 0;
  }
  .hero-cta-group .btn-primary {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    padding: 14px 18px;
  }
  .hero-bg-img {
    object-position: 72% 60%;
    animation: none;
    transform: scale(1.02);
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 8, 11, 0.86) 0%,
      rgba(7, 8, 11, 0.78) 50%,
      rgba(7, 8, 11, 0.90) 100%
    );
  }
  .topbar {
    display: none;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .fleet-cards-grid {
    grid-template-columns: 1fr;
  }
  .fleet-stats-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .fleet-stat-sep {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-action-buttons {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .lightbox-close {
    top: -40px;
  }
}
@media (max-width: 640px) {
  /* A compact timeline reads more clearly on phones than four accordion cards. */
  .process-section {
    padding: 72px 0;
  }
  .process-grid {
    position: relative;
    display: grid;
    gap: 0;
    max-width: 540px;
    margin: 0 auto;
    padding: 4px 0 0;
  }
  .process-grid::before {
    content: '';
    position: absolute;
    top: 27px;
    bottom: 42px;
    left: 22px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(229, 169, 59, 0.7), rgba(229, 169, 59, 0.08));
  }
  .process-card,
  .process-card.highlight {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 16px;
    width: 100%;
    padding: 0 0 30px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    cursor: default;
    transform: none;
  }
  .process-card:last-child {
    padding-bottom: 0;
  }
  .process-card::after,
  .process-card.is-open::after {
    display: none;
    content: none;
  }
  .process-step-num {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0;
    border: 1px solid rgba(229, 169, 59, 0.55);
    border-radius: 50%;
    background: #161b26;
    box-shadow: 0 0 0 5px var(--bg-darkest);
    font-size: 0.92rem;
    letter-spacing: 0.03em;
  }
  .process-title {
    align-self: center;
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
  }
  .process-desc,
  .process-card.is-open .process-desc {
    display: block;
    grid-column: 2;
    margin: 7px 0 0;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
  }
  .process-connector {
    display: none;
  }
  .lang-selector {
    display: flex;
    padding: 2px;
  }
  .lang-btn {
    min-width: 27px;
    padding: 5px 4px;
    font-size: 0.66rem;
  }
  .header-inner {
    gap: 6px;
  }
  .header-actions {
    margin-left: auto;
    gap: 8px;
  }
  .brand-logo {
    gap: 8px;
    min-width: 0;
  }
  .site-logo-header {
    width: 120px;
    height: 44px;
    max-width: 100%;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
  }
  .logo-title {
    font-size: 1.4rem;
  }
  .logo-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.09em;
  }
  .mobile-sticky-bar {
    gap: 6px;
    padding: 8px 12px 10px;
  }
  .mobile-bar-btn {
    gap: 6px;
    padding: 10px 4px;
    font-size: 0.78rem;
  }
  .mobile-bar-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 400px) {
  .header-cta {
    display: none;
  }
  .logo-title {
    font-size: 1.3rem;
  }
  .site-logo-header {
    width: 104px;
    height: 40px;
  }
  .logo-subtitle {
    font-size: 0.5rem;
  }

  .hero-section {
    min-height: 72vh;
    padding-bottom: 28px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 18px;
  }

  .hero-badge-pill {
    font-size: 0.62rem;
    padding: 6px 10px;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 0.96;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-cta-group {
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-cta-group .btn,
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    width: 100%;
    min-height: 48px;
    font-size: 0.82rem;
    padding: 12px 14px;
    justify-content: center;
    letter-spacing: 0.02em;
  }

  .hero-cta-group .btn-primary {
    min-width: 0;
    width: 100%;
  }
}

/* Trust section: editorial layout, intentionally different from a card grid. */
.trust-bar-section {
  padding: 42px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(229, 169, 59, 0.11), transparent 28%),
    #0A0D13;
  border-color: rgba(229, 169, 59, 0.22);
}

.trust-group {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(3, auto);
  gap: 0 68px;
}

.trust-card,
.trust-card.highlight {
  min-height: 0;
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.trust-card + .trust-card {
  border-left: 0;
}

.trust-card:first-child {
  grid-row: 1 / span 3;
  position: relative;
  align-self: stretch;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 32px;
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.16), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(229, 169, 59, 0.33);
  border-radius: 3px;
  overflow: hidden;
}

.trust-card:first-child::after {
  content: 'EST. 1999';
  position: absolute;
  right: 22px;
  bottom: 16px;
  color: rgba(229, 169, 59, 0.55);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.trust-card:first-child .trust-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(229, 169, 59, 0.5);
  border-radius: 50%;
}

.trust-card:first-child .trust-icon svg {
  width: 30px;
  height: 30px;
}

.trust-card:first-child .trust-info h4 {
  max-width: 230px;
  font-size: 1.48rem;
  line-height: 1.12;
  color: var(--accent-gold);
}

.trust-card:first-child .trust-info p {
  max-width: 270px;
  margin-top: 8px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.trust-card:not(:first-child) {
  position: relative;
  gap: 14px;
  padding: 19px 0 19px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-card:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 5px rgba(229, 169, 59, 0.08);
}

.trust-card:not(:first-child) .trust-icon {
  display: none;
}

.trust-card:not(:first-child) .trust-info h4 {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.trust-card:not(:first-child) .trust-info p {
  margin-top: 3px;
}

@media (max-width: 992px) {
  .trust-group {
    grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
    gap: 0 34px;
  }
}

@media (max-width: 640px) {
  .trust-bar-section {
    padding: 28px 0;
  }
  .trust-group {
    display: block;
  }
  .trust-card:first-child {
    min-height: 0;
    margin-bottom: 14px;
    padding: 20px;
    flex-direction: row;
    align-items: flex-start;
  }
  .trust-card:first-child .trust-icon {
    width: 46px;
    height: 46px;
  }
  .trust-card:first-child .trust-icon svg {
    width: 24px;
    height: 24px;
  }
  .trust-card:first-child .trust-info h4 {
    font-size: 1.22rem;
  }
  .trust-card:first-child .trust-info p {
    display: block;
    font-size: 0.79rem;
  }
  .trust-card:not(:first-child) {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px 4px 15px 20px;
    text-align: left;
  }
  .trust-card:not(:first-child) .trust-info h4 {
    font-size: 0.78rem;
  }
  .trust-card:not(:first-child)::before {
    top: 22px;
    left: 1px;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(229, 169, 59, 0.08);
  }
  .trust-card:not(:first-child) .trust-info p {
    display: block;
    font-size: 0.7rem;
  }
}

/* Compact statistics ribbon — replaces the previous trust-card treatments. */
.trust-bar-section {
  padding: 22px 0;
  background: var(--bg-darkest);
  border-top: 1px solid rgba(229, 169, 59, 0.55);
  border-bottom: 1px solid rgba(229, 169, 59, 0.55);
}

.trust-marquee-wrap,
.trust-marquee-track {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.trust-marquee-track {
  padding: 0;
}

.trust-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-group[aria-hidden="true"] {
  display: none;
}

.trust-card:first-child,
.trust-card:not(:first-child) {
  display: flex;
  grid-row: auto;
  grid-column: auto;
  position: static;
  align-self: auto;
  min-width: 0;
  min-height: 78px;
  margin: 0;
  padding: 4px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  overflow: visible;
}

.trust-card + .trust-card {
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.trust-card:first-child::after,
.trust-card:not(:first-child)::before {
  content: none;
  display: none;
}

.trust-card:first-child .trust-icon,
.trust-card:not(:first-child) .trust-icon {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent-gold);
  border: 1px solid rgba(229, 169, 59, 0.62);
  border-radius: 50%;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.trust-card:first-child .trust-icon svg,
.trust-card:not(:first-child) .trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-card:hover .trust-icon {
  color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.trust-info {
  min-width: 0;
}

.trust-value {
  display: block;
  margin-bottom: 1px;
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.trust-card:first-child .trust-info h4,
.trust-card:not(:first-child) .trust-info h4 {
  margin: 0;
  color: var(--text-pure);
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.045em;
}

.trust-info p {
  display: none !important;
}

@media (max-width: 768px) {
  .trust-bar-section {
    padding: 16px 0;
  }
  .trust-marquee-wrap {
    padding: 0 14px;
  }
  .trust-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-card:first-child,
  .trust-card:not(:first-child) {
    min-height: 102px;
    padding: 14px 10px 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }
  .trust-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }
  .trust-card:nth-child(3) {
    border-left: 0;
  }
  .trust-card:first-child .trust-icon,
  .trust-card:not(:first-child) .trust-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }
  .trust-card:first-child .trust-icon svg,
  .trust-card:not(:first-child) .trust-icon svg {
    width: 16px;
    height: 16px;
  }
  .trust-value {
    font-size: 1.15rem;
    margin-bottom: 2px;
  }
  .trust-card:first-child .trust-info h4,
  .trust-card:not(:first-child) .trust-info h4 {
    font-size: clamp(0.62rem, 2.5vw, 0.73rem);
    letter-spacing: 0.02em;
    line-height: 1.15;
  }
}

/* Compact primary action on phones only. */
@media (max-width: 768px) {
  .hero-cta-group .btn-primary {
    width: auto;
    min-height: 46px;
    padding: 11px 18px;
    font-size: 0.76rem;
  }

  /* Keep the hero content fully inside narrow phone screens. */
  .hero-section .container {
    width: 100%;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-content {
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-title,
  .hero-subtitle {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* Keep every form control inside the quote card on narrow screens. */
  .quote-grid,
  .quote-form-col,
  .quote-form,
  .form-row,
  .form-group {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .quote-form-col {
    padding: 22px 16px;
    overflow: hidden;
  }
  .quote-form {
    padding: 0;
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-width: 0;
    max-width: 100%;
  }

  /* Direct-contact sidebar: allow its grid item and cards to shrink on phones. */
  .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .quote-info-col,
  .direct-contact-card,
  .contact-number-list,
  .contact-number-item,
  .cnt-text,
  .base-info-box {
    min-width: 0;
    max-width: 100%;
  }
  .direct-contact-card,
  .contact-number-item,
  .base-info-box {
    width: 100%;
    box-sizing: border-box;
  }
  .cnt-text {
    flex: 1 1 auto;
  }
  .cnt-country,
  .cnt-num,
  .cnt-alt {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .base-info-box > div {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  /* On narrow phones the action moves beneath the contact information. */
  .direct-contact-card {
    padding: 22px 16px;
  }
  .contact-number-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 10px;
    align-items: start;
    padding: 14px;
  }
  .cnt-flag {
    grid-column: 1;
    grid-row: 1;
  }
  .cnt-text {
    grid-column: 2;
    grid-row: 1;
  }
  .cnt-action-pill {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    max-width: 100%;
    white-space: normal;
  }
}


/* ===== CULIAUTOTRANSPORT INTRO LOADER ===== */
body.ct-loading { overflow: hidden; }
.ct-loader { position: fixed; inset: 0; z-index: 999999; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(ellipse at 50% 45%, #171a1e 0%, #080a0c 55%, #020304 100%); color: #fff; opacity: 1; visibility: visible; transition: opacity .45s ease, visibility .45s ease; }
.ct-loader.ct-loader--hide { opacity: 0; visibility: hidden; pointer-events: none; }
.ct-loader__brand { position: absolute; top: 9%; left: 16px; right: 16px; text-align: center; font-family: 'Outfit', sans-serif; font-size: clamp(30px, 5vw, 66px); line-height: 1; font-weight: 900; font-style: italic; letter-spacing: -.03em; }
.ct-loader__brand span { color: #f5f5f5; } .ct-loader__brand strong { color: #e5a93b; }
.ct-loader__tag { position: absolute; top: 19%; left: 16px; right: 16px; text-align: center; font-size: clamp(8px, 1vw, 13px); letter-spacing: .38em; color: #c1c4c7; }
.ct-loader__scene { position: absolute; left: 0; right: 0; top: 27%; bottom: 17%; overflow: hidden; }
.ct-loader__truck { position: absolute; left: 0; bottom: 48px; width: min(720px, 70vw); transform: translate3d(-110%,0,0); filter: drop-shadow(0 15px 9px rgba(0,0,0,.75)); animation: ctTruckDrive 2.7s linear .2s forwards; will-change: transform; }
.ct-loader__truck svg { display: block; width: 100%; height: auto; }
.ct-wheel { transform-box: fill-box; transform-origin: center; animation: ctWheelSpin .35s linear .35s infinite; }
.ct-loader__road { position: absolute; left: 0; right: 0; bottom: 0; height: 62px; overflow: hidden; border-top: 1px solid #3b3e42; background: linear-gradient(#181b1e,#08090a); }
.ct-loader__road-lines { position: absolute; top: 31px; left: -240px; width: calc(100% + 480px); height: 3px; background: repeating-linear-gradient(90deg, transparent 0 72px, #777b7e 72px 138px, transparent 138px 205px); animation: ctRoadMove .72s linear infinite; }
.ct-loader__progress { position: absolute; left: 17%; right: 17%; bottom: 9%; height: 4px; overflow: hidden; border-radius: 20px; background: #34373a; }
.ct-loader__progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg,#a87520,#e5a93b,#f2c45f); box-shadow: 0 0 12px rgba(229,169,59,.55); animation: ctLoadBar 2.8s ease .2s forwards; }
.ct-loader__status { position: absolute; left: 0; right: 0; bottom: 5.2%; text-align: center; font-size: 10px; letter-spacing: .34em; color: #b8bdc2; }
@keyframes ctTruckDrive { from { transform: translate3d(-110%,0,0); } to { transform: translate3d(calc(100vw + 115%),0,0); } }
@keyframes ctWheelSpin { to { transform: rotate(360deg); } }
@keyframes ctRoadMove { to { transform: translateX(-205px); } }
@keyframes ctLoadBar { to { width: 100%; } }
@media (max-width: 600px) {
  .ct-loader__brand { top: 11%; font-size: clamp(24px, 8vw, 38px); }
  .ct-loader__tag { top: 18%; font-size: 7px; letter-spacing: .2em; }
  .ct-loader__scene { top: 29%; bottom: 20%; }
  .ct-loader__truck { width: 430px; max-width: 105vw; bottom: 43px; }
  .ct-loader__progress { left: 12%; right: 12%; bottom: 11%; }
  .ct-loader__status { bottom: 6.5%; font-size: 8px; letter-spacing: .24em; }
}
@media (prefers-reduced-motion: reduce) {
  .ct-loader__truck { animation: ctTruckDrive 2.7s linear .2s forwards; left: 0; transform: translate3d(-110%,0,0); }
  .ct-wheel { animation: ctWheelSpin .35s linear .35s infinite; }
  .ct-loader__road-lines { animation: none; }
  .ct-loader__progress span { animation: none; width: 100%; }
}

/* Phone-only hero refinement. */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh;
    align-items: center;
    padding: 56px 0 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
    line-height: 0.98;
  }
}
