/* ═══════════════════════════════════════════════════════════════
   KATO-MINDECLIC — Images & Visual Enhancements
═══════════════════════════════════════════════════════════════ */

/* ── Hero background image ─────────────────────────────────── */
.hero-bg-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-image::after {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=%2FgTxsFLKEky6rpaZS6SIoteVlrdiOHeXurDbeygSaGQA46fX55Ba%2FLSsdWSjbhp6uT8mrPgDEPSQ2jm15yJJ33Q8G1vAoJiG7v%2F5i9S75%2Bc8FbcT%2Bm1uTn%2BLV81mxdMnHTp9ldkkDc2IV2KcKQxMOJ91Gf4gYBh4WzhVdIjjo%2BR7N4ONGOqIJtmsSl26uIxYEao006dY6oKcPPZPwsm1PLaFkHP97vLcFjeY3C6mlJlQnjAslZmvDLz2tzH4yY4BeaD4DcbfbLVmRek8%2BcNa&u2=UJ7RwoKr4Rvu7pIn&width=2560');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.18;
}
.hero-bg-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── News ticker / teaser bar ──────────────────────────────── */
.news-teaser-bar {
  background: var(--gray-800, #161616);
  border-top: 1px solid var(--gray-700, #1e1e1e);
  border-bottom: 1px solid var(--gray-700, #1e1e1e);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.news-teaser-inner {
  max-width: var(--container-max, 1280px);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-teaser-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 20px;
  border-right: 1px solid var(--gray-600, #2a2a2a);
}
.news-teaser-scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}
.news-teaser-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300, #999);
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.news-teaser-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.3);
  padding: 5px 14px;
  transition: all 0.2s ease;
}
.news-teaser-cta:hover { background: var(--gold, #c8a96e); color: #000; }

/* ── Sector image wrap ─────────────────────────────────────── */
.sector-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: -32px;
  margin-right: -32px;
  width: calc(100% + 64px);
  margin-top: -40px;
  position: relative;
}
.sector-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--gray-800, #161616), transparent);
}
.sector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
  transition: filter 0.5s ease, transform 0.5s ease;
  display: block;
}
.sector-card:hover .sector-img-wrap img { filter: brightness(0.65) saturate(1); transform: scale(1.04); }

/* ── Morocco hero image ────────────────────────────────────── */
.morocco-hero-img {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--gray-700, #1e1e1e);
}
.morocco-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65) saturate(0.9);
  display: block;
  transition: transform 0.8s ease;
}
.morocco-hero-img:hover img { transform: scale(1.02); }
.morocco-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.morocco-img-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
}

/* ── Team profile upgrades ─────────────────────────────────── */
.team-titles-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.team-title-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-200, #c8c8c8);
  line-height: 1.4;
}
.team-title-item i {
  color: var(--gold, #c8a96e);
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}
.team-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.team-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.team-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
}
.team-whatsapp:hover { background: #25d366; color: #000; }
.team-wechat {
  background: rgba(9, 187, 7, 0.1);
  border: 1px solid rgba(9, 187, 7, 0.3);
  color: #09bb07;
}
.team-wechat:hover { background: #09bb07; color: #fff; }
.team-contact-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300, #999);
  letter-spacing: 1px;
}

/* ── Responsive overrides ──────────────────────────────────── */
@media (max-width: 900px) {
  .sector-img-wrap { height: 140px; }
  .morocco-hero-img { height: 200px; }
}
@media (max-width: 680px) {
  .news-teaser-inner { padding: 0 16px; gap: 12px; }
  .sector-img-wrap { height: 120px; margin-left: -24px; margin-right: -24px; width: calc(100% + 48px); margin-top: -32px; }
  .team-contact-row { flex-direction: column; align-items: flex-start; }
}
