/* ==========================================================================
   VIJAY GLOBAL EXPORTS — Services Page
   ========================================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.service-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
}
.service-card .icon-tile { width: 60px; height: 60px; flex-shrink: 0; margin: 0; }
.service-card h3 { margin-bottom: 0.4rem; }
.service-card p { color: var(--color-ink-soft); font-size: 0.93rem; }

/* ---- Capability strip ---- */
.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.capability-strip .stat { background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: var(--space-md); }

/* ---- Packaging options ---- */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.pack-card {
  text-align: center;
  padding: var(--space-md);
}
.pack-card__icon {
  width: 64px; height: 64px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--color-cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}
.pack-card h3 { font-size: 1.02rem; }
.pack-card p { font-size: 0.88rem; color: var(--color-ink-soft); margin-top: 0.3rem; }

/* ---- Logistics steps (horizontal) ---- */
.logi-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  position: relative;
}
.logi-step {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  position: relative;
}
.logi-step__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-blue-dark);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-xs);
}
.logi-step__icon svg { width: 24px; height: 24px; }
.logi-step h4 { font-size: 0.96rem; margin-bottom: 0.2rem; }
.logi-step p { font-size: 0.82rem; color: var(--color-ink-soft); }
.logi-step::after {
  content: "";
  position: absolute;
  top: 50%; right: -22px;
  width: 18px; height: 2px;
  background: var(--color-orange);
}
.logi-step:last-child::after { display: none; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: 1fr; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: 1fr; }
  .logi-steps { grid-template-columns: repeat(2, 1fr); }
  .logi-step::after { display: none; }
}
@media (max-width: 560px) {
  .service-card { flex-direction: column; }
  .logi-steps { grid-template-columns: 1fr; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 200px;
  height: 55px;
  object-fit: contain;
  display: block;
  margin-left: 0%;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 700;
}

.brand__sub {
  font-size: 0.75rem;
  opacity: 0.8;
}
/* ==========================================
   SERVICES PAGE - COMPACT SPACING & FONTS
   ========================================== */

/* Remove large section gaps */
.section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.section--tight {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Section headings */
.section-head {
  margin-bottom: 20px !important;
}

.section-head h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 5px;
}

.section-head .lead {
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-head .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 6px;
}

/* Page Hero */
.page-hero h1 {
  font-size: 2.4rem;
}

.page-hero .lead {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  padding: 18px;
}

.service-card .icon-tile {
  width: 52px;
  height: 52px;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Capability Stats */
.capability-strip .stat {
  padding: 18px;
}

.capability-strip .stat__num {
  font-size: 1.4rem;
}

.capability-strip .stat__label {
  font-size: 0.8rem;
}

/* Packaging Cards */
.pack-card {
  padding: 18px;
}

.pack-card__icon {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}

.pack-card h3 {
  font-size: 1rem;
}

.pack-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Logistics Steps */
.logi-step {
  padding: 18px;
}

.logi-step__icon {
  width: 46px;
  height: 46px;
}

.logi-step__icon svg {
  width: 20px;
  height: 20px;
}

.logi-step h4 {
  font-size: 0.95rem;
}

.logi-step p {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* General card typography */
.card h3 {
  font-size: 1rem;
}

.card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Icons */
.icon-tile {
  width: 52px;
  height: 52px;
}

.icon-tile svg {
  width: 22px;
  height: 22px;
}