/* ============================================================
   AD LOGISTICS — SERVICES PAGE
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.adlog-services-hero {
  position: relative;
  background: linear-gradient(180deg, #01070f 0%, #04101c 100%);
  padding: 6rem 2rem;
  overflow: hidden;
}

.adlog-services-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,231,224,0.08), transparent 70%);
  z-index: 0;
  animation: adlog-hero-pulse 8s ease-in-out infinite alternate;
}

.adlog-services-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: 0 auto;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ===== CONTENT ===== */
.adlog-services-hero-content {
  flex: 1;
  min-width: 300px;
  color: #cbd5df;
  animation: adlog-hero-fade-left 1.3s ease-out both;
}

.adlog-services-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-title-gradient 6s linear infinite;
  margin-bottom: 1.2rem;
}

.adlog-services-hero-title span {
  color: #00e7e0;
  text-shadow: 0 0 15px rgba(0,231,224,0.4);
}

.adlog-services-hero-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
  color: #b6c2cc;
}

/* ===== BUTTONS ===== */
.adlog-services-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.adlog-services-hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.adlog-services-hero-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

.adlog-services-hero-btn.alt {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 15px rgba(0,231,224,0.25);
}
.adlog-services-hero-btn.alt:hover {
  background: linear-gradient(90deg, #00e7e0, #0079ff);
  color: #fff;
}

/* ===== IMAGE ===== */
.adlog-services-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: adlog-hero-fade-right 1.3s ease-out both;
}

.adlog-services-hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,231,224,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: adlog-hero-float 7s ease-in-out infinite alternate;
}

.adlog-services-hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(0,231,224,0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes adlog-hero-fade-left {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-hero-fade-right {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-hero-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes adlog-hero-pulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .adlog-services-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .adlog-services-hero-title {
    font-size: 2.2rem;
  }
  .adlog-services-hero-image img {
    max-width: 380px;
  }
}

/* ===== SERVICE SHOWCASE ===== */
.adlog-services-showcase {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #04101c 0%, #01070f 100%);
}

.adlog-service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.adlog-service-block.reverse {
  flex-direction: row-reverse;
}

/* ===== IMAGES ===== */
.adlog-service-img {
  flex: 1;
  min-width: 320px;
  animation: adlog-img-fade 1.2s ease-out both;
}

.adlog-service-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,231,224,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.adlog-service-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 50px rgba(0,231,224,0.3);
}

/* ===== CONTENT ===== */
.adlog-service-content {
  flex: 1;
  min-width: 300px;
  color: #cbd5df;
  animation: adlog-content-fade 1.4s ease-out both;
}

.adlog-service-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-title-gradient 6s linear infinite;
  margin-bottom: 1rem;
}

.adlog-service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #b6c2cc;
}

.adlog-service-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.adlog-service-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 25px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

/* ===== CTA SECTION ===== */
.adlog-services-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #01070f 0%, #04101c 100%);
  color: #cbd5df;
}

.adlog-services-cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-title-gradient 6s linear infinite;
}

.adlog-services-cta p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #b6c2cc;
}

.adlog-services-cta-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.adlog-services-cta-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 25px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes adlog-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}
@keyframes adlog-img-fade {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-content-fade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .adlog-service-block {
    flex-direction: column !important;
    text-align: center;
  }
  .adlog-service-img img {
    max-width: 400px;
  }
}























/* ============================================================
   SHARED SERVICE BUTTONS (so CTAs aren’t purple links)
   ============================================================ */

.adlog-btn-primary,
.adlog-btn-outline {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Filled button */
.adlog-btn-primary {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  border: none;
  box-shadow: 0 0 16px rgba(0, 231, 224, 0.35);
}

.adlog-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0, 231, 224, 0.55);
}

/* Outline button */
.adlog-btn-outline {
  border: 1px solid #00e7e0;
  color: #00e7e0;
  background: transparent;
}

.adlog-btn-outline:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 231, 224, 0.45);
  transform: translateY(-3px);
}

/* ============================================================
   GENERIC SERVICE SECTIONS (used by freight & others)
   ============================================================ */

.svc-section {
  padding: 4rem 2rem;
  background: #020b14;
}

.svc-section.alt {
  background: #04101c;
}

.svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svc-title-gradient 7s linear infinite;
}

@keyframes svc-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.svc-section-text {
  font-size: 1rem;
  color: #cbd5df;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* nice bullet list */
.svc-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  color: #d6e6f4;
  line-height: 1.7;
}

.svc-bullet-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #00e7e0;
}

/* ============================================================
   FREIGHT FORWARDING DETAIL PAGE
   ============================================================ */

/* ---------- HERO ---------- */

.ff-hero {
  background: radial-gradient(circle at 15% 10%, #07263c 0%, #020811 45%, #02060c 100%);
  padding: 5.5rem 2rem 4rem;
  color: #e4edf7;
}

.ff-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.ff-hero-tag {
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #00e7e0;
  margin-bottom: 0.4rem;
}

.ff-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ff-hero-title-gradient 7s linear infinite;
}

.ff-hero-title span {
  display: block;
  font-size: 1.3rem;
}

.ff-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #c3d2e2;
  max-width: 620px;
  margin-bottom: 1.4rem;
}

.ff-hero-points {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  color: #d0e0f0;
}

.ff-hero-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}

.ff-hero-points li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e7e0;
}

.ff-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* right side image + stat cards */

.ff-hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ff-hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 231, 224, 0.3);
}

.ff-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.ff-stat-card {
  background: radial-gradient(circle at top left, rgba(0,231,224,0.35), rgba(4,10,20,0.96));
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0,231,224,0.45);
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  font-size: 0.78rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0,231,224,0.45);
  border-color: rgba(249,178,52,0.75);
}

.ff-stat-label {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #9fb2c6;
}

.ff-stat-value {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.98rem;
  color: #00e7e0;
  margin: 0.1rem 0;
}

.ff-stat-note {
  color: #c3d2e2;
}

@keyframes ff-hero-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* ---------- TOTAL LOGISTICS / OVERVIEW ---------- */

