.service-page-main {
  background: #f7f9fc;
  padding-top: 70px;
}

/* Hero */
.service-page-hero {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0,170,255,0.12), transparent 30%),
    linear-gradient(135deg, #0d2f4a 0%, #1666a0 55%, #2185c5 100%);
  overflow: hidden;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.08));
  pointer-events: none;
}

.service-page-hero .container {
  position: relative;
  z-index: 2;
}

.service-page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-page-hero h1 {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.service-page-hero-text {
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 19px;
  line-height: 1.85;
  color: rgba(255,255,255,0.94);
}

.service-page-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service-page-hero .modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: #0b5d93;
  border: 1px solid #0a4e7b;
  box-shadow: 0 10px 22px rgba(6, 42, 69, 0.28);
  transition: all 0.3s ease;
}

.service-page-hero .modern-btn:hover,
.service-page-hero .modern-btn:focus {
  color: #ffffff;
  background: #084a74;
  border-color: #073f63;
  text-decoration: none;
  transform: translateY(-2px);
}

.service-page-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(6, 39, 63, 0.42);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.56);
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.service-page-hero-actions a.service-page-secondary-btn[href^="tel:"] {
  color: #ffffff;
}

.service-page-secondary-btn:hover {
  background: rgba(5, 33, 54, 0.58);
  color: #ffffff;
  transform: translateY(-2px);
}

.service-page-secondary-btn:focus {
  background: rgba(5, 33, 54, 0.58);
  color: #ffffff;
  transform: translateY(-2px);
}

.service-page-hero-actions a.service-page-secondary-btn[href^="tel:"]:hover,
.service-page-hero-actions a.service-page-secondary-btn[href^="tel:"]:focus {
  color: #ffffff;
}

.navbar-item-estimate .navbar-link {
  background: #0b5d93;
  color: #ffffff;
  border: 1px solid #084c78;
}

.navbar-item-estimate .navbar-link:hover,
.navbar-item-estimate .navbar-link:focus {
  background: #084a74;
  color: #ffffff;
}

/* Sections */
.service-page-section {
  padding: 80px 20px;
}

.service-page-section-light {
  background: #eef4f9;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-page-main-card,
.service-page-image-card,
.service-page-text-card,
.service-page-feature-card,
.service-benefit-card,
.service-link-card,
.service-page-cta-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(8, 31, 54, 0.08);
  border: 1px solid #e7edf3;
}

.service-page-main-card,
.service-page-image-card {
  padding: 42px;
}

.service-page-main-card h2,
.service-page-content-block h2,
.service-page-cta-card h2 {
  font-size: 38px;
  font-weight: 700;
  color: #14202b;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service-page-main-card p,
.service-page-text-card p,
.service-page-feature-card p,
.service-benefit-card p,
.service-link-card p,
.service-page-cta-card p,
.service-page-contact-box p {
  font-size: 17px;
  line-height: 1.85;
  color: #314252;
}

.service-page-main-card p:last-child,
.service-page-text-card p:last-child,
.service-page-feature-card p:last-child,
.service-benefit-card p:last-child,
.service-link-card p:last-child,
.service-page-cta-card p:last-child {
  margin-bottom: 0;
}

/* Image side */
.service-page-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin-bottom: 24px;
}

.service-page-contact-box {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #e3edf6;
  border-radius: 14px;
  padding: 24px;
}

.service-page-contact-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #14202b;
  margin-bottom: 14px;
}

.service-page-contact-item {
  font-size: 15px;
  line-height: 1.7;
  color: #314252;
  margin-bottom: 10px;
}

.service-page-contact-box .modern-btn {
  margin-top: 16px;
}

/* Content blocks */
.service-page-content-block {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-page-content-block .section-kicker {
  margin-bottom: 18px;
  color: #ffffff;
}

.service-page-section-light .section-kicker,
.service-page-section .section-kicker {
  background: linear-gradient(135deg, #00aaff 0%, #2185c5 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(33,133,197,0.18);
}

.service-page-content-block h2 {
  margin-bottom: 22px;
}

.service-page-two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-top: 36px;
  text-align: left;
}

.service-page-text-card,
.service-page-feature-card {
  padding: 36px;
}

.service-page-feature-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #14202b;
  margin-bottom: 16px;
}

/* List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.service-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  font-size: 16px;
  line-height: 1.75;
  color: #253646;
  border-bottom: 1px solid #e8edf2;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00aaff 0%, #2185c5 100%);
  box-shadow: 0 0 0 4px rgba(33,133,197,0.12);
}

/* Benefits */
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}

.service-benefit-card {
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(8, 31, 54, 0.12);
}

.service-benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #14202b;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Internal links */
.service-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}

.service-link-card {
  display: block;
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  color: inherit;
}

.service-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(8, 31, 54, 0.12);
  border-color: #b7dbf2;
  text-decoration: none;
}

.service-link-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #14202b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-link-card:hover h3 {
  color: #2185c5;
}

/* CTA */
.service-page-cta {
  padding: 0 20px 90px;
}

.service-page-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 42px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(135deg, #0d2f4a 0%, #1666a0 55%, #2185c5 100%);
  border: none;
  box-shadow: 0 20px 50px rgba(8, 31, 54, 0.16);
}

.service-page-cta-card h2,
.service-page-cta-card p {
  color: #ffffff;
}

.service-page-cta-card .section-kicker {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
}

.service-page-cta-card .modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: #0b5d93;
  border: 1px solid #0a4e7b;
  box-shadow: 0 10px 22px rgba(6, 42, 69, 0.28);
  transition: all 0.3s ease;
}

.service-page-cta-card .modern-btn:hover,
.service-page-cta-card .modern-btn:focus {
  color: #ffffff;
  background: #084a74;
  border-color: #073f63;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .service-benefits-grid,
  .service-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .service-page-grid,
  .service-page-two-column {
    grid-template-columns: 1fr;
  }

  .service-page-hero h1 {
    font-size: 40px;
  }

  .service-page-main-card,
  .service-page-image-card,
  .service-page-text-card,
  .service-page-feature-card,
  .service-page-cta-card {
    padding: 34px;
  }

  .service-page-main-card h2,
  .service-page-content-block h2,
  .service-page-cta-card h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .service-page-section {
    padding: 65px 20px;
  }

  .service-page-hero {
    padding: 70px 20px;
  }

  .service-page-hero h1 {
    font-size: 32px;
  }

  .service-page-hero-text {
    font-size: 17px;
  }

  .service-benefits-grid,
  .service-links-grid {
    grid-template-columns: 1fr;
  }

  .service-page-main-card,
  .service-page-image-card,
  .service-page-text-card,
  .service-page-feature-card,
  .service-page-cta-card {
    padding: 28px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .section-kicker {
    font-size: 12px;
    padding: 9px 14px;
  }

  .service-page-hero h1 {
    font-size: 28px;
  }

  .service-page-main-card h2,
  .service-page-content-block h2,
  .service-page-cta-card h2 {
    font-size: 26px;
  }

  .service-page-main-card p,
  .service-page-text-card p,
  .service-page-feature-card p,
  .service-benefit-card p,
  .service-link-card p,
  .service-page-cta-card p,
  .service-page-contact-box p,
  .service-list li {
    font-size: 15px;
  }

  .service-page-secondary-btn,
  .modern-btn {
    width: 100%;
  }

  .service-page-hero-actions {
    flex-direction: column;
  }
}