/* Shared styles for the four legal/policy pages. */
: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;
}
.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;
}
.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), var(--teal));
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.breadcrumb {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--yellow);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}
.policy-section {
  background: var(--gray-light);
  padding: 80px 0;
}
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: var(--shadow);
}
.policy-content .doc-title {
  margin-top: 0;
  font-size: 1.8rem;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.policy-content .last-updated {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 36px;
  border-bottom: 1px solid #f0f4f3;
  padding-bottom: 20px;
}
.policy-content h2 {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin: 32px 0 10px;
}
.policy-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.policy-content ul li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy-content a {
  color: var(--teal);
}
.policy-content a:hover {
  text-decoration: underline;
}
.policy-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.policy-box p {
  margin-bottom: 0;
  color: var(--teal-dark);
  font-weight: 700;
}
.note-box {
  margin-top: 32px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--gray-light);
  border: 1px solid #e5ece9;
}
.note-box p {
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--gray);
}
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo-text span {
  color: var(--yellow);
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: var(--teal);
}
.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--yellow);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact-item i {
  color: var(--teal-mid);
  width: 16px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}
@media (max-width: 860px) {
  .nav-links, .nav-actions {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
  }
  .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: 900px) {
  .policy-content {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn {
    width: auto;
    min-width: 220px;
    justify-content: center;
  }
  section {
    padding-left: 24px;
    padding-right: 24px;
  }
  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) {
  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) {
  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;
  }
}
*: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;
  }
  .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;
  }
}