.ff-overview {
  background: #020b14;
}

.ff-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.ff-overview-card {
  background: rgba(5, 14, 24, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(0,231,224,0.3);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 35px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.ff-overview-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  color: #00e7e0;
  margin: 0 0 0.4rem;
}

.ff-overview-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #cbd5df;
  line-height: 1.6;
}

/* ---------- WHY & HIGHLIGHTS ---------- */

.ff-bullets li { line-height: 1.7; }

.ff-highlights {
  background: linear-gradient(180deg, #02101d 0%, #02070f 100%);
}

.ff-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ff-highlight-card {
  background: rgba(5, 14, 24, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(0,231,224,0.28);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-highlight-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  color: #00e7e0;
  margin: 0 0 0.5rem;
}

.ff-highlight-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #d2e4f2;
  line-height: 1.6;
}

.ff-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,178,52,0.75);
  box-shadow: 0 26px 55px rgba(0,231,224,0.55);
}

/* ---------- PROCESS TIMELINE ---------- */

.ff-process {
  background: #020b14;
}

.ff-process-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem;
}

.ff-process-step {
  background: radial-gradient(circle at top left, rgba(0,231,224,0.2), rgba(5,10,18,0.96));
  border-radius: 16px;
  padding: 1.3rem 1.2rem 1.4rem;
  border: 1px solid rgba(0,231,224,0.35);
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(249,178,52,0.8);
  font-size: 0.78rem;
  color: #f9b234;
  margin-bottom: 0.4rem;
}

.ff-process-step h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  color: #00e7e0;
  margin: 0 0 0.4rem;
}

.ff-process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5df;
  line-height: 1.6;
}

.ff-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(249,178,52,0.75);
  box-shadow: 0 26px 55px rgba(0,231,224,0.55);
}

/* ---------- CTA BAND ---------- */

.ff-cta {
  background: linear-gradient(90deg, #02070f, #041626);
  padding: 3.5rem 2rem 4rem;
}

.ff-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ff-cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #00e7e0;
  margin-bottom: 0.6rem;
}

.ff-cta p {
  color: #cbd5df;
  font-size: 0.98rem;
  max-width: 580px;
  margin: 0 auto 1.4rem;
}

.ff-cta-btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ff-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(0,231,224,0.6);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .ff-hero-inner,
  .ff-overview-grid {
    grid-template-columns: 1fr;
  }

  .ff-hero {
    padding: 4.5rem 1.6rem 3.5rem;
  }

  .ff-hero-title {
    font-size: 2.15rem;
  }

  .ff-hero-side {
    align-items: center;
  }
}






























/* ============================================================
   CUSTOMS CLEARANCE DETAIL PAGE – HERO & TOP SECTION
   ============================================================ */

/* ---------- HERO LAYOUT ---------- */

.cc-hero {
  background: radial-gradient(circle at 10% 0%, #07263c 0%, #020812 45%, #01040a 100%);
  padding: 5.5rem 2rem 4rem;
  color: #e4edf7;
}

.cc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

/* left side */

.cc-hero-left {
  min-width: 0;
}

.cc-hero-tag {
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #00e7e0;
  margin-bottom: 0.5rem;
}

.cc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svc-title-gradient 7s linear infinite;
}

.cc-hero-title span {
  display: block;
  font-size: 1.3rem;
}

.cc-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #c3d2e2;
  max-width: 640px;
  margin-bottom: 1.3rem;
}

/* bullet list */

.cc-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  font-size: 0.96rem;
  color: #d0e0f0;
}

.cc-hero-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.cc-hero-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e7e0;
}

.cc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* right side card */

.cc-hero-right {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.cc-hero-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  background: radial-gradient(circle at top left, rgba(0,231,224,0.35), rgba(4,10,20,0.96));
  border: 1px solid rgba(0,231,224,0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.cc-hero-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

/* glow on hover */
.cc-hero-card:hover img {
  transform: scale(1.05);
}

/* stat chips row */

.cc-hero-chip-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  padding-inline: 0.9rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cc-hero-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 7, 15, 0.9);
  border: 1px solid rgba(0,231,224,0.7);
  box-shadow: 0 0 12px rgba(0,231,224,0.5);
  font-size: 0.7rem;
  text-align: center;
}

.chip-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #9fb2c6;
}

.chip-value {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.86rem;
  color: #00e7e0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .cc-hero {
    padding: 4.5rem 1.6rem 3.5rem;
  }

  .cc-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cc-hero-left {
    order: 2;
  }

  .cc-hero-right {
    order: 1;
  }

  .cc-hero-title {
    font-size: 2.2rem;
  }

  .cc-hero-desc,
  .cc-hero-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    text-align: left;
  }

  .cc-hero-ctas {
    justify-content: center;
  }
}
/* ============================================================
   CUSTOMS PROCESS TIMELINE
   ============================================================ */

.cc-process-section {
  background: #020b14;
  padding: 4rem 2rem 4.5rem;
}

.cc-process-section .svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cc-process-section .svc-section-title {
  text-align: left;
}

/* grid for cards */
.cc-process-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

/* individual step card */
.cc-process-step {
  position: relative;
  background: radial-gradient(circle at top left,
              rgba(0, 231, 224, 0.22),
              rgba(5, 10, 18, 0.96));
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid rgba(0, 231, 224, 0.35);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

/* glowing border/halo */
.cc-process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top,
              rgba(249, 178, 52, 0.15),
              transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* number badge */
.cc-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(249, 178, 52, 0.85);
  background: rgba(0, 7, 15, 0.95);
  color: #f9b234;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  box-shadow: 0 0 10px rgba(249, 178, 52, 0.4);
}

/* step title & text */
.cc-process-step h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  color: #00e7e0;
  margin: 0 0 0.45rem;
}

.cc-process-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5df;
}

/* hover effect */
.cc-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 178, 52, 0.8);
  box-shadow: 0 26px 55px rgba(0, 231, 224, 0.55);
  background: radial-gradient(circle at top left,
              rgba(0, 231, 224, 0.28),
              rgba(5, 10, 18, 0.96));
}

