/* Shared styles for the nine service pages. Page-specific rules remain inline on each page. */
:root {
  --teal:#1a9e8f;
  --teal-dark:#157a6e;
  --teal-light:#e8f7f5;
  --teal-mid:#2bbdac;
  --yellow:#f5c842;
  --yellow-dark:#e0b020;
  --dark:#1a2e2a;
  --gray:#6b7280;
  --gray-light:#f4f7f6;
  --white:#ffffff;
  --line:rgba(26,158,143,0.15);
  --radius:16px;
  --radius-lg:24px;
  --shadow:0 4px 24px rgba(26,158,143,0.12);
  --shadow-lg:0 8px 48px rgba(26,158,143,0.18);
  --max:1200px;
}
*,*::before,*::after {
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html {
  scroll-behavior:smooth;
}
body {
  font-family:'Nunito',sans-serif;
  color:var(--dark);
  background:#fff;
  overflow-x:hidden;
  line-height:1.55;
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  max-width:100%;
  display:block;
}
h1,h2,h3,h4 {
  font-family:'Fredoka One',cursive;
  letter-spacing:0.02em;
  line-height:1.15;
}
.container {
  width:min(var(--max),calc(100% - 80px));
  margin:0 auto;
}
section {
  padding:72px 0;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:50px;
  font-family:'Fredoka One',cursive;
  font-size:1rem;
  cursor:pointer;
  border:2px solid transparent;
  transition:all 0.25s;
  min-height:48px;
}
.btn:hover {
  transform:translateY(-2px);
}
.btn-primary {
  background:var(--yellow);
  color:var(--dark);
  box-shadow:0 4px 16px rgba(245,200,66,0.35);
  border-color:var(--yellow);
}
.btn-primary:hover {
  background:var(--yellow-dark);
  border-color:var(--yellow-dark);
}
.btn-teal {
  background:var(--teal);
  color:#fff;
  border-color:var(--teal);
}
.btn-outline {
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background:rgba(255,255,255,0.15);
}
.btn-ghost {
  background:rgba(255,255,255,0.08);
  color:#fff;
  border-color:rgba(255,255,255,0.2);
}
.btn-sm {
  padding:10px 20px;
  font-size:0.9rem;
  min-height:40px;
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border:1px solid var(--line);
  border-radius:50px;
  background:var(--teal-light);
  color:var(--teal-dark);
  font-family:'Nunito',sans-serif;
  font-size:0.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.08em;
  margin-bottom:14px;
}
.eyebrow::before {
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 3px rgba(26,158,143,0.2);
}
.topbar {
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
  padding: 8px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.topbar a {
  color: var(--yellow);
}
.topbar a:hover {
  text-decoration: underline;
}
.green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); } 50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(21, 122, 110, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 54px;
  width: auto;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: contain;
}
.brand-text {
  line-height: 1.2;
}
.brand-name {
  font-family: 'Fredoka One', cursive;
  color: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
}
.brand-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links>li {
  position: relative;
}
.nav-links a {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background 0.2s;
  display: block;
  white-space: nowrap;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.72rem;
  opacity: 0.8;
}
.nav-links>li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(26, 158, 143, 0.18);
  min-width: 240px;
  padding: 8px;
  z-index: 2000;
  border: 1px solid rgba(26, 158, 143, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.dropdown-menu a {
  color: var(--dark);
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  display: block;
}
.dropdown-menu a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.dropdown-menu a i {
  opacity: 0.6;
  color: var(--teal-dark);
  font-size: 0.82rem;
}
.nav-links>li:hover .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-login:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}
.nav-cta-btn {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
}
.page-hero {
  background:linear-gradient(135deg,var(--teal-dark) 0%,var(--teal) 55%,var(--teal-mid) 100%);
  color:#fff;
  padding:64px 0 52px;
  position:relative;
  overflow:hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  top:-60px;
  right:-80px;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
}
.page-hero::after {
  content:'';
  position:absolute;
  bottom:-80px;
  left:-40px;
  width:300px;
  height:300px;
  background:rgba(245,200,66,0.07);
  border-radius:50%;
}
.page-hero-inner {
  position:relative;
  z-index:1;
}
.breadcrumb {
  font-size:0.8rem;
  color:rgba(255,255,255,0.7);
  margin-bottom:14px;
}
.breadcrumb a {
  color:var(--yellow);
}
.page-hero h1 {
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:12px;
}
.page-hero h1 .accent {
  color:var(--yellow);
}
.service-layout {
  display:grid;
  grid-template-columns:1.65fr 1fr;
  gap:52px;
  align-items:start;
}
.benefit-list {
  list-style:none;
  margin-bottom:8px;
}
.benefit-list li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:9px 0;
  font-size:0.93rem;
  border-bottom:1px solid #f0f4f3;
}
.benefit-list li:last-child {
  border-bottom:none;
}
.benefit-list li i {
  color:var(--teal);
  margin-top:3px;
  flex-shrink:0;
}
.price-table-header {
  background:var(--teal);
  color:#fff;
  padding:16px 22px;
  display:flex;
  align-items:center;
  gap:10px;
}
.price-table-header h3 {
  font-size:1.2rem;
}
.price-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:13px 22px;
  border-bottom:1px solid #f0f4f3;
}
.price-row:last-child {
  border-bottom:none;
}
.price-row:nth-child(even) {
  background:var(--teal-light);
}
.pr-label {
  font-weight:700;
  font-size:0.9rem;
}
.pr-note {
  font-size:0.78rem;
  color:var(--gray);
}
.pr-price {
  font-family:'Fredoka One',cursive;
  font-size:1.1rem;
  color:var(--teal-dark);
  white-space:nowrap;
}
.step-item {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:var(--radius);
  background:var(--gray-light);
  border:1px solid #e5ece9;
}
.step-num {
  width:32px;
  height:32px;
  min-width:32px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  font-family:'Fredoka One',cursive;
  font-size:1rem;
}
.step-item strong {
  display:block;
  font-size:0.93rem;
  color:var(--dark);
  margin-bottom:3px;
}
.step-item span {
  color:var(--gray);
  font-size:0.88rem;
}
.sticky-sidebar {
  position:sticky;
  top:88px;
}
.quote-box {
  background:linear-gradient(135deg,var(--teal-dark),var(--teal));
  color:#fff;
  border-radius:var(--radius-lg);
  padding:30px 26px;
  text-align:center;
}
.starting-price {
  font-family:'Fredoka One',cursive;
  font-size:3rem;
  color:var(--yellow);
  line-height:1;
  margin-bottom:4px;
}
.starting-label {
  font-size:0.8rem;
  opacity:0.75;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.quote-box h3 {
  font-size:1.5rem;
  margin-bottom:8px;
}
.quote-box p {
  opacity:0.88;
  font-size:0.92rem;
  margin-bottom:20px;
}
.quote-box .btn {
  width:100%;
  display:flex;
  justify-content:center;
}
.quote-box-divider {
  margin:18px 0;
  border-top:1px solid rgba(255,255,255,0.2);
}
.service-area-note {
  font-size:0.82rem;
  opacity:0.78;
  line-height:1.6;
}
.trust-pill {
  padding:10px 14px;
  border-radius:50px;
  background:var(--gray-light);
  border:1px solid var(--line);
  font-size:0.82rem;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--teal-dark);
}
.trust-pill i {
  font-size:0.9rem;
  color:var(--teal);
}
.cards-grid-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}
.cards-grid-2 {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:28px;
}
.card {
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 20px;
  border:2px solid transparent;
  transition:all 0.25s;
}
.card:hover {
  border-color:var(--teal);
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}
.card-icon {
  font-size:2rem;
  margin-bottom:12px;
  display:block;
  color:var(--teal);
}
.card h3 {
  font-size:1.1rem;
  color:var(--teal-dark);
  margin-bottom:6px;
}
.card p {
  font-size:0.88rem;
  color:var(--gray);
  line-height:1.6;
}
.cta-section {
  background:linear-gradient(135deg,var(--teal-dark),var(--teal));
  color:#fff;
  text-align:center;
  padding:64px 0;
}
.cta-section h2 {
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  margin-bottom:14px;
}
.cta-section p {
  font-size:1.05rem;
  opacity:0.9;
  margin-bottom:28px;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}
