/*
 * Mena Group — shared styles for sector pages
 * (shipping, defence, hospitality, construction)
 * Kept in one file so the four pages stay visually identical and the CSS
 * is cached once across them.
 */

/* Capability panel — replaces the photo used on the service pages, so a
   sector without dedicated photography still gets a solid right-hand column. */
.sector-panel {
  background: linear-gradient(135deg, #1A2340 0%, #263457 100%);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 10px 40px rgba(26, 35, 64, 0.16);
}

.sector-panel h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.sector-panel > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0 0 18px;
}

.sector-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sector-point:last-child { padding-bottom: 0; }

.sector-point i {
  color: #FF3907;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sector-point strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.sector-point span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Interlink cards — cross-references to the related service pages */
.link-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 14px;
  padding: 26px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(26, 35, 64, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  border-color: #FF3907;
  box-shadow: 0 14px 34px rgba(26, 35, 64, 0.15);
}

.link-card .lc-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 57, 7, 0.12);
  color: #FF3907;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.link-card h4 {
  color: #1A2340;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.link-card p {
  color: #6c757d;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.link-card .lc-more {
  color: #FF3907;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-card .lc-more i { transition: transform 0.25s ease; }
.link-card:hover .lc-more i { transform: translateX(4px); }