.cc-process-step:hover::after {
  opacity: 1;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .cc-process-section {
    padding: 3.5rem 1.6rem 4rem;
  }

  .cc-process-rail {
    gap: 1.3rem;
  }
}

/* ============================================================
   CUSTOMS FAQ ACCORDION
   ============================================================ */

.cc-faq-section {
  background: #01070f;
  padding: 4rem 2rem 4.5rem;
}

.cc-faq-section .svc-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cc-faq-section .svc-section-title {
  text-align: left;
}

.cc-faq-box {
  margin-top: 2rem;
}

/* single item */
.cc-faq-item {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(4, 16, 28, 0.95);
  border: 1px solid rgba(0, 231, 224, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* clickable bar */
.cc-faq-question {
  width: 100%;
  padding: 0.95rem 1.2rem;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  color: #e4edf7;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cc-faq-question span {
  flex: 1;
}

/* chevron icon */
.cc-faq-question::after {
  content: "\f107";          /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95rem;
  color: #00e7e0;
  transition: transform 0.25s ease;
}

/* open state */
.cc-faq-item.open .cc-faq-question {
  background: linear-gradient(
    90deg,
    rgba(0, 231, 224, 0.14),
    rgba(249, 178, 52, 0.12)
  );
  border-bottom: 1px solid rgba(0, 231, 224, 0.5);
}

.cc-faq-item.open .cc-faq-question::after {
  transform: rotate(180deg);
}

/* answer panel */
.cc-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  background: #020b14;
  transition: max-height 0.25s ease;
}

.cc-faq-answer p {
  margin: 0.9rem 0 1rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #cbd5df;
}

/* responsive */
@media (max-width: 768px) {
  .cc-faq-section {
    padding: 3.5rem 1.6rem 4rem;
  }

  .cc-faq-question {
    font-size: 0.95rem;
    padding-inline: 1rem;
  }

  .cc-faq-answer {
    padding-inline: 1rem;
  }
}

/* ============================================================
   CUSTOMS PAGE CTA
   ============================================================ */

.cc-cta {
  background: radial-gradient(circle at top, #04101c 0%, #01070f 55%, #000308 100%);
  padding: 4rem 2rem 4.5rem;
}

.cc-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: rgba(2, 11, 20, 0.96);
  border: 1px solid rgba(0, 231, 224, 0.4);
  box-shadow:
    0 0 30px rgba(0, 231, 224, 0.25),
    0 28px 70px rgba(0, 0, 0, 0.85);
}

.cc-cta-inner h2 {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svc-title-gradient 7s linear infinite;
}

.cc-cta-inner p {
  margin: 0 0 1.7rem;
  font-size: 0.98rem;
  color: #cbd5df;
}

/* button */
.cc-cta-btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  color: #000;
  background: linear-gradient(90deg, #00e7e0, #0079ff, #f9b234);
  background-size: 240%;
  border: none;
  box-shadow:
    0 0 18px rgba(0, 231, 224, 0.6),
    0 0 35px rgba(249, 178, 52, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
}

.cc-cta-btn:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow:
    0 0 26px rgba(0, 231, 224, 0.8),
    0 0 45px rgba(249, 178, 52, 0.6);
}

/* responsive */
@media (max-width: 768px) {
  .cc-cta {
    padding: 3.5rem 1.6rem 4rem;
  }

  .cc-cta-inner {
    padding: 2.1rem 1.5rem;
  }

  .cc-cta-inner h2 {
    font-size: 1.5rem;
  }
}





















































/* =======================================================
   SURFACE TRANSPORTATION PAGE
   Smooth Neon + Premium AD Logistics Look
======================================================== */

/* HERO SECTION */
.svc-transport-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  padding: 5rem 2rem;
  background: linear-gradient(145deg, #020b14, #03101c 70%);
}

.svc-hero-content { flex: 1; }

.svc-hero-tag {
  font-size: 0.85rem;
  color: #00e7e0;
  opacity: 0.9;
}

.svc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  color: #f9b234;
}

.svc-hero-title span {
  display: block;
  font-size: 1.4rem;
  color: #e4edf7;
}

.svc-hero-text {
  color: #cbd5df;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2rem;
}

.svc-hero-btns {
  display: flex;
  gap: 1rem;
}

.svc-btn-primary {
  padding: 0.85rem 1.9rem;
  background: linear-gradient(90deg,#00e7e0,#0079ff,#f9b234);
  background-size: 220%;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.svc-btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
}

.svc-btn-outline {
  padding: 0.85rem 1.9rem;
  border-radius: 25px;
  border: 1px solid #00e7e0;
  text-decoration: none;
  color: #00e7e0;
  transition: 0.3s;
}
.svc-btn-outline:hover {
  background: #00e7e033;
  transform: translateY(-3px);
}

.svc-hero-image img {
  width: 440px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 231, 224, 0.3);
}


/* WHY SECTION */
.transport-why {
  padding: 4rem 2rem;
  background: #01070f;
}

.transport-lead {
  max-width: 800px;
  color: #cbd5df;
  margin-bottom: 2rem;
}

.transport-features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
}

.t-card {
  background: #04101c;
  border: 1px solid rgba(0,231,224,0.25);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px #00000060;
}

.t-card h3 {
  font-family: "Orbitron", sans-serif;
  color: #00e7e0;
  margin-bottom: 0.6rem;
}


