/* transport */
/* ===== HEADER FIX ===== */
body:not(.home-page) #site-header {
  background: rgba(13,13,13,.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.4) !important;
}

/* ===== DROPDOWN MENU ===== */
#main-nav ul li.has-dropdown { position: relative; }
#main-nav ul li.has-dropdown > a { display: flex; align-items: center; gap: 6px; }
#main-nav ul li.has-dropdown > a i { font-size: .65rem; transition: transform .25s; }
#main-nav ul li.has-dropdown:hover > a i { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  z-index: 999;
  border-top: 3px solid var(--red);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0 !important; }
.dropdown li a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 18px !important;
  color: #444 !important;
  font-size: .88rem !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: all .2s !important;
  white-space: nowrap;
}
.dropdown li a i { color: var(--red); font-size: .85rem; width: 16px; }
.dropdown li a:hover { background: rgba(221,25,26,.06) !important; color: var(--red) !important; padding-left: 22px !important; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 3px solid var(--red);
    background: rgba(255,255,255,.05);
    padding: 4px 0;
    margin: 4px 0 4px 12px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,.7) !important; padding: 8px 14px !important; }
  .dropdown li a:hover { color: #fff !important; background: transparent !important; }
}

/* ===== TRANSPORT HERO ===== */
.transport-hero {
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0d0d0d;
}
.air-hero  { background-image: linear-gradient(135deg, #0d0d0d, #1a0000); }
.road-hero { background-image: linear-gradient(135deg, #0d0d0d, #001a0d); }
.sea-hero  { background-image: linear-gradient(135deg, #0d0d0d, #001020); }

.air-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=60') center/cover;
  opacity: .15;
}
.road-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=60') center/cover;
  opacity: .15;
}
.sea-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=60') center/cover;
  opacity: .15;
}
.transport-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,.97) 0%, rgba(13,13,13,.7) 60%, transparent 100%);
}
.transport-hero-content {
  position: relative; z-index: 2;
  padding-top: 180px; padding-bottom: 60px;
  max-width: 760px;
}
.transport-hero-content .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.transport-hero-content .breadcrumb a { color: #666; font-size: .8rem; transition: color .3s; }
.transport-hero-content .breadcrumb a:hover { color: var(--red); }
.transport-hero-content .breadcrumb i { color: #444; font-size: .65rem; }
.transport-hero-content .breadcrumb span { color: #888; font-size: .8rem; }
.transport-hero-icon {
  width: 64px; height: 64px;
  background: rgba(221,25,26,.15); border: 1px solid rgba(221,25,26,.3);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--red); margin-bottom: 18px;
}
.transport-hero-content h1 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 16px; }
.transport-hero-content p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 580px; margin-bottom: 28px; }
.transport-hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden; max-width: 480px;
}
.ths-item {
  flex: 1; padding: 14px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 3px;
}
.ths-item:last-child { border-right: none; }
.ths-item span { color: #fff; font-size: 1rem; font-weight: 800; line-height: 1; }
.ths-item small { color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; }

/* WhatsApp button large */
.btn-whatsapp.btn-lg-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 16px 32px;
  border-radius: 6px; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: background .3s;
}
.btn-whatsapp.btn-lg-wa:hover { background: #1da851; color: #fff; }

/* ===== TRANSPORT LAYOUT ===== */
.transport-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; align-items: flex-start;
  padding: 60px 0 80px;
}
.transport-main { min-width: 0; }
.transport-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #f0f0f0; }
.transport-section:last-child { border-bottom: none; margin-bottom: 0; }
.transport-section h2 { font-size: 1.4rem; margin-bottom: 16px; color: var(--black); }
.transport-section p { color: #555; font-size: .95rem; line-height: 1.8; margin-bottom: 14px; }
.transport-section ul { list-style: none; padding: 0; margin-bottom: 16px; }
.transport-section ul li {
  display: flex; gap: 10px; align-items: flex-start;
  color: #555; font-size: .9rem; line-height: 1.7; margin-bottom: 8px;
}
.transport-section ul li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--red); border-radius: 50%; margin-top: 8px;
}

/* Services grid */
.transport-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ts-card {
  border: 1px solid #ebebeb; border-radius: 10px; padding: 22px;
  transition: all .3s;
}
.ts-card:hover { border-color: rgba(221,25,26,.3); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.ts-icon {
  width: 44px; height: 44px; background: rgba(221,25,26,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; margin-bottom: 14px;
  transition: all .3s;
}
.ts-card:hover .ts-icon { background: var(--red); color: #fff; }
.ts-card h3 { font-size: .92rem; margin-bottom: 8px; }
.ts-card p { font-size: .82rem; color: #666; margin: 0; line-height: 1.6; }

/* ===== SIDEBAR ===== */
.transport-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.transport-cta-widget {
  background: var(--black); border-radius: 12px; padding: 24px;
}
.transport-cta-widget h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.transport-cta-widget p { color: #888; font-size: .85rem; margin-bottom: 16px; }
.transport-contact-widget, .transport-links-widget {
  background: #fff; border: 1px solid #ebebeb; border-radius: 12px; padding: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .transport-layout { grid-template-columns: 1fr; }
  .transport-sidebar { position: static; }
}
@media (max-width: 768px) {
  .transport-hero-content { padding-top: 160px; }
  .transport-services-grid { grid-template-columns: 1fr; }
  .transport-hero-stats { flex-wrap: wrap; }
  .ths-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
}
