/* ══════════════════════════════════════════════════════
   UMS LOGISTICS — INNER PAGE STYLES
   Shared across all service pages
   ══════════════════════════════════════════════════════ */

/* ── Page top padding (nav offset) ── */
body { padding-top: 72px; }

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color var(--t);
  margin-bottom: 28px;
}
.back-link:hover { color: var(--gold-light); }
.back-link i { font-size: 11px; }

/* ══════════════════════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(15%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3,8,15,0.92) 0%,
    rgba(3,8,15,0.55) 60%,
    rgba(3,8,15,0.2) 100%
  );
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--navy-dark), transparent);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 64px var(--section-x) 72px;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.page-hero-tag i { font-size: 11px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 640px;
}
.page-hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Hero quick badges ── */
.hero-quick-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-quick-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.hero-quick-stat i { font-size: 15px; color: var(--gold); }
.hero-quick-stat strong { color: var(--white); font-weight: 700; }

/* ══════════════════════════════════════════════════════
   OVERVIEW SECTION
   ══════════════════════════════════════════════════════ */
.page-overview {
  background: var(--white);
  padding: var(--section-y) var(--section-x);
}
.page-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.overview-text .section-eyebrow { color: var(--gold); }
.overview-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.overview-text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 32px;
}
.overview-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  position: relative;
}
.overview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(212,146,10,0.18);
  border-radius: inherit;
  pointer-events: none;
}
.overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════════════ */
.page-features {
  background: var(--gray-50);
  padding: var(--section-y) var(--section-x);
}
.page-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-features-header {
  text-align: center;
  margin-bottom: 56px;
}
.page-features-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-features-header p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-100);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.feature-icon i { font-size: 22px; color: var(--gold); transition: color var(--t); }
.feature-card:hover .feature-icon i { color: #03080f; }
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   IDEAL FOR SECTION
   ══════════════════════════════════════════════════════ */
.page-ideal {
  background: var(--navy);
  padding: var(--section-y) var(--section-x);
  position: relative;
  overflow: hidden;
}
.page-ideal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-ideal-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-ideal .section-eyebrow { color: var(--gold-light); }
.page-ideal .section-title { color: var(--white); margin-bottom: 8px; }
.page-ideal-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.7;
}
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ideal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: all var(--t-slow);
}
.ideal-card:hover {
  background: rgba(212,146,10,0.08);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.ideal-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ideal-card-icon i { font-size: 18px; color: var(--gold); }
.ideal-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ideal-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   EQUIPMENT / SPECS SECTION
   ══════════════════════════════════════════════════════ */
.page-equipment {
  background: var(--white);
  padding: var(--section-y) var(--section-x);
}
.page-equipment-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.equipment-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.equipment-intro h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.equipment-intro p {
  font-size: 0.96rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.specs-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.specs-list li i {
  font-size: 15px;
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.specs-list li strong { font-weight: 700; margin-right: 4px; }

/* Equipment cards row */
.equipment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.equipment-card {
  background: var(--navy-dark);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--t-slow);
}
.equipment-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.equipment-card-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.equipment-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.equipment-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   SERVICE CTA BANNER
   ══════════════════════════════════════════════════════ */
.service-cta-section {
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy) 100%);
  padding: 80px var(--section-x);
  position: relative;
  overflow: hidden;
}
.service-cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,146,10,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.service-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.service-cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.service-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.7;
}
.service-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.service-cta-btns .btn-primary { white-space: nowrap; }
.service-cta-btns .btn-outline { white-space: nowrap; }

/* ── btn-nav as anchor ── */
a.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .overview-img { max-width: 560px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .ideal-grid { grid-template-columns: 1fr 1fr; }
  .equipment-intro { grid-template-columns: 1fr; gap: 32px; }
  .equipment-cards { grid-template-columns: 1fr 1fr; }
  .service-cta-inner { flex-direction: column; text-align: center; }
  .service-cta-text p { margin: 0 auto; }
  .service-cta-btns { justify-content: center; }
}
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .page-hero { min-height: 420px; }
  .hero-quick-stats { gap: 16px; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .ideal-grid { grid-template-columns: 1fr 1fr; }
  .equipment-cards { grid-template-columns: 1fr; }
  .service-cta-btns { flex-direction: column; width: 100%; }
  .service-cta-btns .btn-primary,
  .service-cta-btns .btn-outline { justify-content: center; }
}
@media (max-width: 480px) {
  .ideal-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGE (Privacy Policy / Terms of Service)
   ══════════════════════════════════════════════════════ */
.legal-body {
  background: var(--white);
  padding: 64px var(--section-x) 96px;
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legal-meta i { color: var(--gold); }
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.legal-section h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
}
.legal-section p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.legal-section ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.legal-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.legal-contact-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-top: 16px;
}
.legal-contact-box p { margin: 0 0 6px; }
.legal-contact-box a { color: var(--gold); font-weight: 600; }
.legal-contact-box a:hover { color: var(--navy); }