/* HIGHLIGHTS */
.transport-highlights {
  padding: 4rem 2rem;
  background: linear-gradient(180deg,#03101c,#01060a);
}

.transport-list {
  list-style: none;
  margin-top: 1.6rem;
  padding-left: 0;
}

.transport-list li {
  padding: 0.6rem 0;
  color: #d7e3ef;
  font-size: 1rem;
}


/* CTA */
.transport-cta {
  background: radial-gradient(circle at top,#04101c 0%,#01070f 90%);
  padding: 4rem 2rem;
  text-align: center;
}

.transport-cta-inner {
  max-width: 700px;
  margin: auto;
  padding: 2.5rem;
  border-radius: 18px;
  background: #020b13;
  border: 1px solid #00e7e05a;
  box-shadow: 0 20px 50px #00000080;
}

.transport-cta-inner h2 {
  font-family: "Orbitron", sans-serif;
  color: #f9b234;
  margin-bottom: 1rem;
}

.transport-cta-inner p {
  color: #cbd5df;
  margin-bottom: 1.5rem;
}

.svc-cta-btn { font-size: 1.05rem; }


/* MOBILE */
@media(max-width:768px) {
  .svc-transport-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .svc-hero-image img {
    width: 100%;
    max-width: 350px;
  }

  .svc-hero-btns {
    justify-content: center;
  }
}
































































/* ==============================================
   WAREHOUSING SERVICE PAGE
   ============================================== */

/* HERO */
.svc-warehouse-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  padding: 5rem 2rem;
  background: linear-gradient(145deg, #020b14 0%, #04101c 60%, #020812 100%);
}

.svc-hero-content { flex: 1; }

.svc-hero-tag {
  font-size: 0.85rem;
  color: #00e7e0;
  opacity: 0.9;
}

.svc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  color: #f9b234;
}

.svc-hero-title span {
  display: block;
  font-size: 1.4rem;
  color: #e4edf7;
}

.svc-hero-text {
  color: #cbd5df;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 2rem;
}

.svc-hero-btns {
  display: flex;
  gap: 1rem;
}

.svc-btn-primary {
  padding: 0.85rem 1.9rem;
  background: linear-gradient(90deg,#00e7e0,#0079ff,#f9b234);
  background-size: 220%;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.svc-btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,231,224,0.7);
}

.svc-btn-outline {
  padding: 0.85rem 1.9rem;
  border-radius: 25px;
  border: 1px solid #00e7e0;
  text-decoration: none;
  color: #00e7e0;
  transition: 0.3s;
}
.svc-btn-outline:hover {
  background: #00e7e030;
  transform: translateY(-3px);
}

.svc-hero-image img {
  width: 440px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 28px rgba(0, 231, 224, 0.35);
}

/* WHY SECTION */
.wh-why {
  padding: 4rem 2rem;
  background: #01070f;
}

.wh-lead {
  max-width: 820px;
  color: #cbd5df;
  margin-bottom: 2rem;
}

.wh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.wh-card {
  background: #04101c;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.3);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8);
}

.wh-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #00e7e0;
}

.wh-card p {
  margin: 0;
  color: #d0dde9;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CAPABILITIES */
.wh-capabilities {
  padding: 4rem 2rem;
  background: linear-gradient(180deg,#03101c,#01060a);
}

.wh-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1.8rem;
}

.wh-cap-block {
  background: #020b14;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.85);
}

.wh-cap-block h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  color: #f9b234;
}

.wh-cap-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.wh-cap-block li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: #d5e0ec;
}

/* CTA */
.wh-cta {
  padding: 4rem 2rem 4.5rem;
  background: radial-gradient(circle at top,#04101c 0%,#01070f 90%);
}

.wh-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: #020b13;
  border: 1px solid rgba(0,231,224,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}

.wh-cta-inner h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.9rem;
  color: #f9b234;
  margin-bottom: 0.8rem;
}

.wh-cta-inner p {
  color: #cbd5df;
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}

.wh-cta-btn {
  font-size: 1.02rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .svc-warehouse-hero {
    flex-direction: column;
    text-align: center;
  }

  .svc-hero-btns {
    justify-content: center;
  }
}






























































/* ===================================================
   DOCUMENTATION & COMPLIANCE SERVICE PAGE
   =================================================== */

/* HERO */
.svc-doc-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  gap: 3rem;
  background: linear-gradient(145deg, #020b14 0%, #04101c 60%, #020812 100%);
}

.svc-hero-content { flex: 1; }

.svc-hero-tag {
  font-size: 0.85rem;
  color: #00e7e0;
}

.svc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  color: #f9b234;
}

.svc-hero-title span {
  display: block;
  font-size: 1.4rem;
  color: #e1edf9;
}

.svc-hero-text {
  color: #cbd5df;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
}

.svc-hero-btns {
  display: flex;
  gap: 1rem;
}

/* Cards at WHY section */
.doc-why {
  padding: 4rem 2rem;
  background: #01070f;
}

