/* ── Clickable What We Do cards (index.html) ─────────────── */
a.destination__card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border-radius: 1rem;
}

a.destination__card--link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42, 99, 170, 0.18);
}

a.destination__card--link img {
  transition: transform 0.4s ease;
}

a.destination__card--link:hover img {
  transform: scale(1.04);
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: gap 0.3s;
}

a.destination__card--link:hover .card__cta {
  gap: 0.7rem;
}

/* ── Services page ───────────────────────────────────────── */

/* Hero */
.srv__hero {
  margin-top: 5rem;
  padding: 6rem 1rem 5rem;
  background: linear-gradient(
    135deg,
    var(--brand-blue-to) 0%,
    var(--brand-blue-from) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.srv__hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 55px;
  background: var(--extra-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.srv__hero__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
  border-radius: 5rem;
}

.srv__hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.srv__hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.srv__hero__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.srv__tab {
  padding: 0.55rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.srv__tab:hover,
.srv__tab.active {
  color: var(--brand-blue-to);
  background: var(--white);
  border-color: var(--white);
}

/* Section shell */
.srv__section {
  background: var(--white);
}

.srv__section--alt {
  background: var(--extra-light);
}

/* Section header banner */
.srv__section__header {
  padding: 4rem 1rem 3rem;
}

.srv__section__header--sourcing {
  background: linear-gradient(120deg, #1a237e 0%, #2a63aa 100%);
}
.srv__section__header--supply {
  background: linear-gradient(120deg, #004314 0%, #009218 100%);
}
.srv__section__header--consulting {
  background: linear-gradient(120deg, #37474f 0%, #546e7a 100%);
}

.srv__section__title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.srv__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.75rem;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

.srv__section__title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.srv__section__title p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.srv__section__desc {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
}

/* Products container */
.srv__products__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

/* Individual product card */
.srv__product {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.srv__section--alt .srv__product {
  background: var(--white);
}

.srv__product:hover {
  box-shadow: 0 8px 32px rgba(42, 99, 170, 0.1);
}

.srv__product__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--extra-light);
  background: rgba(42, 99, 170, 0.03);
}

.srv__section--alt .srv__product__header {
  background: rgba(0, 146, 24, 0.03);
}

.srv__product__header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
  color: var(--primary-color);
  background: rgba(42, 99, 170, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.srv__section--alt .srv__product__header span {
  color: #009218;
  background: rgba(0, 146, 24, 0.08);
}

.srv__product__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.srv__product__body {
  padding: 2rem;
}

.srv__product__body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.srv__product__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.srv__product__body ul li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.srv__product__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.srv__section--alt .srv__product__body ul li::before {
  background: #009218;
}

.srv__label {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin-bottom: 0.5rem !important;
}

/* Sub-sections inside a product */
.srv__sub {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px dashed var(--extra-light);
}

.srv__sub:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.srv__sub h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.srv__section--alt .srv__sub h4 {
  color: #009218;
}

/* Category grid inside product */
.srv__categories__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

.srv__cat {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 3px solid var(--primary-color);
  background: rgba(42, 99, 170, 0.03);
  border-radius: 0 0.75rem 0.75rem 0;
}

.srv__section--alt .srv__cat {
  border-left-color: #009218;
  background: rgba(0, 146, 24, 0.03);
}

.srv__cat h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.srv__cat h5 i {
  color: var(--primary-color);
  font-size: 1rem;
}

.srv__section--alt .srv__cat h5 i {
  color: #009218;
}

.srv__cat p,
.srv__cat ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.srv__cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.3rem;
}

.srv__cat ul li {
  padding-left: 1.2rem;
  position: relative;
}

/* .srv__cat ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-light);
} */

/* CTA strip */
.srv__cta {
  background: linear-gradient(
    135deg,
    var(--brand-blue-from) 0%,
    var(--brand-blue-to) 100%
  );
  padding: 5rem 1rem;
  text-align: center;
}

.srv__cta__content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.srv__cta__content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.srv__cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  color: var(--brand-blue-to);
  background: var(--white);
  border-radius: 5rem;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}

.srv__cta__btn:hover {
  background: var(--brand-green);
  color: var(--brand-green-to);
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (width > 540px) {
  .srv__categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  .srv__hero {
    margin-top: 0;
    padding: 8rem 1rem 5rem;
  }

  .srv__categories__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 1024px) {
  .srv__categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv__categories__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Consulting — Value Proposition & Target Clients cards ── */
.srv__product--wide {
  grid-column: 1 / -1;
}

.srv__value__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.6rem 2rem;
}

.srv__value__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.srv__value__list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
