/* Inner pages */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 60%),
    var(--black-soft);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

.page-section { padding: 80px 0; }
.page-section.alt { background: var(--black-soft); }

.content-block {
  max-width: 800px;
  margin: 0 auto 40px;
}

.content-block h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.content-block p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Service detail */
.service-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0 60px;
}

.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow);
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-info h2 {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.service-detail-info .icon-big {
  font-size: 3rem;
  margin-bottom: 16px;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.detail-feature {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.detail-feature:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.detail-feature h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 6px; }
.detail-feature p { color: var(--gray); font-size: 0.85rem; }

/* Services list page */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.service-row:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }

.service-row-img { height: 280px; overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.service-row:hover .service-row-img img { transform: scale(1.06); }

.service-row-body { padding: 32px; }
.service-row-body h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; }
.service-row-body p { color: var(--gray-light); margin-bottom: 20px; }

/* Preview cards on homepage */
.preview-section { padding: 80px 0; }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.preview-card {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.preview-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.35); }
.preview-card img { width: 100%; height: 180px; object-fit: cover; }
.preview-card-body { padding: 20px; }
.preview-card-body h3 { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }
.preview-card-body p { color: var(--gray); font-size: 0.85rem; margin-bottom: 16px; }
.preview-link { color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; }

.section-cta { text-align: center; margin-top: 40px; }

/* About page team/stats */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  aspect-ratio: 4/5;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1100px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .service-detail-hero,
  .service-row,
  .about-full-grid { grid-template-columns: 1fr; }
  .service-row:nth-child(even) { direction: ltr; }
  .preview-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
}
