/* =====================================================
   PRESTIGE CONSULTANTS — service-page.css
   Shared styles for all individual service pages
   ===================================================== */

/* ===== SERVICE HERO ===== */
.service-hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 96px;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
}
.service-hero-bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,138,4,0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: heroGlow 6s ease-in-out infinite;
}
.service-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51,65,85,0.6) 0%, transparent 70%);
  filter: blur(60px);
}
.service-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.08) translate(20px,-15px); }
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { flex-shrink: 0; }
.breadcrumb span { color: var(--gold-light); }

.service-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202,138,4,0.15);
  border: 1px solid rgba(202,138,4,0.3);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.service-hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-hero-title em { color: var(--gold-light); font-style: italic; }

.service-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.service-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-hero-badges {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.badge-icon {
  width: 40px; height: 40px;
  background: rgba(202,138,4,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.badge-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ===== OVERVIEW SECTION ===== */
.service-overview {
  background: var(--white);
  padding: 96px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-content .section-tag { text-align: left; display: block; }
.overview-content .section-title { text-align: left; }
.overview-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.highlight-item svg { color: var(--gold); flex-shrink: 0; }

.overview-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.overview-card:hover {
  border-color: rgba(202,138,4,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.overview-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  transition: var(--transition);
}
.overview-card:hover .overview-card-icon {
  background: var(--gold);
  color: var(--white);
}
.overview-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.overview-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== INCLUDES (WHAT WE PROVIDE) ===== */
.service-includes {
  background: var(--bg);
  padding: 96px 0;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.include-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.include-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.include-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(202,138,4,0.2);
}
.include-card:hover::after { transform: scaleX(1); }

.include-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 42px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.include-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
}
.include-card:hover .include-icon {
  background: var(--gold);
  color: var(--white);
}

.include-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.include-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== SERVICE PROCESS ===== */
.service-process-section {
  background: var(--navy);
  padding: 96px 0;
}

.service-process-section .section-title { color: var(--white); }
.service-process-section .section-sub { color: rgba(255,255,255,0.55); }
.service-process-section .section-tag { color: var(--gold-light); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  counter-reset: step-counter;
}

.timeline-step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  text-align: left;
  counter-increment: step-counter;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.timeline-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(202,138,4,0.3);
  transform: translateY(-4px);
}

/* Ghost step number */
.timeline-step::before {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Bodoni Moda', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(202,138,4,0.1);
  line-height: 1;
  pointer-events: none;
}

/* Connector arrow between cards */
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(202,138,4,0.45);
  border-right: 2px solid rgba(202,138,4,0.45);
  transform: rotate(45deg);
  z-index: 2;
}

.timeline-dot {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(202,138,4,0.12);
  border: 1px solid rgba(202,138,4,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-light);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(202,138,4,0.35);
}

.timeline-step h4 {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.timeline-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}

/* ===== BENEFITS SECTION ===== */
.service-benefits {
  background: var(--bg-2);
  padding: 96px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.benefit-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-item:hover {
  border-color: rgba(202,138,4,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.benefit-item:hover .benefit-icon {
  background: var(--gold);
  color: var(--white);
}

.benefit-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== SERVICE FAQ ===== */
.service-faq-section {
  background: var(--white);
  padding: 96px 0;
}

/* ===== SERVICE REVIEWS ===== */
.service-reviews {
  background: var(--white);
  padding: 96px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(202,138,4,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-quote {
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 18px;
  line-height: 0;
}

.review-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  font-family: 'Bodoni Moda', serif;
}

.review-info {
  flex: 1;
  min-width: 0;
}
.review-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.review-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE CTA BANNER ===== */
.service-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, #0F172A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,138,4,0.15) 0%, transparent 70%);
  filter: blur(60px);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner-content h2 em { color: var(--gold-light); }
.cta-banner-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RELATED SERVICES ===== */
.related-services {
  background: var(--bg);
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .timeline-step:not(:last-child)::after { display: none; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .service-hero-badges { display: none; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .service-hero { padding: 140px 0 72px; }
  .includes-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .service-hero-title { font-size: 36px; }
  .service-hero-desc { font-size: 16px; }
}
