/* ============================================
   PLATFORMA ARAD — TOWY-INSPIRED DESIGN
   Professional, Clean, Dark + Yellow
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:   #f5a623;
  --yellow2:  #e8940a;
  --dark:     #1a1a1a;
  --dark2:    #111111;
  --dark3:    #222222;
  --light:    #f5f5f5;
  --light2:   #ebebeb;
  --white:    #ffffff;
  --gray:     #777777;
  --gray2:    #555555;
  --text:     #333333;
  --font-h:   'Oswald', sans-serif;
  --font-b:   'Open Sans', sans-serif;
  --shadow:   0 4px 20px rgba(0,0,0,0.12);
  --shadow2:  0 8px 40px rgba(0,0,0,0.18);
  --radius:   4px;
  --trans:    0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.yellow { color: var(--yellow); }

/* === SECTION === */
.section { padding: 90px 0; }
.section-tag { display: inline-block; font-family: var(--font-h); font-size: 13px; font-weight: 600; letter-spacing: 3px; color: var(--yellow); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: var(--font-h); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--dark); text-transform: uppercase; line-height: 1.15; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 55px; }
.yellow-divider { width: 50px; height: 4px; background: var(--yellow); margin: 14px 0 20px; }
.yellow-divider.center { margin: 14px auto 20px; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--dark);
  font-family: var(--font-h); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { background: var(--yellow2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,166,35,0.45); }
.btn-primary.btn-large { font-size: 17px; padding: 18px 40px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-h); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 30px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none; transition: all var(--trans);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,166,35,0.08); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-family: var(--font-h); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid #25d366;
  text-decoration: none; transition: all var(--trans);
}
.btn-whatsapp:hover { background: #1db954; border-color: #1db954; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--dark2); border-bottom: 3px solid var(--yellow);
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.logo-sub { font-family: var(--font-h); font-size: 13px; color: var(--yellow); letter-spacing: 4px; }
.header__nav { display: flex; align-items: center; }
.header__nav a {
  font-family: var(--font-h); font-size: 14px; font-weight: 500;
  letter-spacing: 1px; color: rgba(255,255,255,0.75);
  text-decoration: none; text-transform: uppercase;
  padding: 0 16px; line-height: 72px;
  transition: color var(--trans); border-bottom: 3px solid transparent; margin-bottom: -3px;
}
.header__nav a:hover, .header__nav a.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.header__phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--dark);
  font-family: var(--font-h); font-size: 15px; font-weight: 700;
  padding: 10px 20px; border-radius: var(--radius);
  text-decoration: none; transition: background var(--trans); white-space: nowrap;
}
.header__phone:hover { background: var(--yellow2); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh; background: var(--dark2);
  overflow: hidden; display: flex; align-items: center;
  padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #111111 0%, #0d0d0d 50%, #181200 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--yellow); z-index: 5;
}

/* Two-column inner layout */
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 60px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
}

/* LEFT: text */
.hero__content { position: relative; }

.hero__overtitle {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; color: var(--yellow); text-transform: uppercase;
  margin-bottom: 24px;
}
.dot-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.hero__title {
  font-family: var(--font-h); font-weight: 700;
  color: var(--white); text-transform: uppercase;
  line-height: 1.05; margin-bottom: 24px;
}
.hero__title-top {
  display: block; font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 4px;
}
.hero__title-main {
  display: block; font-size: clamp(52px, 7vw, 96px);
  color: var(--yellow); letter-spacing: 6px;
  text-shadow: 0 0 40px rgba(245,166,35,0.3);
}
.hero__title-sub {
  display: block; font-size: clamp(14px, 1.8vw, 22px);
  color: rgba(255,255,255,0.55); font-weight: 400;
  letter-spacing: 3px; margin-top: 4px; font-family: var(--font-b);
}

.hero__desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-bottom: 32px; line-height: 1.8;
}
.hero__desc strong { color: var(--white); }

