/* ============================================================
   Servicii (Services) Page Styles — Light Theme
   ============================================================ */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #0A1118 0%, #0D1620 60%, #111C29 100%);
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--color-text, #F0F4F8);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.page-hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary, #A0AEC0);
  max-width: 550px;
  position: relative;
  z-index: 2;
}

.hero-deco-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(15rem, 30vw, 28rem);
  line-height: 1;
  -webkit-text-stroke: 2px rgba(30, 64, 175, 0.06);
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Service Full Sections ---------- */
.service-full {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.service-full--reverse .service-full-grid {
  direction: rtl;
}

.service-full--reverse .service-full-grid > * {
  direction: ltr;
}

.service-full-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(5rem, 10vw, 9rem);
  -webkit-text-stroke: 2px var(--color-accent, #D4AF37);
  color: rgba(212, 175, 55, 0.15); /* Gold pale fill */
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-full-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-text, #F0F4F8);
  margin-bottom: 1.25rem;
}

.service-full-desc {
  font-size: 1rem;
  color: var(--color-text-secondary, #A0AEC0);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-text-secondary, #4A5568);
  line-height: 1.5;
}

.service-bullet::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-accent, #1E40AF);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrapper svg {
  width: clamp(180px, 25vw, 280px);
  height: clamp(180px, 25vw, 280px);
  opacity: 0.9;
}

/* ---------- Alternating backgrounds ---------- */
.service-full:nth-child(even) {
  background: var(--color-surface-2, #F0F4F8);
}

/* ---------- CTA Section ---------- */
.services-cta {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 12vh, 8rem) 2rem;
  overflow: hidden;
  background: #1A3A5C;
}

.services-cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 768px) {
  .services-cta-title {
    font-size: clamp(1.1rem, 4.5vw, 2rem);
    line-height: 1.3;
    text-align: center;
    padding: 0 1rem;
    white-space: nowrap;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-cta-title {
    font-size: clamp(0.95rem, 4vw, 1.4rem);
    text-align: center;
    padding: 0 1rem;
    white-space: nowrap;
    max-width: 100%;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-full {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }

  .service-full-grid,
  .service-full--reverse .service-full-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }

  .service-full-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-full-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .service-bullets {
    align-items: flex-start;
    text-align: left;
    max-width: 420px;
    margin: 0 auto 2rem;
  }

  .service-icon-wrapper {
    order: -1;
  }

  .service-icon-wrapper svg {
    width: 150px;
    height: 150px;
  }

  .service-icon-wrapper img {
    max-height: 280px !important;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 35vh;
    padding: calc(var(--nav-height) + 2rem) 1.5rem 2.5rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .service-full {
    padding: var(--space-xl) 0;
  }

  .service-full-number {
    font-size: clamp(4rem, 12vw, 6rem);
    margin-bottom: 1rem;
  }

  .service-full-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .service-full-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .service-bullet {
    font-size: 0.88rem;
  }

  .service-icon-wrapper img {
    max-height: 220px !important;
  }

  .services-cta {
    padding: clamp(3rem, 10vh, 6rem) 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 30vh;
    padding: calc(var(--nav-height) + 1.5rem) 1rem 2rem;
  }

  .page-hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .service-full-number {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .service-full-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .service-icon-wrapper img {
    max-height: 180px !important;
  }

  .services-cta-title {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    line-height: 1.4;
  }

  .service-bullets {
    max-width: 100%;
  }
}
