/* ============================================================
   NICOTRANS – style.css
   Culori: #F97316 (portocaliu), #1F2937 (gri închis), #FFFFFF
   Font: Poppins (Google Fonts)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #FFFFFF;
  color: #1F2937;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION BASE ---- */
.section {
  padding: 90px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  background: #FFF7ED;
  color: #F97316;
  border: 1px solid #FED7AA;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1rem;
  color: #6B7280;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: #F97316;
  color: #FFFFFF;
  border-color: #F97316;
}
.btn--primary:hover {
  background: #EA6B0E;
  border-color: #EA6B0E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #FFFFFF;
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(17, 24, 39, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.logo__text span {
  color: #F97316;
}

/* NAV */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #D1D5DB;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: #F97316;
  background: rgba(249,115,22,0.08);
}

.nav__link--cta {
  background: #F97316;
  color: #FFFFFF !important;
  padding: 8px 20px;
  border-radius: 6px;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: #EA6B0E !important;
  color: #FFFFFF !important;
}

/* PHONE */
.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #F97316;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.header__phone:hover { opacity: 0.8; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/transport-01.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(31, 41, 55, 0.75) 50%,
    rgba(15, 23, 42, 0.80) 100%
  );
}

/* Road lines animation */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #F97316 0px,
    #F97316 40px,
    transparent 40px,
    transparent 80px
  );
  opacity: 0.6;
  animation: road 2s linear infinite;
}

@keyframes road {
  from { background-position: 0 0; }
  to   { background-position: 80px 0; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: #FB923C;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: #F97316;
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #D1D5DB;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-dot {
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: #111827;
  border-top: 3px solid #F97316;
  padding: 48px 0;
}

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

.stat {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat:last-child::after { display: none; }

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #F97316;
  line-height: 1;
}

.stat__suffix {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #F97316;
}

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #9CA3AF;
  font-weight: 500;
}

/* ============================================================
   SERVICII
   ============================================================ */
