/* ========== Variables ========== */
:root {
  --clr-cream: #fbf7f0;
  --clr-text: #0e0e0e;
  --clr-muted: #5a5a5a;
  --clr-border: rgba(0, 0, 0, 0.08);
  --clr-accent: #ffa726;
  --clr-teal: #00a9a5;
  --clr-white: #fff;
}

/* ========== Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--clr-text);
  background: var(--clr-cream);
  line-height: 1.6;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}

/* ========== Simple Navbar ========== */
.service-nav {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 42px;
}
.nav-cta {
  padding: 10px 20px;
  background: var(--clr-accent);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 167, 38, 0.3);
}

/* ========== Breadcrumb ========== */
.breadcrumb-wrap {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 12px 0;
}
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 14px;
  color: var(--clr-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: var(--clr-text);
  font-weight: 600;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========== Hero Section with Background ========== */
.service-hero {
  position: relative;
  padding: 120px 40px 100px;
  text-align: center;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image (common for all pages) */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 1;
  z-index: 0;
}

/* Gradient Overlay (common for all pages) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.hero-icon {
  font-size: 72px;
  margin-bottom: 20px;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.service-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-lead {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.96;
  max-width: 680px;
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========== Sections ========== */
.service-section {
  padding: 70px 40px;
}
.service-section--alt {
  background: var(--clr-white);
}
.service-container {
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}
.section-text {
  font-size: 16px;
  color: var(--clr-muted);
  margin: 0 0 28px;
  line-height: 1.7;
}

/* ========== Feature Grid ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.feature-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.feature-icon {
  font-size: 36px;
  color: var(--clr-accent);
  margin-bottom: 10px;
}
.feature-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.feature-card p {
  font-size: 15px;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.6;
}

/* ========== Benefit List ========== */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.benefit-list li {
  font-size: 16px;
  color: var(--clr-muted);
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 18px;
}
.benefit-list strong {
  color: var(--clr-text);
  font-weight: 700;
}

/* ========== CTA Section ========== */
.service-cta-section {
  background: linear-gradient(135deg, var(--clr-accent) 0%, #ff8f00 100%);
  color: #000;
  padding: 50px 40px;
  text-align: center;
}
.service-cta-section h2 {
  font-size: 32px;
  margin: 0 0 8px;
  font-weight: 700;
}
.service-cta-section p {
  font-size: 16px;
  margin: 0 0 20px;
  opacity: 0.92;
}
.service-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--clr-white);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

/* ========== Footer ========== */
.service-footer {
  background: #f4a531;
  color: #000;
  padding: 18px 40px;
  text-align: center;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: #000;
  font-weight: 600;
  font-size: 14px;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .nav-wrap,
  .breadcrumb,
  .service-container,
  .footer-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero Mobile */
  .service-hero {
    padding: 100px 20px 80px;
    min-height: 350px;
  }

  .hero-icon {
    font-size: 56px;
  }

  .service-hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 80px 20px 60px;
  }

  .hero-icon {
    font-size: 48px;
  }

  .service-hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 16px;
  }
}
