
/* ── HERO BANNER ────────────────────────────────────────────── */
.services-hero {
  background: linear-gradient(160deg, #05202f 0%, #082b47 55%, #0d4a78 100%);
  padding: 90px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.services-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c 35%, #e8c97a 60%, transparent);
}

.services-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.services-eyebrow {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.30em;
  color: #c9a84c;
  margin-bottom: 18px;
}

.services-hero-inner h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  position: relative;
  display: inline-block;
}

.services-hero-inner h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #c9a84c;
  margin: 16px auto 0;
}

.services-hero-inner p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-top: 22px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── INTRO STAT STRIP ───────────────────────────────────────── */
.services-intro-strip {
  background: #ffffff;
  border-bottom: 1px solid #ede9e0;
  padding: 32px 20px;
}

.intro-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.intro-stat strong {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #082b47;
  line-height: 1;
  letter-spacing: -0.02em;
}

.intro-stat span {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aab0bc;
}

.intro-divider {
  width: 1px;
  height: 36px;
  background: #e2ddd4;
  flex-shrink: 0;
}

/* ── SERVICE SECTIONS ───────────────────────────────────────── */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

/* Alternating: reverse puts image on right */
.service-section--reverse {
  direction: rtl;
}

.service-section--reverse > * {
  direction: ltr;
}

/* Alternate background colors */
.service-section:nth-child(odd) {
  background: #faf8f4;
}

.service-section:nth-child(even) {
  background: #ffffff;
}

/* ── IMAGE COLUMN ───────────────────────────────────────────── */
.service-image-col {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.88);
}

.service-section:hover .service-img-wrap img {
  transform: scale(1.04);
}

/* Gradient overlay on image */
.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,43,71,0.35) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.service-section--reverse .service-img-wrap::after {
  background: linear-gradient(
    to left,
    rgba(8,43,71,0.35) 0%,
    transparent 60%
  );
}

/* Image badge */
.service-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(5,32,47,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.4);
  color: #c9a84c;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.service-section--reverse .service-img-badge {
  left: auto;
  right: 24px;
}

/* Fallback when image fails */
.img-fallback {
  background: linear-gradient(135deg, #082b47, #0d4a78);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CONTENT COLUMN ─────────────────────────────────────────── */
.service-content-col {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Gold left border accent */
.service-content-col::before {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, #c9a84c 30%, #e8c97a 70%, transparent);
  border-radius: 2px;
}

.service-section--reverse .service-content-col::before {
  left: auto;
  right: 0;
}

.svc-number {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 4rem;
  font-weight: 600;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
  letter-spacing: -0.02em;
}

.svc-tag {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 14px;
  display: block;
}

.service-content-col h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #082b47;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.svc-lead {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #4a5568;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Feature list */
.svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.svc-features li {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.svc-features li i {
  color: #c9a84c;
  font-size: 11px;
  flex-shrink: 0;
}

/* CTA row */
.svc-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
  color: #05202f;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  border: none;
  box-shadow: 0 8px 24px rgba(201,168,76,0.28);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.svc-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #dbb85a 0%, #b08838 100%);
  box-shadow: 0 14px 36px rgba(201,168,76,0.4);
  color: #05202f;
  text-decoration: none;
}

.svc-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #082b47;
  text-decoration: none;
  border-bottom: 1.5px solid #c9a84c;
  padding-bottom: 2px;
  transition: color 0.2s, letter-spacing 0.2s;
  letter-spacing: 0.02em;
}

.svc-link:hover {
  color: #c9a84c;
  letter-spacing: 0.06em;
}

/* ── ADD-ON SERVICES GRID ───────────────────────────────────── */
.addons-section {
  background: #082b47;
  padding: 100px 10%;
  position: relative;
  overflow: hidden;
}

.addons-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.addons-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.addons-header {
  text-align: center;
  margin-bottom: 60px;
}

.addons-header h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 12px 0 16px;
  position: relative;
  display: inline-block;
}

.addons-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #c9a84c;
  margin: 14px auto 0;
}

.addons-header p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.addon-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px;
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.addon-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.addon-card:hover::before {
  transform: scaleX(1);
}

.addon-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
}

.addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c9a84c;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}

.addon-card:hover .addon-icon {
  background: rgba(201,168,76,0.2);
  transform: scale(1.1) rotate(-4deg);
}

.addon-card h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.addon-card p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin: 0;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.services-cta-band {
  background: #faf8f4;
  border-top: 1px solid #ede9e0;
  border-bottom: 1px solid #ede9e0;
  padding: 80px 20px;
  text-align: center;
}

.services-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.services-cta-inner h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #082b47;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.services-cta-inner p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
}

.services-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-btn--gold {
  background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
  color: #05202f;
}

.svc-btn--outline {
  background: transparent;
  color: #082b47;
  border: 2px solid #082b47;
  box-shadow: none;
}

.svc-btn--outline:hover {
  background: #082b47;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(8,43,71,0.2);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .service-section {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-section--reverse {
    direction: ltr;
  }

  .service-image-col {
    min-height: 300px;
  }

  .service-img-wrap::after {
    background: linear-gradient(to top, rgba(8,43,71,0.4) 0%, transparent 60%);
  }

  .service-img-badge {
    left: 20px !important;
    right: auto !important;
  }

  .service-content-col {
    padding: 48px 32px;
  }

  .service-content-col::before {
    top: 0; bottom: 0; left: 0; right: auto;
    width: 3px; height: auto;
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-stat {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .svc-features {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .service-content-col {
    padding: 36px 24px;
  }

  .intro-strip-inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .intro-divider {
    display: none;
  }

  .intro-stat {
    width: 45%;
    padding: 0;
  }

  .services-hero {
    padding: 70px 20px 80px;
  }

  .addons-section {
    padding: 70px 8%;
  }
}
