/* ============================================================
   services.css — Shared styles for K.A'S LIVE service pages
   CSS variables inherited from style.css
   ============================================================ */

/* ── Service Hero ─────────────────────────────────────────── */
.svc-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7,23,47,0.82), rgba(7,23,47,0.7));
  z-index: 0;
}

.svc-hero > * {
  position: relative;
  z-index: 1;
}

.svc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}

.svc-breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.svc-breadcrumb a:hover {
  color: var(--gold);
}

.svc-breadcrumb .sep {
  color: var(--gold);
  font-size: 1rem;
}

.svc-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 800px;
}

.svc-hero .tagline {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Intro Section ────────────────────────────────────────── */
.svc-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.svc-intro-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.72rem;
  margin: 0 0 18px;
  opacity: 0.9;
}

.svc-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 20px;
}

.svc-intro-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.svc-intro-text p:last-child {
  margin-bottom: 0;
}

.svc-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.svc-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.svc-highlights li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23111' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Body text (full-width below intro) ───────────────────── */
.svc-body-text {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 72px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Sub-services Cards ───────────────────────────────────── */
.svc-cards-section {
  background: var(--light);
  padding: 80px 0;
}

.svc-cards-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-cards-section .section-label {
  text-align: center;
  margin-bottom: 46px;
}

.svc-cards-section .section-label .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.72rem;
  margin: 0 0 12px;
  opacity: 0.9;
}

.svc-cards-section .section-label h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-cards.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

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

.svc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,31,63,0.08);
  border: 1px solid #eef1f7;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.svc-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card-body h3 {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.svc-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ── Gallery Strip ────────────────────────────────────────── */
.svc-gallery {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

.svc-gallery .section-label {
  text-align: center;
  margin-bottom: 36px;
}

.svc-gallery .section-label .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.72rem;
  margin: 0 0 10px;
  opacity: 0.9;
}

.svc-gallery .section-label h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.svc-gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(11,31,63,0.2);
}

/* ── Sectors ──────────────────────────────────────────────── */
.svc-sectors {
  background: var(--light);
  padding: 72px 24px;
  text-align: center;
}

.svc-sectors .section-label {
  margin-bottom: 32px;
}

.svc-sectors .section-label .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.72rem;
  margin: 0 0 10px;
  opacity: 0.9;
}

.svc-sectors .section-label h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.svc-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.svc-sector-pills span {
  padding: 12px 20px;
  background: #fff7df;
  border: 1px solid #f7d980;
  border-radius: 999px;
  color: #6b4100;
  font-weight: 800;
  font-size: 0.92rem;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.svc-cta {
  margin: 20px 24px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  padding: 64px 28px;
  text-align: center;
  color: #111;
  max-width: 1132px;
  margin-left: auto;
  margin-right: auto;
}

.svc-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.svc-cta p {
  font-size: 1.05rem;
  margin: 0 0 28px;
  opacity: 0.8;
}

.svc-cta .btn {
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 0.98rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.svc-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11,31,63,0.3);
}

/* ── Page spacer ──────────────────────────────────────────── */
.svc-spacer {
  height: 60px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .svc-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 24px;
  }

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

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

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

  .svc-gallery-grid img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .svc-hero {
    padding: 120px 20px 60px;
    min-height: 55vh;
  }

  .svc-hero h1 {
    font-size: 2rem;
  }

  .svc-cards {
    grid-template-columns: 1fr;
  }

  .svc-cards.cols-2 {
    grid-template-columns: 1fr;
  }

  .svc-cards.cols-4 {
    grid-template-columns: 1fr;
  }

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

  .svc-gallery-grid img {
    height: 160px;
  }

  .svc-intro {
    padding: 56px 20px;
  }

  .svc-cta {
    margin: 20px;
    padding: 48px 20px;
  }
}