.doc-lead {
  color: #d4ddea;
  max-width: 820px;
  margin-bottom: 2rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.doc-card {
  background: #04101c;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.3);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8);
}

.doc-card h3 {
  color: #00e7e0;
  margin-bottom: 0.6rem;
  font-family: "Orbitron", sans-serif;
}

.doc-card p {
  color: #d6e1eb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CAPABILITIES */
.doc-services {
  padding: 4rem 2rem;
  background: linear-gradient(180deg,#03101c,#01060a);
}

.doc-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.doc-service-block {
  background: #020b13;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.85);
}

.doc-service-block h3 {
  color: #f9b234;
  margin-bottom: 0.5rem;
  font-family: "Orbitron", sans-serif;
}

.doc-service-block ul {
  list-style: none;
  padding: 0;
}

.doc-service-block li {
  padding: 0.45rem 0;
  color: #d4e0ec;
  font-size: 0.95rem;
}

/* CTA */
.doc-cta {
  padding: 4rem 2rem;
  background: radial-gradient(circle at top,#04101c,#01070f);
}

.doc-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.4rem 2rem;
  background: #020b13;
  border-radius: 20px;
  border: 1px solid rgba(0,231,224,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}

.doc-cta-inner h2 {
  font-family: "Orbitron", sans-serif;
  color: #f9b234;
  margin-bottom: 0.8rem;
}

.doc-cta-inner p {
  color: #cbd5df;
  margin-bottom: 1.6rem;
}

.doc-cta-btn {
  font-size: 1.02rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .svc-doc-hero {
    flex-direction: column;
    text-align: center;
  }
  .svc-hero-btns { justify-content: center; }
}











































































/* ============================================================
   AD LOGISTICS — SERVICES PAGE
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.adlog-services-hero {
  position: relative;
  background: linear-gradient(180deg, #01070f 0%, #04101c 100%);
  padding: 6rem 2rem;
  overflow: hidden;
}

.adlog-services-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,231,224,0.08), transparent 70%);
  z-index: 0;
  animation: adlog-hero-pulse 8s ease-in-out infinite alternate;
}

.adlog-services-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: 0 auto;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ===== CONTENT ===== */
.adlog-services-hero-content {
  flex: 1;
  min-width: 300px;
  color: #cbd5df;
  animation: adlog-hero-fade-left 1.3s ease-out both;
}

.adlog-services-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-title-gradient 6s linear infinite;
  margin-bottom: 1.2rem;
}

.adlog-services-hero-title span {
  color: #00e7e0;
  text-shadow: 0 0 15px rgba(0,231,224,0.4);
}

.adlog-services-hero-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
  color: #b6c2cc;
}

/* ===== BUTTONS ===== */
.adlog-services-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.adlog-services-hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.adlog-services-hero-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

.adlog-services-hero-btn.alt {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 15px rgba(0,231,224,0.25);
}
.adlog-services-hero-btn.alt:hover {
  background: linear-gradient(90deg, #00e7e0, #0079ff);
  color: #fff;
}

/* ===== IMAGE ===== */
.adlog-services-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: adlog-hero-fade-right 1.3s ease-out both;
}

.adlog-services-hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,231,224,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: adlog-hero-float 7s ease-in-out infinite alternate;
}

.adlog-services-hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(0,231,224,0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes adlog-hero-fade-left {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-hero-fade-right {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-hero-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes adlog-hero-pulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .adlog-services-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .adlog-services-hero-title {
    font-size: 2.2rem;
  }
  .adlog-services-hero-image img {
    max-width: 380px;
  }
}

/* ===== SERVICE SHOWCASE ===== */
.adlog-services-showcase {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #04101c 0%, #01070f 100%);
}

.adlog-service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.adlog-service-block.reverse {
  flex-direction: row-reverse;
}

/* ===== IMAGES ===== */
.adlog-service-img {
  flex: 1;
  min-width: 320px;
  animation: adlog-img-fade 1.2s ease-out both;
}

.adlog-service-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,231,224,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.adlog-service-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 50px rgba(0,231,224,0.3);
}

/* ===== CONTENT ===== */
.adlog-service-content {
  flex: 1;
  min-width: 300px;
  color: #cbd5df;
  animation: adlog-content-fade 1.4s ease-out both;
}

.adlog-service-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-title-gradient 6s linear infinite;
  margin-bottom: 1rem;
}

.adlog-service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #b6c2cc;
}

.adlog-service-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.adlog-service-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 25px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

/* ===== CTA SECTION ===== */
.adlog-services-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #01070f 0%, #04101c 100%);
  color: #cbd5df;
}

.adlog-services-cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-title-gradient 6s linear infinite;
}

.adlog-services-cta p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #b6c2cc;
}

.adlog-services-cta-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.adlog-services-cta-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 25px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes adlog-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}
@keyframes adlog-img-fade {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-content-fade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .adlog-service-block {
    flex-direction: column !important;
    text-align: center;
  }
  .adlog-service-img img {
    max-width: 400px;
  }
}























/* ============================================================
   SHARED SERVICE BUTTONS (so CTAs aren’t purple links)
   ============================================================ */

.adlog-btn-primary,
.adlog-btn-outline {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Filled button */
.adlog-btn-primary {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  border: none;
  box-shadow: 0 0 16px rgba(0, 231, 224, 0.35);
}

.adlog-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0, 231, 224, 0.55);
}

/* Outline button */
.adlog-btn-outline {
  border: 1px solid #00e7e0;
  color: #00e7e0;
  background: transparent;
}

.adlog-btn-outline:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 231, 224, 0.45);
  transform: translateY(-3px);
}

/* ============================================================
   GENERIC SERVICE SECTIONS (used by freight & others)
   ============================================================ */

.svc-section {
  padding: 4rem 2rem;
  background: #020b14;
}

.svc-section.alt {
  background: #04101c;
}

.svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svc-title-gradient 7s linear infinite;
}

@keyframes svc-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.svc-section-text {
  font-size: 1rem;
  color: #cbd5df;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* nice bullet list */
.svc-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  color: #d6e6f4;
  line-height: 1.7;
}

.svc-bullet-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #00e7e0;
}

/* ============================================================
   FREIGHT FORWARDING DETAIL PAGE
   ============================================================ */

/* ---------- HERO ---------- */

.ff-hero {
  background: radial-gradient(circle at 15% 10%, #07263c 0%, #020811 45%, #02060c 100%);
  padding: 5.5rem 2rem 4rem;
  color: #e4edf7;
}

.ff-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.ff-hero-tag {
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #00e7e0;
  margin-bottom: 0.4rem;
}

.ff-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ff-hero-title-gradient 7s linear infinite;
}

.ff-hero-title span {
  display: block;
  font-size: 1.3rem;
}

.ff-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #c3d2e2;
  max-width: 620px;
  margin-bottom: 1.4rem;
}

.ff-hero-points {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  color: #d0e0f0;
}

.ff-hero-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}

.ff-hero-points li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e7e0;
}

.ff-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* right side image + stat cards */

.ff-hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ff-hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 231, 224, 0.3);
}

.ff-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.ff-stat-card {
  background: radial-gradient(circle at top left, rgba(0,231,224,0.35), rgba(4,10,20,0.96));
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0,231,224,0.45);
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  font-size: 0.78rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0,231,224,0.45);
  border-color: rgba(249,178,52,0.75);
}

.ff-stat-label {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #9fb2c6;
}

.ff-stat-value {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.98rem;
  color: #00e7e0;
  margin: 0.1rem 0;
}

.ff-stat-note {
  color: #c3d2e2;
}

@keyframes ff-hero-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* ---------- TOTAL LOGISTICS / OVERVIEW ---------- */

.ff-overview {
  background: #020b14;
}

.ff-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.ff-overview-card {
  background: rgba(5, 14, 24, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(0,231,224,0.3);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 35px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.ff-overview-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  color: #00e7e0;
  margin: 0 0 0.4rem;
}

.ff-overview-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #cbd5df;
  line-height: 1.6;
}