.services {
  background: #F9FAFB;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F97316, #FB923C);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: #FED7AA;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  background: #FFF7ED;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 16px;
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__list li {
  font-size: 0.85rem;
  color: #374151;
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #F97316;
  border-radius: 50%;
}

/* ============================================================
   DE CE NOI
   ============================================================ */
.why-us {
  background: #FFFFFF;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border-color: #FED7AA;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  background: #FFF7ED;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.why-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
}

/* ============================================================
   PARCUL AUTO
   ============================================================ */
.fleet {
  background: #111827;
}

.fleet .section__tag { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.3); }
.fleet .section__title { color: #FFFFFF; }
.fleet .section__desc { color: #9CA3AF; }

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: #1F2937;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(249,115,22,0.3);
}

.fleet-card__visual {
  background: #111827;
  padding: 28px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fleet-card__visual svg {
  width: 100%;
  height: auto;
}

.fleet-card__info {
  padding: 20px 24px;
}

.fleet-card__info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.fleet-card__info ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fleet-card__info li {
  font-size: 0.82rem;
  color: #9CA3AF;
}

.fleet-card__info li strong {
  color: #D1D5DB;
  font-weight: 600;
}

/* ============================================================
   DESPRE NOI
   ============================================================ */
.about {
  background: #F9FAFB;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__visual-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.about__badge-float {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F97316;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}

.about__content .section__tag { text-align: left; display: inline-block; }
.about__content .section__title { text-align: left; }

.about__content p {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.about__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about__cui {
  font-size: 0.85rem;
  color: #6B7280;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 16px;
}

.about__cui strong { color: #F97316; }

/* ============================================================
   ZONA DE ACOPERIRE
   ============================================================ */
.coverage {
  background: #FFFFFF;
}

.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.coverage__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.coverage__lists {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.coverage__block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.coverage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage__tags span {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.coverage__tags span:hover {
  background: #FFF7ED;
  border-color: #FED7AA;
  color: #F97316;
}

.coverage__tags .tag--all {
  background: #F97316;
  border-color: #F97316;
  color: #FFFFFF;
  font-weight: 600;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: #F9FAFB;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* FORM */
.contact-form {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1F2937;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
}

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

.form-error {
  font-size: 0.78rem;
  color: #EF4444;
  min-height: 16px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #15803D;
  font-weight: 500;
  margin-top: 16px;
}

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

/* CONTACT INFO */
.contact-info-card {
  background: #1F2937;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item:last-child { margin-bottom: 0; }

.info-item svg { flex-shrink: 0; margin-top: 2px; }

.info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-item a,
.info-item span {
  font-size: 0.9rem;
  color: #E5E7EB;
  transition: color 0.2s;
  display: block;
}

.info-item a:hover { color: #F97316; }

.cui-badge {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: #FB923C !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 4px;
}

/* MAP PLACEHOLDER */
.contact__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.map-placeholder {
  background: #F3F4F6;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
}

.map-placeholder p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.map-placeholder small {
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0F172A;
}

.footer__top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer__brand .logo { margin-bottom: 16px; }
.footer__brand .logo--light .logo__text { color: #FFFFFF; }

.footer__brand p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__cui {
  font-size: 0.78rem;
  color: #F97316;
  font-weight: 600;
  margin-top: 8px !important;
}

.footer__links h4,
.footer__services h4,
.footer__contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer__links ul,
.footer__services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__services a {
  font-size: 0.875rem;
  color: #6B7280;
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__services a:hover {
  color: #F97316;
}

.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6B7280;
}

.footer__contact svg { flex-shrink: 0; color: #6B7280; }
.footer__contact a { color: #6B7280; transition: color 0.2s; }
.footer__contact a:hover { color: #F97316; }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: #4B5563;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #F97316;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #EA6B0E;
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services__grid .fade-in:nth-child(1) { transition-delay: 0s; }
.services__grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services__grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services__grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.why-us__grid .fade-in:nth-child(1) { transition-delay: 0s; }
.why-us__grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.why-us__grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.why-us__grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.why-us__grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.why-us__grid .fade-in:nth-child(6) { transition-delay: 0.4s; }

.fleet__grid .fade-in:nth-child(1) { transition-delay: 0s; }
.fleet__grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.fleet__grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.fleet__grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.stats__grid .fade-in:nth-child(1) { transition-delay: 0s; }
.stats__grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stats__grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stats__grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   GALERIE FOTO
   ============================================================ */
.gallery {
  background: #111827;
}

.gallery .section__tag { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.3); }
.gallery .section__title { color: #FFFFFF; }
.gallery .section__desc { color: #9CA3AF; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #1F2937;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.07);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249, 115, 22, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
  background: rgba(249, 115, 22, 0.35);
}

.gallery__item-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__item-overlay svg {
  transform: scale(1);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox__close:hover { background: rgba(249,115,22,0.6); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover { background: rgba(249,115,22,0.6); transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { background: rgba(249,115,22,0.6); transform: translateY(-50%) translateX(2px); }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1200px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* HEADER */
  .header__phone { display: none; }

  /* Overlay behind sidebar */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .nav-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Sidebar slide-in from right */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 78vw;
    max-width: 300px;
    background: #0F172A;
    border-left: 2px solid rgba(249,115,22,0.2);
    padding: 80px 0 40px;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }

  .nav__link {
    padding: 15px 16px;
    font-size: 1rem;
    border-radius: 8px;
    color: #D1D5DB;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 8px;
    color: #F97316 !important;
    border: none !important;
    border-radius: 8px !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-appearance: none;
    padding: 15px 16px;
    font-size: 1rem;
  }
  .nav__link--cta:hover {
    background: rgba(249,115,22,0.08) !important;
    color: #F97316 !important;
  }

  .burger { display: flex; }

  /* HERO */
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* STATS */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat::after { display: none; }

  /* SERVICES */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* WHY US */
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  /* FLEET */
  .fleet__grid {
    grid-template-columns: 1fr;
  }

  /* GALLERY */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }

  /* FORM */
  .contact-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer__top-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  /* SCROLL TOP */
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
