/* ══════════════════════════════════════════════
   FAYOMA SIGNS — services.css
   Place in: css/services.css
   Works together with styles.css
══════════════════════════════════════════════ */

/* ── NAVBAR SOLID (reused from about.css) ── */
.navbar-solid {
  position: relative;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 60px;
}

/* ══════════════════════════════════════════════
   PAGE HERO BANNER
══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-signage.jpg') center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.7) 100%);
  z-index: 1;
}

.page-hero-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  box-shadow: 0 0 30px 6px rgba(245,168,0,0.3);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--gold); }

.page-hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fade-up 0.7s 0.1s ease both;
}

.page-hero-content h1 span { color: var(--gold); }

.page-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  animation: fade-up 0.7s 0.25s ease both;
}


/* ══════════════════════════════════════════════
   SERVICES PAGE GRID
══════════════════════════════════════════════ */
.services-page-section {
  padding: 90px 0;
  background: var(--dark);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── SERVICE CARD ── */
.svc-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.svc-card:hover {
  border-color: rgba(245,168,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.svc-card--new {
  border-color: rgba(245,168,0,0.25);
}

/* Image container */
.svc-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

/* Dark gradient over image */
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.7) 0%, transparent 60%);
  z-index: 1;
}

/* Service number */
.svc-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(10,15,30,0.7);
  border: 1px solid rgba(245,168,0,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* New badge */
.svc-new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* Card body */
.svc-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.svc-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: color 0.2s;
  line-height: 1.2;
}

.svc-card:hover .svc-body h3 { color: var(--gold); }

.svc-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  flex: 1;
}

/* CTA Button */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.35);
  color: var(--gold);
  padding: 11px 20px;
  border-radius: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  align-self: flex-start;
  margin-top: 6px;
}

.svc-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.svc-btn svg { transition: transform 0.2s; }
.svc-btn:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════ */
.services-cta-strip {
  padding: 70px 0;
  background: linear-gradient(135deg, #0d1420 0%, var(--navy) 100%);
  border-top: 1px solid rgba(245,168,0,0.12);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-strip-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

.cta-strip-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════
   INNER SERVICE PAGE STYLES
══════════════════════════════════════════════ */

/* Service detail hero */
.service-detail-hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.service-detail-hero .page-hero-bg {
  opacity: 0.15;
}

/* Description block */
.service-description {
  padding: 80px 0 60px;
  background: var(--dark);
}

.service-description-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-desc-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.service-desc-text h2 span { color: var(--gold); }

.service-desc-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Quote CTA on inner page */
.service-quote-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Stats on right side of description */
.service-desc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.desc-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.desc-stat:hover { border-color: rgba(245,168,0,0.3); }

.desc-stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.desc-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery section */
.service-gallery {
  padding: 80px 0;
  background: var(--navy);
}

.service-gallery .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.service-gallery .section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-gallery .section-header h2 span { color: var(--gold); }

.service-gallery .section-header p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* First item spans 2 columns — hero image */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  filter: brightness(0.85);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item--large img { min-height: 420px; }

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.65);
}

/* Zoom icon on hover */
.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* Bottom CTA on inner pages */
.service-bottom-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #0d1420 0%, var(--navy) 100%);
  border-top: 1px solid rgba(245,168,0,0.12);
  text-align: center;
}

.service-bottom-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-bottom-cta h2 span { color: var(--gold); }

.service-bottom-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-bottom: 32px;
}

.service-bottom-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-description-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--large img { min-height: 280px; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════ */
@media (max-width: 768px) {

  .navbar-solid { padding: 14px 24px; }
  .page-hero-content { padding: 0 24px; }

  .services-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .svc-img { height: 200px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item--large {
    grid-column: span 2;
  }

  .gallery-item--large img { min-height: 220px; }
  .gallery-item img { min-height: 150px; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }

  .service-bottom-cta-btns { flex-direction: column; align-items: center; }

  .service-desc-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-page-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .service-desc-stats { grid-template-columns: 1fr 1fr; }
}