/* ---------- WHY & HIGHLIGHTS ---------- */

.ff-bullets li { line-height: 1.7; }

.ff-highlights {
  background: linear-gradient(180deg, #02101d 0%, #02070f 100%);
}

.ff-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ff-highlight-card {
  background: rgba(5, 14, 24, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(0,231,224,0.28);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-highlight-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  color: #00e7e0;
  margin: 0 0 0.5rem;
}

.ff-highlight-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #d2e4f2;
  line-height: 1.6;
}

.ff-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,178,52,0.75);
  box-shadow: 0 26px 55px rgba(0,231,224,0.55);
}

/* ---------- PROCESS TIMELINE ---------- */

.ff-process {
  background: #020b14;
}

.ff-process-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem;
}

.ff-process-step {
  background: radial-gradient(circle at top left, rgba(0,231,224,0.2), rgba(5,10,18,0.96));
  border-radius: 16px;
  padding: 1.3rem 1.2rem 1.4rem;
  border: 1px solid rgba(0,231,224,0.35);
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ff-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(249,178,52,0.8);
  font-size: 0.78rem;
  color: #f9b234;
  margin-bottom: 0.4rem;
}

.ff-process-step h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  color: #00e7e0;
  margin: 0 0 0.4rem;
}

.ff-process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5df;
  line-height: 1.6;
}

.ff-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(249,178,52,0.75);
  box-shadow: 0 26px 55px rgba(0,231,224,0.55);
}

/* ---------- CTA BAND ---------- */

.ff-cta {
  background: linear-gradient(90deg, #02070f, #041626);
  padding: 3.5rem 2rem 4rem;
}

.ff-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ff-cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #00e7e0;
  margin-bottom: 0.6rem;
}

.ff-cta p {
  color: #cbd5df;
  font-size: 0.98rem;
  max-width: 580px;
  margin: 0 auto 1.4rem;
}

.ff-cta-btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ff-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(0,231,224,0.6);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .ff-hero-inner,
  .ff-overview-grid {
    grid-template-columns: 1fr;
  }

  .ff-hero {
    padding: 4.5rem 1.6rem 3.5rem;
  }

  .ff-hero-title {
    font-size: 2.15rem;
  }

  .ff-hero-side {
    align-items: center;
  }
}






























/* ============================================================
   CUSTOMS CLEARANCE DETAIL PAGE – HERO & TOP SECTION
   ============================================================ */

/* ---------- HERO LAYOUT ---------- */

.cc-hero {
  background: radial-gradient(circle at 10% 0%, #07263c 0%, #020812 45%, #01040a 100%);
  padding: 5.5rem 2rem 4rem;
  color: #e4edf7;
}

.cc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

/* left side */

.cc-hero-left {
  min-width: 0;
}

.cc-hero-tag {
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #00e7e0;
  margin-bottom: 0.5rem;
}

.cc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svc-title-gradient 7s linear infinite;
}

.cc-hero-title span {
  display: block;
  font-size: 1.3rem;
}

.cc-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #c3d2e2;
  max-width: 640px;
  margin-bottom: 1.3rem;
}

/* bullet list */

.cc-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  font-size: 0.96rem;
  color: #d0e0f0;
}

.cc-hero-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.cc-hero-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e7e0;
}

.cc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* right side card */

.cc-hero-right {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.cc-hero-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  background: radial-gradient(circle at top left, rgba(0,231,224,0.35), rgba(4,10,20,0.96));
  border: 1px solid rgba(0,231,224,0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.cc-hero-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

/* glow on hover */
.cc-hero-card:hover img {
  transform: scale(1.05);
}

/* stat chips row */

.cc-hero-chip-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  padding-inline: 0.9rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cc-hero-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 7, 15, 0.9);
  border: 1px solid rgba(0,231,224,0.7);
  box-shadow: 0 0 12px rgba(0,231,224,0.5);
  font-size: 0.7rem;
  text-align: center;
}

.chip-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #9fb2c6;
}

.chip-value {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.86rem;
  color: #00e7e0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .cc-hero {
    padding: 4.5rem 1.6rem 3.5rem;
  }

  .cc-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cc-hero-left {
    order: 2;
  }

  .cc-hero-right {
    order: 1;
  }

  .cc-hero-title {
    font-size: 2.2rem;
  }

  .cc-hero-desc,
  .cc-hero-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    text-align: left;
  }

  .cc-hero-ctas {
    justify-content: center;
  }
}
/* ============================================================
   CUSTOMS PROCESS TIMELINE
   ============================================================ */

.cc-process-section {
  background: #020b14;
  padding: 4rem 2rem 4.5rem;
}

.cc-process-section .svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cc-process-section .svc-section-title {
  text-align: left;
}

/* grid for cards */
.cc-process-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

/* individual step card */
.cc-process-step {
  position: relative;
  background: radial-gradient(circle at top left,
              rgba(0, 231, 224, 0.22),
              rgba(5, 10, 18, 0.96));
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid rgba(0, 231, 224, 0.35);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

/* glowing border/halo */
.cc-process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top,
              rgba(249, 178, 52, 0.15),
              transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* number badge */
.cc-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(249, 178, 52, 0.85);
  background: rgba(0, 7, 15, 0.95);
  color: #f9b234;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  box-shadow: 0 0 10px rgba(249, 178, 52, 0.4);
}

/* step title & text */
.cc-process-step h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  color: #00e7e0;
  margin: 0 0 0.45rem;
}

.cc-process-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5df;
}

/* hover effect */
.cc-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 178, 52, 0.8);
  box-shadow: 0 26px 55px rgba(0, 231, 224, 0.55);
  background: radial-gradient(circle at top left,
              rgba(0, 231, 224, 0.28),
              rgba(5, 10, 18, 0.96));
}

.cc-process-step:hover::after {
  opacity: 1;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .cc-process-section {
    padding: 3.5rem 1.6rem 4rem;
  }

  .cc-process-rail {
    gap: 1.3rem;
  }
}

