/* ══════════════════════════════════════════
   SERVICE PAGE STYLES
   Shared by all individual service pages
   ══════════════════════════════════════════ */

/* ── SERVICE HERO ── */
.service-hero {
  padding: 160px 5% 100px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(13, 31, 60, 0.91) 50%, rgba(9, 21, 36, 0.95) 100%);
  background-blend-mode: multiply;
}

/* Hero image slider */
.service-hero-slider {
  background: none !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.55) 0%, rgba(13, 31, 60, 0.45) 50%, rgba(9, 21, 36, 0.55) 100%);
  z-index: 1;
}

.service-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.service-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb .sep {
  color: var(--gold);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--gold);
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.service-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.service-hero-sub {
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

.service-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SERVICE OVERVIEW ── */
.service-overview {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.overview-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.overview-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.overview-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* ── FEATURES LIST ── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.feature-item:first-child {
  border-top: 1px solid var(--border);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-icon svg {
  width: 16px;
  height: 16px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SIDEBAR CARD ── */
.sidebar-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--gold);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-stat:last-of-type {
  border-bottom: none;
}

.sidebar-stat span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sidebar-stat span:last-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.sidebar-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-cta .btn-primary,
.sidebar-cta .btn-outline {
  text-align: center;
  width: 100%;
  padding: 0.9rem;
}

/* ── PRICING TABLE ── */
.pricing-section {
  padding: 100px 0;
  background: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.pricing-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}

.pricing-card:hover {
  background: var(--navy-light);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.pricing-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.pricing-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── OTHER SERVICES ── */
.other-services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.other-service-card {
  background: var(--navy-mid);
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.other-service-card:hover {
  background: var(--navy-light);
}

.other-service-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.other-service-card .card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}

.other-service-card .card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.other-service-card .card-link {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .service-hero {
    padding: 120px 5% 60px;
    min-height: auto;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sidebar-card {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .other-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 100px 4% 50px;
  }

  .service-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-hero-actions .btn-primary,
  .service-hero-actions .btn-outline {
    text-align: center;
    width: 100%;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    padding: 1.8rem 1.2rem;
  }
}

/* ── FLOATING CALL + WHATSAPP BUTTONS ── */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-buttons .call-btn,
.floating-buttons .wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-buttons .call-btn {
  background: var(--gold);
}

.floating-buttons .wa-btn {
  background: #25D366;
}

.floating-buttons .call-btn:hover,
.floating-buttons .wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}

.floating-buttons .call-btn svg,
.floating-buttons .wa-btn svg {
  width: 26px;
  height: 26px;
}

[dir="rtl"] .floating-buttons {
  right: auto;
  left: 24px;
}

@media (max-width: 400px) {
  .service-hero {
    padding: 90px 3% 40px;
  }

  .service-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .sidebar-card {
    padding: 1.4rem 0.9rem;
  }

  .floating-buttons {
    bottom: 0.6rem;
    right: 0.5rem;
  }

  [dir="rtl"] .floating-buttons {
    right: auto;
    left: 0.5rem;
  }

  .floating-buttons .call-btn,
  .floating-buttons .wa-btn {
    width: 38px;
    height: 38px;
  }

  .floating-buttons .call-btn svg,
  .floating-buttons .wa-btn svg {
    width: 18px;
    height: 18px;
  }
}