/* Country pills */
.hero__countries {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-bottom: 28px;
}
.hero__country {
  font-family: var(--font-h); font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__country--main {
  color: var(--yellow);
  background: rgba(245,166,35,0.13);
  border-color: rgba(245,166,35,0.35);
}

/* Phone block */
.hero__phone-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px; padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 6px; border-left: 4px solid var(--yellow);
}
.hero__phone-icon {
  width: 44px; height: 44px; background: rgba(245,166,35,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; animation: phonePulse 2s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
}
.hero__phone-label {
  display: block; font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 1px; margin-bottom: 3px; font-family: var(--font-h);
  text-transform: uppercase;
}
.hero__phone-num {
  display: block; font-family: var(--font-h); font-size: 28px;
  font-weight: 700; color: var(--yellow); text-decoration: none;
  letter-spacing: 1px; transition: color var(--trans);
}
.hero__phone-num:hover { color: var(--white); }

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* RIGHT: Image card */
.hero__image-wrap { display: flex; justify-content: center; align-items: center; }

/* Photo version of the card */
.hero__image-card--photo {
  background: transparent !important;
  padding: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.hero__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(245,166,35,0.2);
}

.hero__image-card {
  position: relative; width: 100%; max-width: 560px;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #d8d8d8 100%);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,166,35,0.3);
  padding: 24px 20px 0;
}

/* Diagonal background element */
.hero__img-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 40%, #e0e0e0 70%, #cccccc 100%);
}
.hero__img-bg::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 55%; height: 100%;
  background: linear-gradient(180deg, #e8e8ee 0%, #d8d8e4 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Company title on card */
.hero__img-title {
  position: relative; z-index: 2;
  text-align: center; margin-bottom: 10px;
}
.hit-main {
  display: block; font-family: var(--font-h); font-size: clamp(26px, 4vw, 38px);
  font-weight: 900; color: var(--yellow);
  text-shadow: 2px 2px 0 #a06000, 4px 4px 0 rgba(160,96,0,0.3);
  letter-spacing: 4px; line-height: 1;
}
.hit-sub {
  display: block; font-family: var(--font-h); font-size: clamp(14px, 2vw, 20px);
  font-weight: 700; color: var(--dark); letter-spacing: 3px;
  text-transform: uppercase; margin-top: 2px;
}

/* Truck SVG on card */
.hero-truck-svg {
  position: relative; z-index: 2;
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* Red banner */
.hero__img-banner {
  position: relative; z-index: 2;
  background: linear-gradient(90deg, #cc1a00, #e02200, #cc1a00);
  color: white; text-align: center;
  font-family: var(--font-h); font-size: clamp(13px, 2vw, 18px);
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 -20px;
  box-shadow: 0 -4px 20px rgba(204,26,0,0.4);
}

/* Flash lights */
.flash-light { animation: flashY 0.8s ease-in-out infinite alternate; }
.flash-light2 { animation: flashR 0.8s ease-in-out infinite alternate 0.4s; }
@keyframes flashY {
  from { opacity: 1; filter: drop-shadow(0 0 6px #f5a623); }
  to   { opacity: 0.3; filter: none; }
}
@keyframes flashR {
  from { opacity: 1; filter: drop-shadow(0 0 6px #cc1a00); }
  to   { opacity: 0.3; filter: none; }
}

/* Smoke puffs */
.smoke-puff { animation: smokeRise 2s ease-out infinite; }
.smoke-puff:nth-child(2) { animation-delay: 0.5s; }
.smoke-puff:nth-child(3) { animation-delay: 1s; }
@keyframes smokeRise {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  100% { transform: translateY(-16px) scale(1.5); opacity: 0; }
}

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-family: var(--font-h);
  font-size: 11px; letter-spacing: 2px;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.25); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--yellow);
  border-radius: 2px; animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
  .hero {
    min-height: unset; align-items: flex-start;
    padding-bottom: 40px; position: relative;
    background: var(--dark2);
  }
  .hero::after { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 14px; padding: 10px 16px 24px; align-items: start; }
  .hero__image-wrap { order: -1; max-width: 100%; margin: 0 auto; width: 100%; }
  .hero__photo { height: auto !important; min-height: unset !important; border-radius: 10px; max-height: 220px; object-fit: cover !important; }
  .hero__content { text-align: center; }
  .hero__overtitle { justify-content: center; font-size: 10px; margin-bottom: 6px; }
  .hero__title { margin-bottom: 8px; }
  .hero__title-top { font-size: 28px !important; }
  .hero__title-main { font-size: 40px !important; }
  .hero__title-sub { font-size: 11px !important; letter-spacing: 2px; }
  .hero__desc { display: block; font-size: 13px; line-height: 1.5; margin: 6px 0 4px; color: rgba(255,255,255,0.65); }
  .hero__countries { gap: 5px; margin-bottom: 16px; justify-content: center; }
  .hero__country { font-size: 10px; padding: 4px 9px; }
  .hero__phone-wrap { display: none; }
  .hero__btns {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 16px; width: 100%;
  }
  .hero__btns .btn-primary,
  .hero__btns .btn-whatsapp {
    width: 100%; justify-content: center;
    padding: 16px; font-size: 15px;
  }
  .scroll-hint { display: none; }
}
/* Gradient negru→alb între hero și despre — doar mobil */
@media (max-width: 900px) {
  .despre { position: relative; padding-top: 30px; }
  .despre::before {
    content: ''; position: absolute; top: -40px; left: 0; right: 0;
    height: 40px; background: linear-gradient(to bottom, #111, #fff);
    z-index: 1; pointer-events: none;
  }
}
@media (max-width: 480px) {
  .hero__image-card { padding: 16px 14px 0; }
  .hero__img-banner { font-size: 12px; letter-spacing: 2px; padding: 12px 14px; margin: 0 -14px; }
  .hero__image-wrap { max-width: 100%; }
}

/* === STATS BAR === */
.statsbar { background: var(--dark2); }
.statsbar__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: stretch; max-width: 1200px; margin: 0 auto;
}
.statsbar__item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 40px; color: var(--white);
}
.statsbar__item--right { justify-content: flex-end; }
.statsbar__item strong {
  display: block; font-family: var(--font-h); font-size: 15px;
  font-weight: 700; color: var(--white); letter-spacing: 1px;
}
.statsbar__item span {
  display: block; font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 1px; font-family: var(--font-h);
}
.statsbar__phone {
  background: var(--yellow); display: flex;
  align-items: center; justify-content: center;
  gap: 12px; padding: 22px 50px; min-width: 280px;
}
.statsbar__phone a {
  font-family: var(--font-h); font-size: 24px; font-weight: 700;
  color: var(--dark); text-decoration: none; letter-spacing: 1px;
}

/* === DESPRE === */
.despre { background: var(--white); }
.despre__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.despre__visual { display: flex; justify-content: center; align-items: center; }
.despre__photo {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(245,166,35,0.15);
}
.truck-card {
  background: var(--light); border-radius: 8px;
  padding: 28px 20px 16px; width: 100%;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.truck-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--yellow);
}
.big-truck-svg { width: 100%; height: auto; display: block; }
.despre__content .section-title { color: var(--dark); }
.despre__text {
  font-size: 15px; color: var(--gray2);
  line-height: 1.8; margin-bottom: 28px;
}
.despre__text strong { color: var(--dark); }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 15px; color: var(--gray2);
  border-bottom: 1px solid var(--light2);
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg { flex-shrink: 0; }
.check-list strong { color: var(--dark); }

/* === COUNTERS === */
.counters { background: var(--dark); padding: 70px 0; }
.counters__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.counter-item {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.counter-item:last-child { border-right: none; }
.counter-item svg { margin: 0 auto 14px; display: block; }
.counter-num {
  font-family: var(--font-h); font-size: 54px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.counter-num::after { content: '+'; font-size: 30px; color: var(--yellow); }
.counter-label {
  font-family: var(--font-h); font-size: 12px;
  color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase;
}

/* === SERVICII === */
.servicii { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.scard {
  background: var(--white); border-radius: 6px;
  padding: 36px 28px 28px; box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  border-top: 4px solid transparent;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-top-color: var(--yellow); }
.scard__icon {
  width: 68px; height: 68px; background: var(--light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; transition: background var(--trans);
}
.scard:hover .scard__icon { background: rgba(245,166,35,0.12); }
.scard__icon svg { width: 36px; height: 36px; }
.scard h3 {
  font-family: var(--font-h); font-size: 18px; font-weight: 600;
  color: var(--dark); text-transform: uppercase;
  margin-bottom: 12px; letter-spacing: 0.5px;
}
.scard p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.scard__badge {
  display: inline-block; font-family: var(--font-h); font-size: 11px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow2); background: rgba(245,166,35,0.1);
  padding: 4px 12px; border-radius: 3px;
  border: 1px solid rgba(245,166,35,0.3);
}

/* === INTERNATIONAL === */
.international { background: var(--white); }
.international .section-title { color: var(--dark); }

.intl-romania {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-left: 6px solid var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}
.intl-romania::after {
  content: '🇷🇴';
  position: absolute;
  right: 36px; top: 50%;
  transform: translateY(-50%);
  font-size: 72px;
  opacity: 0.08;
  pointer-events: none;
}
.intl-romania__icon {
  font-size: 52px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.85;
}
.intl-romania__content { flex: 1; min-width: 200px; }
.intl-romania__content h3 {
  font-family: var(--font-h);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.intl-romania__content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
}
.intl-romania__badge {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Local zone pills inside Romania block */
.intl-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.intl-zone {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 3px;
}
.intl-zone--main {
  color: var(--yellow);
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.3);
}
.intl-zone--more {
  color: rgba(255,255,255,0.4);
  border-style: dashed;
}

.intl-label {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.intl-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light2);
}

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

.intl-card {
  background: var(--light);
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--light2);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.intl-card:hover {
  background: var(--white);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.intl-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background var(--trans);
}
.intl-card:hover::before { background: var(--yellow); }

.intl-card__flag {
  font-size: 34px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.intl-card__info { flex: 1; min-width: 0; }
.intl-card__info strong,
.intl-card__info h4 {
  display: block;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.intl-card__info span {
  display: block;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.intl-card__badge {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  background: rgba(245,166,35,0.12);
  color: var(--yellow2);
  border: 1px solid rgba(245,166,35,0.3);
}
.intl-card__badge--close {
  background: rgba(0,180,80,0.1);
  color: #007a30;
  border-color: rgba(0,180,80,0.3);
}

.intl-card__dist {
  font-family: var(--font-h);
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.intl-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.6;
}
.intl-note strong { color: var(--dark); }

/* Responsive international */
@media (max-width: 1024px) {
  .intl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .intl-romania { padding: 24px 22px; flex-direction: column; align-items: flex-start; }
  .intl-romania::after { right: 16px; font-size: 56px; }
  .intl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .intl-grid { grid-template-columns: 1fr; }
  .intl-card { padding: 16px 14px; }
}

/* === GALERIE FOTO === */
.galerie { background: var(--dark); }
.galerie .section-title { color: var(--white); }
.galerie .section-tag { color: var(--yellow); }
.galerie .section-subtitle { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gallery-grid--single {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}
.gitem--single {
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.gitem--single img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Tall items (span 2 rows) */
.gitem--tall { grid-row: span 2; }

/* Wide items (span 2 cols) */
.gitem--wide { grid-column: span 2; }

.gitem {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #2a2a2a;
  cursor: pointer;
}

/* Actual image */
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gitem:hover img { transform: scale(1.08); }

/* Placeholder state (when image fails to load or no image) */
.gitem--placeholder {
  background: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
  border: 2px dashed rgba(245,166,35,0.25);
  display: flex; align-items: center; justify-content: center;
}
.gitem--placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}
.gitem--placeholder::after {
  content: '📷';
  font-size: 36px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.3;
}

/* Placeholder label */
.gitem--placeholder .gitem__overlay {
  position: absolute;
  inset: 0;
  background: transparent !important;
  opacity: 1 !important;
  display: flex; align-items: flex-end;
  padding: 14px;
}

/* Overlay on hover */
.gitem__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 18px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}
.gitem:hover .gitem__overlay { opacity: 1; }

/* Yellow accent bar on hover */
.gitem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.gitem:hover::after { transform: scaleX(1); }

/* Info bar */
.gallery-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 20px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.gallery-info strong { color: var(--yellow); }

/* Responsive gallery */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gitem--wide { grid-column: span 2; }
  .gitem--tall { grid-row: span 2; }
  .gallery-grid--single {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
  .gitem--single {
    height: 320px !important;
    border-radius: 10px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gitem--wide { grid-column: span 2; }
  .gitem--tall { grid-row: span 1; }
}

/* === CTA BAND === */
.cta-band {
  background: var(--dark); padding: 55px 0;
  border-top: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow);
}
.cta-band__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band__text h3 {
  font-family: var(--font-h); font-size: 26px; font-weight: 700;
  color: var(--white); text-transform: uppercase; margin-bottom: 6px;
}
.cta-band__text p { font-size: 15px; color: rgba(255,255,255,0.5); }

/* === ZONE === */
.zone { background: var(--white); }
.zone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zone-main {
  grid-row: span 2; background: var(--yellow);
  border-radius: 6px; padding: 32px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 10px; box-shadow: var(--shadow);
}
.zone-main h3 {
  font-family: var(--font-h); font-size: 20px; font-weight: 700;
  color: var(--dark); text-transform: uppercase; margin-bottom: 6px;
}
.zone-main p { font-size: 13px; color: rgba(0,0,0,0.6); }
.zone-item {
  background: var(--light); border-radius: 6px; padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 14px; font-weight: 500;
  color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px;
  transition: all var(--trans); border-left: 3px solid transparent;
}
.zone-item:hover {
  background: var(--white); border-left-color: var(--yellow);
  box-shadow: var(--shadow); transform: translateX(4px);
}
.zone-item--plus {
  background: var(--dark); color: var(--yellow); border-left-color: var(--yellow);
}
.zone-item--plus:hover { background: var(--dark3); color: var(--yellow); transform: none; }

/* === CONTACT === */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ccard {
  background: var(--white); border-radius: 6px; padding: 36px 22px;
  text-align: center; box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  border-bottom: 4px solid transparent;
}
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow2); border-bottom-color: var(--yellow); }
.ccard__icon {
  width: 70px; height: 70px; background: rgba(245,166,35,0.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.ccard h3 {
  font-family: var(--font-h); font-size: 17px; font-weight: 600;
  color: var(--dark); text-transform: uppercase;
  margin-bottom: 10px; letter-spacing: 1px;
}
.ccard__value {
  display: block; font-family: var(--font-h); font-size: 17px;
  font-weight: 700; color: var(--yellow2); text-decoration: none;
  margin-bottom: 6px; transition: color var(--trans);
}
a.ccard__value:hover { color: var(--dark); }
.ccard__note { font-size: 13px; color: var(--gray); }

/* === WHATSAPP BANNER === */
.wa-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #1fbe57 0%, #128c3e 100%);
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 36px;
  text-decoration: none;
  color: white;
  box-shadow: 0 6px 28px rgba(18,140,62,0.35);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.wa-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.wa-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(18,140,62,0.5);
}
.wa-banner__icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-banner__text { flex: 1; }
.wa-banner__text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.wa-banner__text span {
  font-size: 13px;
  opacity: 0.85;
}
.wa-banner__num {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  opacity: 0.95;
}
.wa-banner__arrow { opacity: 0.7; flex-shrink: 0; }

@media (max-width: 600px) {
  .wa-banner { flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
  .wa-banner__num { font-size: 18px; }
  .wa-banner__arrow { display: none; }
}

/* === FOOTER === */
.footer { background: var(--dark2); }
.footer__top { padding: 70px 0 50px; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px;
}
.footer__logo {
  display: flex; gap: 10px; font-family: var(--font-h); font-size: 24px;
  font-weight: 700; color: var(--white); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 20px; max-width: 280px;
}
.footer__bigphone {
  font-family: var(--font-h); font-size: 22px; font-weight: 700;
  color: var(--yellow); text-decoration: none; transition: color var(--trans);
}
.footer__bigphone:hover { color: var(--white); }
.footer__col h4 {
  font-family: var(--font-h); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; color: var(--white); text-transform: uppercase;
  margin-bottom: 22px; padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow); display: inline-block;
}
.footer__col a, .footer__col span {
  display: block; font-size: 14px; color: rgba(255,255,255,0.4);
  text-decoration: none; padding: 5px 0; transition: color var(--trans);
}
.footer__col a:hover { color: var(--yellow); }
.footer__bottom { background: #080808; padding: 20px 0; }
.footer__bottom .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer__bottom a { color: var(--yellow); text-decoration: none; }
.footer__bottom a:hover { color: var(--white); }

/* === FLOATING BUTTON === */
.float-btn {
  position: fixed; bottom: 32px; right: 32px;
  width: 58px; height: 58px; background: var(--yellow);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
  z-index: 999; animation: floatPulse 2.5s ease-in-out infinite;
  transition: transform var(--trans), background var(--trans); color: var(--dark);
}
.float-btn:hover { background: var(--yellow2); transform: scale(1.1); animation: none; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(245,166,35,0.5); }
  50%       { box-shadow: 0 6px 42px rgba(245,166,35,0.9); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .counters__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .zone-grid { grid-template-columns: repeat(3, 1fr); }
  .zone-main { grid-row: span 1; }
}
@media (max-width: 768px) {
  .header__nav {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--dark2); padding: 16px 0;
    border-bottom: 3px solid var(--yellow); z-index: 100;
  }
  .header__nav.open { display: flex; }
  .header__nav a { line-height: 1; padding: 14px 28px; border-bottom: none; border-left: 3px solid transparent; }
  .header__nav a:hover { border-left-color: var(--yellow); }
  .header__phone { display: none; }
  .hamburger { display: flex; }
  .hero__truck-scene { height: 140px; }
  .truck-svg { width: 300px; }
  .hero__content { padding: 0; }
  .statsbar { display: none; }
  .despre__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-main { grid-row: span 1; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .counters__grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .zone-main { grid-row: span 1; }
  .counters__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

/* === BARA FIXĂ JOS — dezactivată === */
.mobile-cta-bar { display: none !important; }
@media (max-width: 1024px) {
  .float-btn { display: none; }
  body { padding-bottom: 0; }
}