/* ============================================================
   CUSTOMS FAQ ACCORDION
   ============================================================ */

.cc-faq-section {
  background: #01070f;
  padding: 4rem 2rem 4.5rem;
}

.cc-faq-section .svc-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cc-faq-section .svc-section-title {
  text-align: left;
}

.cc-faq-box {
  margin-top: 2rem;
}

/* single item */
.cc-faq-item {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(4, 16, 28, 0.95);
  border: 1px solid rgba(0, 231, 224, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* clickable bar */
.cc-faq-question {
  width: 100%;
  padding: 0.95rem 1.2rem;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  color: #e4edf7;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cc-faq-question span {
  flex: 1;
}

/* chevron icon */
.cc-faq-question::after {
  content: "\f107";          /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95rem;
  color: #00e7e0;
  transition: transform 0.25s ease;
}

/* open state */
.cc-faq-item.open .cc-faq-question {
  background: linear-gradient(
    90deg,
    rgba(0, 231, 224, 0.14),
    rgba(249, 178, 52, 0.12)
  );
  border-bottom: 1px solid rgba(0, 231, 224, 0.5);
}

.cc-faq-item.open .cc-faq-question::after {
  transform: rotate(180deg);
}

/* answer panel */
.cc-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  background: #020b14;
  transition: max-height 0.25s ease;
}

.cc-faq-answer p {
  margin: 0.9rem 0 1rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #cbd5df;
}

/* responsive */
@media (max-width: 768px) {
  .cc-faq-section {
    padding: 3.5rem 1.6rem 4rem;
  }

  .cc-faq-question {
    font-size: 0.95rem;
    padding-inline: 1rem;
  }

  .cc-faq-answer {
    padding-inline: 1rem;
  }
}

/* ============================================================
   CUSTOMS PAGE CTA
   ============================================================ */

.cc-cta {
  background: radial-gradient(circle at top, #04101c 0%, #01070f 55%, #000308 100%);
  padding: 4rem 2rem 4.5rem;
}

.cc-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: rgba(2, 11, 20, 0.96);
  border: 1px solid rgba(0, 231, 224, 0.4);
  box-shadow:
    0 0 30px rgba(0, 231, 224, 0.25),
    0 28px 70px rgba(0, 0, 0, 0.85);
}

.cc-cta-inner h2 {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svc-title-gradient 7s linear infinite;
}

.cc-cta-inner p {
  margin: 0 0 1.7rem;
  font-size: 0.98rem;
  color: #cbd5df;
}

/* button */
.cc-cta-btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  color: #000;
  background: linear-gradient(90deg, #00e7e0, #0079ff, #f9b234);
  background-size: 240%;
  border: none;
  box-shadow:
    0 0 18px rgba(0, 231, 224, 0.6),
    0 0 35px rgba(249, 178, 52, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
}

.cc-cta-btn:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow:
    0 0 26px rgba(0, 231, 224, 0.8),
    0 0 45px rgba(249, 178, 52, 0.6);
}

/* responsive */
@media (max-width: 768px) {
  .cc-cta {
    padding: 3.5rem 1.6rem 4rem;
  }

  .cc-cta-inner {
    padding: 2.1rem 1.5rem;
  }

  .cc-cta-inner h2 {
    font-size: 1.5rem;
  }
}





















































/* =======================================================
   SURFACE TRANSPORTATION PAGE
   Smooth Neon + Premium AD Logistics Look
======================================================== */

/* HERO SECTION */
.svc-transport-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  padding: 5rem 2rem;
  background: linear-gradient(145deg, #020b14, #03101c 70%);
}

.svc-hero-content { flex: 1; }

.svc-hero-tag {
  font-size: 0.85rem;
  color: #00e7e0;
  opacity: 0.9;
}

.svc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  color: #f9b234;
}

.svc-hero-title span {
  display: block;
  font-size: 1.4rem;
  color: #e4edf7;
}

.svc-hero-text {
  color: #cbd5df;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2rem;
}

.svc-hero-btns {
  display: flex;
  gap: 1rem;
}

.svc-btn-primary {
  padding: 0.85rem 1.9rem;
  background: linear-gradient(90deg,#00e7e0,#0079ff,#f9b234);
  background-size: 220%;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.svc-btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
}

.svc-btn-outline {
  padding: 0.85rem 1.9rem;
  border-radius: 25px;
  border: 1px solid #00e7e0;
  text-decoration: none;
  color: #00e7e0;
  transition: 0.3s;
}
.svc-btn-outline:hover {
  background: #00e7e033;
  transform: translateY(-3px);
}

.svc-hero-image img {
  width: 440px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 231, 224, 0.3);
}


/* WHY SECTION */
.transport-why {
  padding: 4rem 2rem;
  background: #01070f;
}

.transport-lead {
  max-width: 800px;
  color: #cbd5df;
  margin-bottom: 2rem;
}

.transport-features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
}

.t-card {
  background: #04101c;
  border: 1px solid rgba(0,231,224,0.25);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px #00000060;
}

.t-card h3 {
  font-family: "Orbitron", sans-serif;
  color: #00e7e0;
  margin-bottom: 0.6rem;
}


