@import url("base.css");

/* Services page specific overrides with professional color scheme */

body.page-services {
  background: linear-gradient(
    180deg,
    rgba(163, 180, 156, 0.95) 0%,
    rgba(163, 180, 156, 0.85) 100%
  );
  color: var(--color-text-dark);
}

body.page-services::before,
body.page-services::after {
  display: none;
}

/* Hero Section - Professional with #A3B49C */
.hero--sage {
  background: linear-gradient(
    180deg,
    rgba(163, 180, 156, 0.98) 0%,
    rgba(163, 180, 156, 0.88) 100%
  );
  color: var(--color-text-dark);
  position: relative;
  overflow: hidden;
}

.hero--sage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
  pointer-events: none;
}

.hero--sage .hero__lead {
  color: rgba(16, 22, 35, 0.82);
  opacity: 0.95;
}

.hero--sage .eyebrow {
  color: rgba(16, 22, 35, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero--sage h1 {
  color: var(--color-text-dark);
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.12);
}

.hero--sage p,
.hero--sage .hero__copy p {
  color: rgba(16, 22, 35, 0.8);
}

/* Card Styling - Blue cards that turn white on hover */
.page-services .card {
  background: #0f1f35;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.page-services .card:hover {
  background: #ffffff;
  color: #a3b49c;
  border-color: #a3b49c;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.page-services .card h3 {
  color: inherit;
}

.page-services .card p {
  color: inherit;
  opacity: 0.9;
}

.page-services .card:hover h3,
.page-services .card:hover p {
  color: #a3b49c;
}

/* Section Backgrounds - Only #A3B49C */
.section--sage {
  background: linear-gradient(
    180deg,
    rgba(163, 180, 156, 0.92) 0%,
    rgba(163, 180, 156, 0.78) 100%
  );
  color: var(--color-text-dark);
  position: relative;
  overflow: hidden;
}

.section--sage::before {
  display: none;
}

.section--sage h2 {
  color: var(--color-text-dark);
}

.section--sage .section__intro p {
  color: rgba(16, 22, 35, 0.82);
}

.section--sage .eyebrow {
  color: rgba(16, 22, 35, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.services-overview .grid {
  position: relative;
  z-index: 1;
}

.services-overview .section__intro,
.services-why .section__intro {
  position: relative;
  z-index: 1;
}

/* Service List Styling */
.service-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: inherit;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.9;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.page-services .card:hover .service-list li::before {
  background: #a3b49c;
  box-shadow: 0 0 0 3px rgba(163, 180, 156, 0.2);
}

.service-list--detailed strong {
  font-weight: 600;
  color: inherit;
}

/* Why Choose Section */
.services-why {
  background: #a3b49c;
}

.services-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.06),
      transparent 50%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.services-why .service-benefits {
  margin: 2.5rem auto 0;
  margin-bottom: 2rem;
  padding: 2.5rem 3rem;
  max-width: 720px;
  background: #a3b49c;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  list-style: none;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.services-why .service-benefits li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.65;
  font-weight: 500;
}

.services-why .service-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #a3b49c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.services-why .section__actions {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

/* Button Styling Enhancement */
.page-services .btn--primary {
  background: #ffffff;
  color: var(--color-brand-deep);
  border: 2px solid var(--color-brand-deep);
  box-shadow: 0 4px 12px rgba(10, 26, 51, 0.25);
  font-weight: 600;
}

.page-services .btn--primary:hover {
  background: rgba(10, 26, 51, 0.9);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(10, 26, 51, 0.35);
  transform: translateY(-2px);
}

/* Floating Card Enhancement */
.hero__floating-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero__floating-card p {
  color: var(--color-text-dark);
  font-weight: 600;
}

.hero__floating-card span {
  color: var(--color-text-dark);
  opacity: 0.7;
}
.site-footer {
  color: #ffffff;
}