.cta-btns {
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
footer {
  background:var(--dark);
  color:rgba(255,255,255,0.8);
  padding:56px 0 24px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:36px;
  margin-bottom:36px;
}
.footer-logo-text {
  font-family:'Fredoka One',cursive;
  font-size:1.35rem;
  color:#fff;
  margin-bottom:10px;
}
.footer-logo-text span {
  color:var(--yellow);
}
.footer-desc {
  font-size:0.84rem;
  line-height:1.7;
  opacity:0.72;
  margin-bottom:16px;
}
.footer-social {
  display:flex;
  gap:9px;
}
.footer-social a {
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.1);
  color:#fff;
  font-size:0.9rem;
  transition:all 0.2s;
}
.footer-social a:hover {
  background:var(--teal);
  transform:translateY(-2px);
}
.footer-col h4 {
  font-family:'Fredoka One',cursive;
  font-size:0.98rem;
  color:#fff;
  margin-bottom:12px;
}
.footer-col ul {
  list-style:none;
}
.footer-col ul li {
  margin-bottom:8px;
}
.footer-col ul li a {
  color:rgba(255,255,255,0.6);
  font-size:0.84rem;
  transition:color 0.2s;
}
.footer-col ul li a:hover {
  color:var(--yellow);
}
.footer-contact-item {
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:10px;
  font-size:0.84rem;
}
.footer-contact-item i {
  color:var(--teal);
  width:14px;
  text-align:center;
}
.footer-contact-item a {
  color:rgba(255,255,255,0.68);
}
.footer-contact-item a:hover {
  color:var(--yellow);
}
.footer-contact-item span {
  color:rgba(255,255,255,0.6);
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  font-size:0.78rem;
  opacity:0.55;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom-links {
  display:flex;
  gap:16px;
}
@media(max-width:1000px) {
  .service-layout {
    grid-template-columns:1fr;
  }
  .sticky-sidebar {
    position:static;
  }
  .cards-grid-3 {
    grid-template-columns:1fr 1fr;
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:860px) {
  .nav-links,.nav-actions {
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    width:100%;
    padding-bottom:12px;
  }
  .nav-links.active,.nav-actions.active {
    display:flex;
  }
  .mobile-menu-btn {
    display:block;
  }
  .site-header .nav {
    flex-wrap:wrap;
  }
  .dropdown-menu {
    position:static;
    box-shadow:none;
    border:none;
    background:#fff;
    border-radius:14px;
    padding:8px;
    opacity:1;
    pointer-events:auto;
    transform:none;
    display:none;
    min-width:unset;
  }
  .dropdown-menu a {
    color:#1a2e2a;
  }
  .dropdown-menu a:hover {
    background:#e8f7f5;
    color:#157a6e;
  }
  .nav-links li.open .dropdown-menu {
    display:block;
  }
}
@media(max-width:640px) {
  section {
    padding:52px 0;
    padding-left:24px;
    padding-right:24px;
  }
  .page-hero {
    padding:48px 0 40px;
  }
  .cards-grid-3,.cards-grid-2 {
    grid-template-columns:1fr;
  }
  .footer-grid {
    grid-template-columns:1fr;
    gap:24px;
  }
  .cta-btns {
    flex-direction:column;
    align-items:center;
  }
  .cta-btns .btn {
    width:auto;
    min-width:220px;
    justify-content:center;
  }
  p, .spring-note, .spring-disclaimer, .cta-section p, .section-sub, .hero-sub, .page-hero p {
    text-wrap: balance;
  }
}
h1, h2, h3, h4 {
  text-wrap: balance;
}
@media (max-width:430px) {
  .topbar {
    font-size:0.75rem;
    padding:7px 10px;
    letter-spacing:0;
  }
  section {
    padding-top:38px;
    padding-bottom:38px;
  }
  .page-hero,.service-hero {
    padding:28px 0 22px;
  }
  .section-title {
    font-size:1.75rem;
  }
  h1 {
    font-size:clamp(1.45rem,4vw,1.85rem);
  }
  .dropdown-menu {
    min-width:160px;
  }
}
@media (max-width:380px) {
  .topbar {
    font-size:0.71rem;
    padding:6px 8px;
  }
  section {
    padding-top:30px;
    padding-bottom:30px;
  }
  .page-hero,.service-hero {
    padding:22px 0 16px;
  }
  .section-title {
    font-size:1.5rem;
  }
  h1 {
    font-size:1.4rem;
  }
}
8% {
  opacity:0.15;
}
88% {
  opacity:0.15;
}
100% {
  transform:translateY(-110vh) rotate(15deg);
  opacity:0;
}
*:focus-visible {
  outline:3px solid #f5c842;
  outline-offset:3px;
  border-radius:4px;
}
.nav-links>li:focus-within .dropdown-menu {
  display:block;
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.field select:focus-visible {
  outline:2px solid #1a9e8f !important;
  outline-offset:0;
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  .green-dot {
    animation:none !important;
    box-shadow:none;
  }
  .paw-bg span, .btn,.service-card,.service-chip,.bundle-card,.footer-social a,.gallery-card,.area-card,.nav-cta-btn,.nav-login {
    transition:none;
  }
  .btn:hover,.service-card:hover,.bundle-card:hover,.gallery-card:hover,.nav-cta-btn:hover {
    transform:none;
  }
  .pricing-panel.active {
    animation:none;
  }
}

/* Mobile: allow long price strings to wrap instead of forcing the layout wide */
@media (max-width: 640px) {
  .pr-price {
    white-space: normal;
    text-align: right;
  }
}