/* HIGHLIGHTS */
.transport-highlights {
  padding: 4rem 2rem;
  background: linear-gradient(180deg,#03101c,#01060a);
}

.transport-list {
  list-style: none;
  margin-top: 1.6rem;
  padding-left: 0;
}

.transport-list li {
  padding: 0.6rem 0;
  color: #d7e3ef;
  font-size: 1rem;
}


/* CTA */
.transport-cta {
  background: radial-gradient(circle at top,#04101c 0%,#01070f 90%);
  padding: 4rem 2rem;
  text-align: center;
}

.transport-cta-inner {
  max-width: 700px;
  margin: auto;
  padding: 2.5rem;
  border-radius: 18px;
  background: #020b13;
  border: 1px solid #00e7e05a;
  box-shadow: 0 20px 50px #00000080;
}

.transport-cta-inner h2 {
  font-family: "Orbitron", sans-serif;
  color: #f9b234;
  margin-bottom: 1rem;
}

.transport-cta-inner p {
  color: #cbd5df;
  margin-bottom: 1.5rem;
}

.svc-cta-btn { font-size: 1.05rem; }


/* MOBILE */
@media(max-width:768px) {
  .svc-transport-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .svc-hero-image img {
    width: 100%;
    max-width: 350px;
  }

  .svc-hero-btns {
    justify-content: center;
  }
}
































































/* ==============================================
   WAREHOUSING SERVICE PAGE
   ============================================== */

/* HERO */
.svc-warehouse-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  padding: 5rem 2rem;
  background: linear-gradient(145deg, #020b14 0%, #04101c 60%, #020812 100%);
}

.svc-hero-content { flex: 1; }

.svc-hero-tag {
  font-size: 0.85rem;
  color: #00e7e0;
  opacity: 0.9;
}

.svc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  color: #f9b234;
}

.svc-hero-title span {
  display: block;
  font-size: 1.4rem;
  color: #e4edf7;
}

.svc-hero-text {
  color: #cbd5df;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 2rem;
}

.svc-hero-btns {
  display: flex;
  gap: 1rem;
}

.svc-btn-primary {
  padding: 0.85rem 1.9rem;
  background: linear-gradient(90deg,#00e7e0,#0079ff,#f9b234);
  background-size: 220%;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.svc-btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,231,224,0.7);
}

.svc-btn-outline {
  padding: 0.85rem 1.9rem;
  border-radius: 25px;
  border: 1px solid #00e7e0;
  text-decoration: none;
  color: #00e7e0;
  transition: 0.3s;
}
.svc-btn-outline:hover {
  background: #00e7e030;
  transform: translateY(-3px);
}

.svc-hero-image img {
  width: 440px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 28px rgba(0, 231, 224, 0.35);
}

/* WHY SECTION */
.wh-why {
  padding: 4rem 2rem;
  background: #01070f;
}

.wh-lead {
  max-width: 820px;
  color: #cbd5df;
  margin-bottom: 2rem;
}

.wh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.wh-card {
  background: #04101c;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.3);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8);
}

.wh-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #00e7e0;
}

.wh-card p {
  margin: 0;
  color: #d0dde9;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CAPABILITIES */
.wh-capabilities {
  padding: 4rem 2rem;
  background: linear-gradient(180deg,#03101c,#01060a);
}

.wh-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1.8rem;
}

.wh-cap-block {
  background: #020b14;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.85);
}

.wh-cap-block h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  color: #f9b234;
}

.wh-cap-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.wh-cap-block li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: #d5e0ec;
}

/* CTA */
.wh-cta {
  padding: 4rem 2rem 4.5rem;
  background: radial-gradient(circle at top,#04101c 0%,#01070f 90%);
}

.wh-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: #020b13;
  border: 1px solid rgba(0,231,224,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}

.wh-cta-inner h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.9rem;
  color: #f9b234;
  margin-bottom: 0.8rem;
}

.wh-cta-inner p {
  color: #cbd5df;
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}

.wh-cta-btn {
  font-size: 1.02rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .svc-warehouse-hero {
    flex-direction: column;
    text-align: center;
  }

  .svc-hero-btns {
    justify-content: center;
  }
}






























































/* ===================================================
   DOCUMENTATION & COMPLIANCE SERVICE PAGE
   =================================================== */

/* HERO */
.svc-doc-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  gap: 3rem;
  background: linear-gradient(145deg, #020b14 0%, #04101c 60%, #020812 100%);
}

.svc-hero-content { flex: 1; }

.svc-hero-tag {
  font-size: 0.85rem;
  color: #00e7e0;
}

.svc-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  color: #f9b234;
}

.svc-hero-title span {
  display: block;
  font-size: 1.4rem;
  color: #e1edf9;
}

.svc-hero-text {
  color: #cbd5df;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
}

.svc-hero-btns {
  display: flex;
  gap: 1rem;
}

/* Cards at WHY section */
.doc-why {
  padding: 4rem 2rem;
  background: #01070f;
}

.doc-lead {
  color: #d4ddea;
  max-width: 820px;
  margin-bottom: 2rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.doc-card {
  background: #04101c;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.3);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8);
}

.doc-card h3 {
  color: #00e7e0;
  margin-bottom: 0.6rem;
  font-family: "Orbitron", sans-serif;
}

.doc-card p {
  color: #d6e1eb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CAPABILITIES */
.doc-services {
  padding: 4rem 2rem;
  background: linear-gradient(180deg,#03101c,#01060a);
}

.doc-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.doc-service-block {
  background: #020b13;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,231,224,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.85);
}

.doc-service-block h3 {
  color: #f9b234;
  margin-bottom: 0.5rem;
  font-family: "Orbitron", sans-serif;
}

.doc-service-block ul {
  list-style: none;
  padding: 0;
}

.doc-service-block li {
  padding: 0.45rem 0;
  color: #d4e0ec;
  font-size: 0.95rem;
}

/* CTA */
.doc-cta {
  padding: 4rem 2rem;
  background: radial-gradient(circle at top,#04101c,#01070f);
}

.doc-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.4rem 2rem;
  background: #020b13;
  border-radius: 20px;
  border: 1px solid rgba(0,231,224,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}

.doc-cta-inner h2 {
  font-family: "Orbitron", sans-serif;
  color: #f9b234;
  margin-bottom: 0.8rem;
}

.doc-cta-inner p {
  color: #cbd5df;
  margin-bottom: 1.6rem;
}

.doc-cta-btn {
  font-size: 1.02rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .svc-doc-hero {
    flex-direction: column;
    text-align: center;
  }
  .svc-hero-btns { justify-content: center; }
}











/* ================= KPI SECTION ================= */
.adlog-kpi-section {
  padding: 100px 6%;
  background: linear-gradient(145deg, #020b12, #031826);
}

.adlog-kpi-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.adlog-kpi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.adlog-kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.adlog-kpi-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  color: #00e7e0;
  margin-bottom: 10px;
}

.adlog-kpi-card p {
  font-size: 15px;
  color: #cfdbe0;
  letter-spacing: 0.4px;
}
