/* ===== INNER PAGES SHARED STYLES ===== */

.page-hero {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: 140px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,168,68,0.1) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ===== POLICY / TERMS CONTENT ===== */
.content-page { padding: 72px 24px; }
.content-page .container-sm { max-width: 820px; }

.content-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}
.content-body h2:first-of-type { margin-top: 0; }

.content-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 10px;
}

.content-body p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.content-body ul, .content-body ol {
  margin: 14px 0 20px 24px;
}
.content-body li {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 8px;
}
.content-body ul li { list-style: disc; }
.content-body ol li { list-style: decimal; }

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

.content-meta {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 36px;
}
.content-meta p { color: var(--gray); font-size: 0.88rem; margin: 0; }

/* ===== SERVICE INNER PAGES ===== */
.service-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.service-hero-bg.loaded { transform: scale(1); }
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.55) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 72px;
  width: 100%;
}
.service-hero-content .hero-badge { margin-bottom: 1rem; }
.service-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.service-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-service { display: flex; gap: 14px; flex-wrap: wrap; }

/* Service features */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sf-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.sf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-pale); }
.sf-card i { color: var(--gold); margin-bottom: 14px; display: block; }
.sf-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.sf-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold-pale); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  border: none;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--light-bg); }
.faq-item.open .faq-question { color: var(--gold); background: var(--light-bg); }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-chevron { background: var(--gold); transform: rotate(180deg); }
.faq-item.open .faq-chevron i { color: var(--white); }
.faq-chevron i { color: var(--navy); transition: var(--transition); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 768px) {
  .service-features-grid { grid-template-columns: 1fr; }
  .service-hero-content { padding-top: 100px; }
}
@media (max-width: 600px) {
  .service-features-grid { grid-template-columns: 1fr; }
}
