/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,168,83,0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin: 0.4rem 0 1rem; }
.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ACTIVE NAV LINK ===== */
.nav-active { color: var(--gold) !important; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.gallery-card { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card.hidden { display: none; }

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-white);
  border-radius: var(--radius);
}
.gallery-card--wide .gallery-img-wrap { aspect-ratio: 16/7; }

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #F1EEE9 0%, #E8E4DE 100%);
  transition: opacity 0.3s ease;
}
.placeholder-icon {
  width: 56px; height: 56px;
  color: var(--gold);
  opacity: 0.7;
}
.placeholder-icon svg { width: 100%; height: 100%; }
.gallery-placeholder p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.gallery-placeholder span {
  font-size: 0.72rem;
  color: var(--mid-gray);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-card:hover .gallery-placeholder { opacity: 0.3; }
.gallery-overlay h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.gallery-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0.75rem 0 0;
}
.gallery-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: var(--off-white);
  border-radius: 50px;
  color: var(--text-light);
  font-weight: 600;
}

/* Gallery CTA */
.gallery-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-top: 1rem;
}
.gallery-cta-inner { max-width: 480px; margin: 0 auto; }
.gallery-cta-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.gallery-cta h3 { color: var(--white); margin-bottom: 0.5rem; }
.gallery-cta p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 1.5rem; }
.gallery-cta a[href*="contact"] { color: var(--gold); }

/* ===== SOLUTIONS GRID ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid #E8E4DE;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all var(--transition);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.solution-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
  opacity: 0.5;
  line-height: 1;
}
.solution-icon { font-size: 1.8rem; }
.solution-card h3 { font-size: 1.15rem; }
.solution-card > p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.solution-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}
.process-num {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-serif);
  margin: 0 auto 1rem;
}
.process-step h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1rem; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.55; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  margin-top: 1rem;
  flex-shrink: 0;
}

/* ===== SOLUTIONS CTA ===== */
.solutions-cta {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid #E8E4DE;
}
.solutions-cta h2 { margin-bottom: 0.6rem; }
.solutions-cta p { color: var(--text-light); margin-bottom: 2rem; }
.solutions-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card--wide { grid-column: span 2; }
  .process-arrow { display: none; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--wide { grid-column: span 1; }
  .page-hero { padding: 7rem 0 3rem; }
}
