/* Service-page-specific CSS copied conservatively from styles.css. */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroButtonBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-2px);
  }
}

@keyframes introOutlineSettle {
  0% { opacity: 0.1; transform: translate(-70px, 55px); }
  68% { opacity: 1; transform: translate(10px, -6px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

@keyframes introBadgeSettle {
  0% { opacity: 0.1; transform: translate(75px, 55px); }
  68% { opacity: 1; transform: translate(-10px, -6px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

.service-hero{
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f2742;
}

.service-hero > img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.03);
  animation: heroImageZoom 1.6s ease-out both;
}

.service-hero.hero-parallax-active > img{
  will-change: transform;
  transition: transform 120ms linear;
}

.service-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 27, 45, 0.72) 0%, rgba(10, 27, 45, 0.52) 42%, rgba(10, 27, 45, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.18) 0%, rgba(7, 18, 31, 0.38) 100%);
  z-index: 1;
}

.service-hero .container{
  position: relative;
  z-index: 2;
}

.service-hero-content{
  max-width: 720px;
  padding: 120px 0 110px;
}

.service-hero-kicker{
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.12s;
}

.service-hero-content h1{
  margin: 0 0 18px;
  font-size: 62px;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.28s;
}

.service-hero-content p{
  max-width: 620px;
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.46s;
}

.service-hero-buttons{
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.64s;
}

.service-hero .btn-theme{
  border-radius: 999px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #15365A 0%, #1d4a79 100%);
  border: none;
  box-shadow: 0 14px 34px rgba(21, 54, 90, 0.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: heroButtonBounce 2.6s infinite 1.4s;
}

.service-hero .btn-theme:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(5, 199, 242, 0.24);
  filter: brightness(1.04);
}

.service-intro-section{
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(5, 199, 242, 0.08) 0%, rgba(5, 199, 242, 0) 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}

.service-intro-row{
  display: flex;
  align-items: flex-start;
}

.service-intro-visual{
  position: relative;
  padding-bottom: 70px;
  padding-left: 28px;
}

.service-intro-outline{
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 42%;
  height: 34%;
  border: 1.5px solid rgba(5, 199, 242, 0.28);
  border-radius: 28px;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
}

.service-intro-image{
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(21, 54, 90, 0.12);
  background: #ffffff;
}

.service-intro-image img{
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-intro-badge{
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 3;
  min-width: 300px;
  max-width: 360px;
  background: #15365A;
  color: #ffffff;
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 22px 45px rgba(21, 54, 90, 0.20);
  opacity: 0;
  will-change: transform, opacity;
}

.service-intro-badge-top{
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.service-intro-badge strong{
  display: block;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.service-intro-card{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(21, 54, 90, 0.08);
  border-radius: 28px;
  padding: 34px 34px;
  box-shadow: 0 18px 48px rgba(21, 54, 90, 0.08);
  height: auto;
  min-height: 0;
}

.service-eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  color: #05c7f2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-intro-card h2{
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.15;
  color: #15365A;
}

.service-intro-card p{
  color: #5f748a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-intro-card p:last-child{ margin-bottom: 0; }

.move-process-section{
  background:
    radial-gradient(circle at top right, rgba(5, 199, 242, 0.08) 0%, rgba(5, 199, 242, 0) 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}

.move-process-eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  color: #05c7f2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.move-process-section h2{
  margin-bottom: 14px;
  color: #15365A;
}

.move-process-section .section-heading-wrapper p{
  max-width: 760px;
  margin: 0 auto;
  color: #5f748a;
  line-height: 1.75;
}

.move-process-grid{ margin-top: 42px; }

.move-process-card{
  position: relative;
  height: 100%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(21, 54, 90, 0.08);
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 16px 40px rgba(21, 54, 90, 0.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  opacity: 0;
  transform: translateY(26px);
}

.move-process-card.visible{ opacity: 1; transform: translateY(0); }
.move-process-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 52px rgba(21,54,90,.12); border-color: rgba(5,199,242,.20); }

.move-process-number{
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef8ff 0%, #dff2ff 100%);
  color: #15365A;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(5, 199, 242, 0.10);
}

.move-process-card h3{ margin-bottom: 14px; font-size: 21px; line-height: 1.3; color: #15365A; }
.move-process-card p{ margin-bottom: 0; color: #5f748a; font-size: 15.5px; line-height: 1.75; }

.move-cta-section{
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(5, 199, 242, 0.10) 0%, rgba(5, 199, 242, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.move-cta-box{
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #15365A 0%, #1b456f 100%);
  box-shadow: 0 24px 60px rgba(21, 54, 90, 0.18);
  position: relative;
  overflow: hidden;
}

.move-cta-box::before{
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.move-cta-box::after{
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(5, 199, 242, 0.12);
}

.move-cta-box > *{ position: relative; z-index: 2; }

.move-cta-eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.move-cta-box h2{ margin: 0 0 16px; color: #ffffff !important; font-size: 42px; line-height: 1.18; }
.move-cta-box p{ max-width: 720px; margin: 0 auto 28px; color: rgba(255,255,255,0.92) !important; font-size: 17px; line-height: 1.75; }
.move-cta-actions{ display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.move-cta-box .move-cta-btn,
.move-cta-box a.move-cta-btn,
.move-cta-box .btn.move-cta-btn,
.move-cta-box a.btn.move-cta-btn,
.move-cta-box .btn-theme.move-cta-btn,
.move-cta-box a.btn-theme.move-cta-btn{
  display: inline-block;
  border-radius: 999px !important;
  padding: 15px 30px !important;
  background: linear-gradient(135deg, #05c7f2 0%, #58dcf8 100%) !important;
  background-image: linear-gradient(135deg, #05c7f2 0%, #58dcf8 100%) !important;
  color: #0f2d49 !important;
  border: none !important;
  box-shadow: 0 14px 30px rgba(5, 199, 242, 0.30) !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.move-cta-box .move-cta-btn:hover,
.move-cta-box a.move-cta-btn:hover,
.move-cta-box .btn.move-cta-btn:hover,
.move-cta-box a.btn.move-cta-btn:hover,
.move-cta-box .btn-theme.move-cta-btn:hover,
.move-cta-box a.btn-theme.move-cta-btn:hover{
  background: linear-gradient(135deg, #22d0f5 0%, #79e4fb 100%) !important;
  background-image: linear-gradient(135deg, #22d0f5 0%, #79e4fb 100%) !important;
  color: #0f2d49 !important;
  box-shadow: 0 18px 36px rgba(5, 199, 242, 0.36) !important;
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.move-cta-box .move-cta-btn *, .move-cta-box a.move-cta-btn *{ color: #0f2d49 !important; }

.service-intro-outline.visible{ animation: introOutlineSettle 0.95s cubic-bezier(0.22,1,0.36,1) forwards; transition: none !important; }
.service-intro-badge.visible{ animation: introBadgeSettle 1s cubic-bezier(0.22,1,0.36,1) forwards; animation-delay: 0.12s; transition: none !important; }
.service-reveal.visible{ opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.move-process-grid .col-lg-3:nth-child(2) .service-reveal.visible,
.move-process-grid .col-md-6:nth-child(2) .service-reveal.visible{ transition-delay: .08s; }
.move-process-grid .col-lg-3:nth-child(3) .service-reveal.visible,
.move-process-grid .col-md-6:nth-child(3) .service-reveal.visible{ transition-delay: .16s; }
.move-process-grid .col-lg-3:nth-child(4) .service-reveal.visible,
.move-process-grid .col-md-6:nth-child(4) .service-reveal.visible{ transition-delay: .24s; }

@media (max-width: 1199px){
  .service-hero-content h1{ font-size: 54px; }
  .service-intro-badge{ right: 0; min-width: 260px; padding: 20px 24px; }
}

@media (max-width: 991px){
  .service-hero{ min-height: 68vh; }
  .service-hero-content{ padding: 110px 0 90px; max-width: 100%; }
  .service-hero-content h1{ font-size: 46px; }
  .service-hero-content p{ font-size: 18px; }
  .service-intro-section, .move-process-section, .move-cta-section{ padding-top: 70px; padding-bottom: 70px; }
  .service-intro-row{ display: block; }
  .service-intro-visual{ padding-left: 16px; padding-bottom: 58px; margin-bottom: 28px; }
  .service-intro-outline{ left: 0; bottom: 20px; width: 46%; height: 30%; }
  .service-intro-badge{ right: 0; bottom: 0; min-width: 240px; max-width: 300px; border-radius: 20px; }
  .service-intro-card{ padding: 30px 22px; border-radius: 22px; }
  .service-intro-card h2{ font-size: 34px; }
  .move-process-grid > div{ margin-bottom: 24px; }
  .move-cta-box{ padding: 42px 28px; border-radius: 26px; }
  .move-cta-box h2{ font-size: 34px; }
}

@media (max-width: 767px){
  .service-hero{ min-height: 58vh; margin-top: -2px; }
  .service-hero > img{ top: -2px; height: calc(100% + 4px); }
  .service-hero-overlay{ background: linear-gradient(180deg, rgba(10, 27, 45, 0.50) 0%, rgba(10, 27, 45, 0.66) 100%); }
  .service-hero-content{ padding: 100px 0 72px; }
  .service-hero-kicker{ font-size: 11px; padding: 7px 12px; }
  .service-hero-content h1{ font-size: 34px; line-height: 1.12; }
  .service-hero-content p{ font-size: 16px; line-height: 1.65; }
  .service-hero .btn-theme{ padding: 13px 24px; }
  .service-intro-visual{ padding-left: 10px; padding-bottom: 52px; }
  .service-intro-outline{ width: 44%; height: 24%; border-radius: 22px; }
  .service-intro-image img{ aspect-ratio: 4 / 3; }
  .service-intro-badge{ min-width: 0; width: calc(100% - 36px); max-width: 280px; padding: 18px 20px; border-radius: 18px; }
  .service-intro-badge strong{ font-size: 18px; }
  .service-intro-card h2{ font-size: 28px; }
  .move-process-card{ padding: 24px 20px 22px; border-radius: 20px; }
  .move-process-card h3{ font-size: 19px; }
  .move-process-number{ width: 48px; height: 48px; font-size: 18px; border-radius: 14px; }
  .move-cta-box{ padding: 34px 22px; border-radius: 22px; }
  .move-cta-box h2{ font-size: 28px; }
  .move-cta-box p{ font-size: 15.5px; line-height: 1.65; }
  .move-cta-box .move-cta-btn,
  .move-cta-box a.move-cta-btn,
  .move-cta-box .btn.move-cta-btn,
  .move-cta-box a.btn.move-cta-btn,
  .move-cta-box .btn-theme.move-cta-btn,
  .move-cta-box a.btn-theme.move-cta-btn{ width: 100%; max-width: 280px; }
}

.move-process-grid .col-lg-4:nth-child(2) .service-reveal.visible{
  transition-delay: .08s;
}

.move-process-grid .col-lg-4:nth-child(3) .service-reveal.visible{
  transition-delay: .16s;
}

.move-process-grid{
  display: flex;
  flex-wrap: wrap;
}

.move-process-grid > div{
  display: flex;
}

.move-process-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 350px;
}

.move-process-card h3{
  margin: 18px 0 14px;
  line-height: 1.2;
  min-height: 0;
}

.move-process-card p{
  margin-bottom: 0;
}

.service-local-related-section{
  padding: 48px 0 28px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(248, 251, 255, 0.92) 100%);
}

.service-local-related-box{
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 34px;
  border: 1px solid rgba(21, 54, 90, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(21, 54, 90, 0.06);
}

.service-local-related-kicker{
  display: inline-block;
  margin-bottom: 12px;
  color: #05c7f2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-local-related-box h2{
  margin: 0 0 12px;
  color: #15365A;
  font-size: 30px;
  line-height: 1.2;
}

.service-local-related-box p{
  max-width: 620px;
  margin: 0 auto 18px;
  color: #5f748a;
  font-size: 15.5px;
  line-height: 1.7;
}

.service-local-related-btn{
  min-width: 220px;
  border-radius: 999px;
}

@media (max-width: 991px){
  .move-process-card{
    min-height: auto;
  }

  .move-process-card h3{
    min-height: auto;
  }

  .service-local-related-section{
    padding: 40px 0 22px;
  }

  .service-local-related-box{
    padding: 26px 24px;
  }

  .service-local-related-box h2{
    font-size: 27px;
  }
}

@media (max-width: 767px){
  .service-local-related-box{
    padding: 24px 20px;
    border-radius: 20px;
  }

  .service-local-related-box h2{
    font-size: 24px;
  }

  .service-local-related-box p{
    font-size: 15px;
    line-height: 1.65;
  }

  .service-local-related-btn{
    width: 100%;
    max-width: 280px;
  }
}

.price-factor-section{
  padding-top: 86px;
  padding-bottom: 86px;
}

.price-service-section{
  padding: 86px 0;
  background:
    radial-gradient(circle at top left, rgba(5, 199, 242, 0.08) 0%, rgba(5, 199, 242, 0) 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.price-grid{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.price-grid > div{
  display: flex;
  margin-bottom: 24px;
}

.price-info-section{
  padding: 86px 0;
  background:
    radial-gradient(circle at top right, rgba(5, 199, 242, 0.08) 0%, rgba(5, 199, 242, 0) 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
}

.price-info-row{
  display: flex;
  align-items: center;
}

.price-info-copy h2{
  margin: 0 0 16px;
  color: #15365A;
  font-size: 40px;
  line-height: 1.15;
}

.price-info-copy p{
  margin: 0;
  color: #5f748a;
  font-size: 16px;
  line-height: 1.75;
}

.price-info-box{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(21, 54, 90, 0.08);
  border-radius: 28px;
  padding: 30px 34px;
  box-shadow: 0 18px 48px rgba(21, 54, 90, 0.08);
}

.price-check-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-check-list li{
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  color: #5f748a;
  font-size: 15.5px;
  line-height: 1.72;
}

.price-check-list li:last-child{
  margin-bottom: 0;
}

.price-check-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #05c7f2 0%, #7de7fb 100%);
  box-shadow: 0 0 0 5px rgba(5, 199, 242, 0.12);
  transform: translateY(-50%);
}

@media (max-width: 991px){
  .price-factor-section,
  .price-service-section,
  .price-info-section{
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .price-info-row{
    display: block;
  }

  .price-info-copy{
    margin-bottom: 28px;
  }

  .price-info-copy h2{
    font-size: 34px;
  }

  .price-info-box{
    padding: 26px 24px;
    border-radius: 24px;
  }
}

@media (max-width: 767px){
  .price-grid{
    margin-top: 30px;
  }

  .price-check-list li{
    font-size: 15px;
    line-height: 1.65;
  }

  .price-info-copy h2{
    font-size: 28px;
  }

  .price-info-box{
    padding: 24px 20px;
    border-radius: 20px;
  }
}
