
body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff8ef;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' fill='rgba(224, 170, 121, 0.15)'><text x='10' y='30' font-size='30'>🐾</text></svg>");
      background-repeat: repeat;
      background-size: 820px;
      color: #2b4c4c;
      position: relative;
      overflow-x: hidden;
    }

    .wave-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><path fill="%23fddbb2" d="M424.5,301.5Q404,353,362.5,396Q321,439,267.5,462.5Q214,486,167,458Q120,430,87,392Q54,354,64.5,302Q75,250,97,200.5Q119,151,162,125.5Q205,100,264.5,73.5Q324,47,365,94.5Q406,142,428.5,196Q451,250,424.5,301.5Z"/></svg>') no-repeat center / cover;
      z-index: 0;
      opacity: 0.2;
      pointer-events: none;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 28px rgba(20, 76, 62, 0.14);
      border-bottom: 1px solid rgba(21, 71, 58, 0.09);
      color: #1f5245;
      transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.55rem 2rem;
      background: linear-gradient(90deg, rgba(34, 122, 89, 0.1), rgba(248, 214, 115, 0.14));
      border-bottom: 1px solid rgba(21, 71, 58, 0.1);
      font-size: 0.85rem;
    }

    .top-stack {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .top-contact {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.25rem;
    }

    .top-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .top-links .top-link {
      font-size: 0.82rem;
      font-weight: 600;
    }

    .top-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      color: #1f5245;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .top-link i {
      color: #f5d06d;
      font-size: 0.95rem;
    }

    .top-link:hover {
      color: #114c3a;
      transform: translateY(-1px);
    }

    .top-status {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.38rem 0.9rem;
      border-radius: 999px;
      background: rgba(36, 118, 91, 0.16);
      font-weight: 600;
      color: #0f4b38;
      box-shadow: inset 0 0 0 1px rgba(15, 62, 49, 0.08);
    }

    .status-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ff7a7a;
      box-shadow: 0 0 0 0 rgba(255, 122, 122, 0.45);
      animation: statusPulseClosed 2.6s infinite;
    }

    .status-open {
      background: rgba(66, 209, 157, 0.18);
      color: #0d5f45;
    }

    .status-open .status-indicator {
      background: #42d19d;
      animation: statusPulse 2.6s infinite;
    }

    @keyframes statusPulse {
      0% { box-shadow: 0 0 0 0 rgba(66, 209, 157, 0.45); }
      70% { box-shadow: 0 0 0 12px rgba(66, 209, 157, 0); }
      100% { box-shadow: 0 0 0 0 rgba(66, 209, 157, 0); }
    }

    @keyframes statusPulseClosed {
      0% { box-shadow: 0 0 0 0 rgba(255, 122, 122, 0.45); }
      70% { box-shadow: 0 0 0 12px rgba(255, 122, 122, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 122, 122, 0); }
    }

    @media (min-width: 992px) {
      .top-stack {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
      }

      .top-links {
        gap: 1.25rem;
        padding-left: 1.25rem;
        border-left: 1px solid rgba(21, 71, 58, 0.15);
      }
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.9rem 2rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      color: inherit;
      text-decoration: none;
    }

    .site-logo {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f6fdfb;
      box-shadow: 0 6px 18px rgba(31, 66, 56, 0.18);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .clinic-name {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #22594d;
    }

    .logo-text small {
      font-size: 0.75rem;
      color: #4b7064;
      letter-spacing: 0.12em;
    }

    .site-nav {
      margin-left: auto;
      display: flex;
      align-items: center;
    }

    .nav-list {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin: 0;
      padding: 0;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1rem;
      border-radius: 999px;
      background: rgba(240, 248, 245, 0.78);
      color: #245a4c;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(17, 76, 58, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .nav-link .icon-badge {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(36, 118, 91, 0.18);
      color: #1f5c4a;
      transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    }

    .nav-item.is-active .nav-link,
    .nav-link:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, rgba(34, 122, 89, 0.18), rgba(248, 214, 115, 0.18));
      color: #144638;
      box-shadow: 0 10px 26px rgba(22, 87, 66, 0.16);
    }

    .nav-item.is-active .icon-badge,
    .nav-link:hover .icon-badge {
      background: linear-gradient(135deg, #1f7a54, #2fa06e);
      color: #fff;
      transform: scale(1.05);
    }

    .nav-link .label {
      white-space: nowrap;
    }

    .nav-link.accent {
      background: linear-gradient(135deg, #1f7a54, #2fa06e);
      color: #f0fff9;
      box-shadow: 0 10px 24px rgba(31, 122, 84, 0.25);
    }

    .nav-link.accent .icon-badge {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .nav-link.accent:hover {
      background: linear-gradient(135deg, #1c6c4c, #248b5f);
    }

    .nav-link.phone {
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(36, 118, 91, 0.18);
      color: #175f49;
    }

    .nav-link.phone .icon-badge {
      background: #ffcf81;
      color: #965300;
    }

    .nav-link.phone:hover {
      border-color: rgba(36, 118, 91, 0.35);
      transform: translateY(-2px) scale(1.01);
    }

    .nav-greeting {
      margin-left: 0.75rem;
    }

    .nav-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.48rem 1rem;
      border-radius: 999px;
      background: rgba(18, 72, 56, 0.1);
      color: #124836;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .nav-chip i {
      color: #1f7a54;
    }

/* ====== Section Headings ====== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 122, 84, 0.12);
  color: #1f7a54;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: 2.35rem;
  color: #1f5245;
  margin: 0.9rem 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: #3f5c5c;
  font-size: 1.02rem;
}

/* ====== Services highlight ====== */
.services-highlight {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, rgba(239, 255, 248, 0.9), rgba(223, 243, 255, 0.85));
  overflow: hidden;
}

.services-highlight::before {
  content: '';
  position: absolute;
  inset: 18% auto auto -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(47, 160, 110, 0.24), transparent 70%);
  filter: blur(0.5px);
}

.services-highlight::after {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 36% 64% 59% 41% / 48% 63% 37% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(15, 105, 79, 0.22), transparent 68%);
  transform: rotate(18deg);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.2rem;
}

.services-actions {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-solid,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.45rem;
  border-radius: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn-solid {
  background: linear-gradient(135deg, #1f7a54, #2fa06e);
  color: #f0fff9;
  box-shadow: 0 12px 26px rgba(31, 122, 84, 0.28);
  border: none;
}

.btn-solid:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1c6c4c, #248b5f);
  box-shadow: 0 14px 32px rgba(31, 122, 84, 0.32);
}

.btn-outline {
  border: 1.5px solid rgba(31, 122, 84, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #1f5245;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 122, 84, 0.45);
  color: #144c39;
  box-shadow: 0 10px 24px rgba(21, 71, 58, 0.12);
}

.btn-solid i,
.btn-outline i {
  font-size: 1rem;
}

/* ====== Service cards (shared) ====== */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.8rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(35, 96, 77, 0.1);
  box-shadow: 0 18px 40px rgba(17, 54, 44, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(17, 54, 44, 0.16);
}

.service-card__icon .icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f7a54, #2fa06e);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(31, 122, 84, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover .service-card__icon .icon-badge {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 122, 84, 0.32);
}

.service-card__body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.28rem;
  color: #1f5245;
}

.service-card__desc {
  margin: 0;
  color: #3f5c5c;
  font-size: 0.96rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.service-card__desc.expanded,
.service-card__desc--full {
  -webkit-line-clamp: unset;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1f7a54;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-card__link:hover {
  transform: translateX(2px);
  color: #144638;
}

.service-card--empty {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px dashed rgba(31, 122, 84, 0.35);
  box-shadow: none;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.service-card__toggle {
  border: none;
  background: rgba(31, 122, 84, 0.12);
  color: #1f7a54;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card__toggle:hover {
  background: rgba(31, 122, 84, 0.18);
}

.service-card__toggle i {
  transition: transform 0.2s ease;
}

.service-card__toggle.is-open i {
  transform: rotate(180deg);
}

.service-card__toggle.is-hidden {
  display: none;
}

/* ====== Services catalog variations ====== */
.services-page .services-hero {
  padding: 5.5rem 0 3.75rem;
  background: linear-gradient(135deg, rgba(239, 255, 248, 0.92), rgba(223, 243, 255, 0.88));
  position: relative;
  overflow: hidden;
}

.services-page .services-hero::after {
  content: '';
  position: absolute;
  inset: auto -140px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47, 160, 110, 0.18), transparent 75%);
}

.services-page .services-hero h1 {
  font-size: 2.6rem;
  color: #1f5245;
  margin-bottom: 1rem;
}

.services-page .services-hero p {
  font-size: 1.05rem;
  color: #3f5c5c;
  max-width: 780px;
}

.hero-actions {
  margin: 1.6rem 0 1.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  color: #1f5245;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(31, 66, 56, 0.08);
}

.hero-points i {
  color: #1f7a54;
}

.services-catalog {
  padding: 4rem 0 5rem;
  background: #f8fcfb;
}

.catalog-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card--catalog {
  padding: 2.2rem;
}

.service-card--catalog .service-card__icon .icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  font-size: 1.9rem;
}

.service-card--accent-1 {
  background: linear-gradient(145deg, rgba(239, 255, 248, 0.95), rgba(223, 243, 255, 0.9));
}

.service-card--accent-2 {
  background: linear-gradient(145deg, rgba(255, 247, 236, 0.95), rgba(255, 231, 244, 0.9));
}

.service-card--accent-3 {
  background: linear-gradient(145deg, rgba(244, 242, 255, 0.95), rgba(230, 252, 255, 0.9));
}

.service-card--accent-2 .icon-badge {
  background: linear-gradient(135deg, #f08a5d, #f9c74f);
  box-shadow: 0 14px 32px rgba(240, 138, 93, 0.28);
}

.service-card--accent-3 .icon-badge {
  background: linear-gradient(135deg, #5f72be, #9b23ea);
  box-shadow: 0 14px 32px rgba(95, 114, 190, 0.28);
}

/* ====== Gallery ====== */
.gallery-page .gallery-hero {
  padding: 5rem 0 3.2rem;
  background: linear-gradient(135deg, rgba(233, 252, 247, 0.92), rgba(224, 242, 255, 0.86));
  position: relative;
  overflow: hidden;
}

.gallery-page .gallery-hero::after {
  content: '';
  position: absolute;
  inset: auto -120px -140px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(31, 122, 84, 0.18), transparent 70%);
}

.gallery-page .gallery-hero h1 {
  font-size: 2.45rem;
  color: #1f5245;
  margin-bottom: 1rem;
}

.gallery-page .gallery-hero p {
  font-size: 1.02rem;
  color: #3f5c5c;
  max-width: 760px;
  margin: 0;
}

.gallery-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 122, 84, 0.12);
  color: #1f5c4a;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.gallery-meta i {
  color: #1f7a54;
}

.gallery-wrapper {
  padding: 3.8rem 0 5rem;
  background: #f3fbf8;
}

.gallery-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(18, 70, 55, 0.14);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 42px rgba(18, 70, 55, 0.18);
}

.gallery-card__media {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 72%;
  overflow: hidden;
}

.gallery-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(15, 72, 56, 0) 40%, rgba(15, 72, 56, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__overlay span {
  color: #f0fff9;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gallery-empty {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px dashed rgba(31, 122, 84, 0.28);
  box-shadow: 0 12px 30px rgba(18, 70, 55, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.gallery-empty i {
  font-size: 2.5rem;
  color: #1f7a54;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(8, 25, 21, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1100;
}

.gallery-lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.gallery-lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 920px);
  width: 100%;
  background: rgba(12, 38, 32, 0.92);
  border-radius: 1.2rem;
  padding: 1.2rem 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__figure img {
  width: 100%;
  max-height: 72vh;
  border-radius: 0.9rem;
  object-fit: contain;
  background: #000;
}

.gallery-lightbox__figure figcaption {
  color: #dcf4ec;
  font-size: 0.96rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.gallery-lightbox__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.gallery-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.55);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

.gallery-lightbox__nav--prev {
  left: 0.6rem;
}

.gallery-lightbox__nav--next {
  right: 0.6rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* ====== About Page ====== */
.about-page .about-hero {
  padding: 5.2rem 0 3.8rem;
  background: linear-gradient(135deg, rgba(238, 255, 248, 0.92), rgba(226, 242, 255, 0.88));
  position: relative;
  overflow: hidden;
}

.about-hero__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: center;
}

.about-hero__content h1 {
  font-size: 2.55rem;
  color: #1f5245;
  margin: 1rem 0 1rem;
}

.about-hero__content p {
  font-size: 1.05rem;
  color: #3f5c5c;
  max-width: 640px;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(31, 122, 84, 0.14);
  color: #1f7a54;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero__stats {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.about-hero__stats div {
  min-width: 150px;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 26px rgba(17, 70, 55, 0.14);
}

.about-hero__stats .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1f5c4a;
}

.about-hero__stats .label {
  display: block;
  font-size: 0.86rem;
  color: #3f5c5c;
  letter-spacing: 0.03em;
}

.about-hero__image {
  text-align: center;
}

.about-hero__image img {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(17, 54, 44, 0.25);
  border: 6px solid rgba(255, 255, 255, 0.8);
  background: #fdfdfd;
}

.about-overview {
  padding: 3.5rem 0;
  background: #fff;
}

.about-overview__content {
  max-width: 760px;
}

.about-overview__content h2 {
  font-size: 2.1rem;
  color: #1f5245;
  margin: 0.7rem 0 1rem;
}

.about-overview__content p {
  font-size: 1.02rem;
  color: #3f5c5c;
  line-height: 1.75;
}

.about-overview__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.about-overview__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #1f5245;
  font-weight: 600;
}

.about-overview__list i {
  color: #1f7a54;
}

.about-values {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(135deg, rgba(239, 255, 248, 0.8), rgba(231, 244, 255, 0.8));
}

.about-values h2 {
  text-align: center;
  margin: 0.75rem auto 2.2rem;
  max-width: 600px;
  color: #1f5245;
}

.values-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.4rem;
  padding: 2rem 1.6rem;
  text-align: left;
  box-shadow: 0 16px 34px rgba(18, 70, 55, 0.12);
  border: 1px solid rgba(31, 122, 84, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(18, 70, 55, 0.16);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f7a54, #2fa06e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 26px rgba(31, 122, 84, 0.24);
}

.value-card h3 {
  margin: 0 0 0.6rem;
  color: #1f5245;
}

.value-card p {
  margin: 0;
  color: #3f5c5c;
  line-height: 1.6;
}

.about-timeline {
  padding: 4rem 0;
  background: #fff;
}

.about-timeline h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1f5245;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(31, 122, 84, 0.25);
  max-width: 700px;
  margin-inline: auto;
}

.timeline li {
  position: relative;
  padding: 1.2rem 0 1.2rem 1.6rem;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 1.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1f7a54;
  box-shadow: 0 0 0 4px rgba(31, 122, 84, 0.18);
}

.timeline__year {
  font-weight: 700;
  color: #1f7a54;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.timeline__content {
  color: #3f5c5c;
  line-height: 1.6;
}

.about-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(31, 122, 84, 0.92), rgba(47, 160, 110, 0.92));
  color: #f0fff9;
}

.about-cta .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.about-cta__content h2 {
  margin: 0 0 0.6rem;
  font-size: 2.1rem;
}

.about-cta__content p {
  margin: 0;
  max-width: 540px;
  line-height: 1.6;
}

.about-cta__actions {
  display: flex;
  gap: 1rem;
}

/* ====== Account Page ====== */
.account-page {
  background: #f3fbf8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.account-page main {
  flex: 1;
  padding: 4.5rem 0;
}

.account-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.account-hero h1 {
  font-size: 2.3rem;
  color: #1f5245;
  margin: 0.8rem 0 0.75rem;
}

.account-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #3f5c5c;
  line-height: 1.7;
}

.account-hero__meta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.account-hero__meta .label {
  display: block;
  font-size: 0.85rem;
  color: #3f5c5c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-hero__meta .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f7a54;
}

.account-panels {
  margin-top: 1rem;
}

.account-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.account-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.6rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(17, 70, 55, 0.12);
  border: 1px solid rgba(31, 122, 84, 0.12);
  width: min(100%, 340px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(17, 70, 55, 0.16);
}

.account-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, #1f7a54, #2fa06e);
  box-shadow: 0 12px 26px rgba(31, 122, 84, 0.24);
}

.account-card--admin .account-card__icon {
  background: linear-gradient(135deg, #2753e0, #4a7bff);
  box-shadow: 0 12px 26px rgba(39, 83, 224, 0.25);
}

.account-card h2 {
  margin: 0;
  font-size: 1.35rem;
  color: #1f5245;
}

.account-card p {
  margin: 0;
  color: #3f5c5c;
  line-height: 1.6;
}

.account-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: #1f7a54;
  margin-top: auto;
}

.account-card--admin .account-card__cta {
  color: #2f58ff;
}

    .hero {
      text-align: center;
      padding: 60px 20px;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #2b4c4c;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.1rem;
      color: #3f5c5c;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .hero button {
      background-color: #3c655e;
      color: white;
      padding: 12px 28px;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .services {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      padding: 40px 20px;
      position: relative;
      z-index: 1;
    }

    .service-box {
      background: #fff;
      border-radius: 16px;
      width: 220px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .service-box i {
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: #3c655e;
    }

    .service-box p {
      font-size: 1rem;
      color: #2b4c4c;
      font-weight: 500;
    }

    .awards {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .awards h3 {
      font-size: 1.2rem;
      color: #2b4c4c;
      margin-bottom: 10px;
    }

    .awards p {
      font-size: 1rem;
      color: #444;
    }

    .logo-link:hover .site-logo {
      box-shadow: 0 12px 28px rgba(23, 95, 73, 0.25);
      transform: translateY(-2px);
    }
/* ====== FIXED HEADER ====== */
body {
  padding-top: 140px;
}
a {
  text-decoration: none;
}

/* ----- Slider (banner) ----- */
.swiper.mySwiper {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 165px;
  z-index: 0;
}
.swiper.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
}

/* ----- HERO ENHANCEMENTS ----- */
.hero {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  margin-top: 0;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #5fc93c;
  margin-bottom: 1rem;
}
.hero p {
  color: #49bb22;
  margin-bottom: 2rem;
}

/* CTA Button */
.cta-btn {
  background: #1f7a54;
  color: #fff;
  padding: .75rem 2rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: transform .3s;
}
.cta-btn:hover {
  transform: scale(1.05);
  background: #155f40;
}

/* SERVICE-BOX TWEAKS */
.service-box:hover {
  transform: translateY(-8px);
}
.service-box .btn-service {
  margin-top: 1rem;
}

/* ===== SCHEDULE CARD ===== */
.schedule-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}
.schedule-header {
  background: #1f7a54;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}
.schedule-header h2 {
  margin: 0;
  font-weight: 600;
}
.list-group-item {
  border: none;
  padding: .75rem 1.5rem;
  display: flex;
  justify-content: space-between;
}
.list-group-item:nth-child(odd) {
  background: #f1fbf8;
}
.badge-time {
  font-family: monospace;
  background: rgb(8,137,81);
  color: rgb(12,28,121);
}

/* ==== ORLIVET BLOCK ==== */
.orlivet-block {
  background: linear-gradient(110deg, #e8fff2 60%, #d2f0f6 100%);
  border-radius: 1.1rem;
  box-shadow: 0 4px 16px rgba(33,87,44,0.09);
  padding: 2rem 1.5rem;
  margin: 2.5rem auto 3rem;
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1.5px solid #d0ebe1;
  transition: box-shadow .25s;
  animation: fadeInDown 1s;
}
.orlivet-block:hover {
  box-shadow: 0 6px 28px rgba(33,87,44,0.14);
}
.orlivet-logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(70,188,138,0.13);
  overflow: hidden;
}
.orlivet-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.orlivet-content h4 {
  margin: 0 0 4px;
  font-weight: 700;
  color: #167b55;
}
.orlivet-content p {
  margin: 0 0 10px;
  font-size: 1.06rem;
  color: #29584e;
}
.orlivet-link {
  display: inline-block;
  padding: .5rem 1.2rem;
  background: #1f7a54;
  color: #fff;
  border-radius: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .18s, transform .2s;
  margin-top: 2px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px rgba(31,122,84,0.06);
}
.orlivet-link:hover {
  background: #167b55;
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .orlivet-block {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem .7rem;
  }
  .orlivet-logo {
    margin-bottom: .7rem;
  }
}
@media (max-width: 576px) {
  .orlivet-logo {
    width: 60px;
    height: 60px;
  }
  .orlivet-block {
    min-height: auto;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  margin: 3rem auto;
  padding: 2rem 0;
  text-align: center;
  width: 70%;
}
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==== EXTERNAL-CARD STYLES ==== */
.external-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.external-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.external-card .card-img-top {
  position: relative;
}
.external-card .card-img-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}
.external-card .btn-success {
  background: linear-gradient(135deg, #1f7a54, #27ae60);
  border: none;
  transition: background .3s ease, transform .2s ease;
}
.external-card .btn-success:hover {
  background: linear-gradient(135deg, #27ae60, #1f7a54);
  transform: translateY(-2px);
}
.external-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #155f40;
}
.external-card .card-text {
  font-size: .95rem;
  color: #3a4a40;
}
/* ====== SECTION CONTAINER ====== */
section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}
section h2 {
  font-size: 2.2rem;
  color: #2b4c4c;
  margin-bottom: 1.5rem;
}
section p {
  font-size: 1rem;
  color: #3f5c5c;
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* ====== HOURS (Работно време) ====== */
.hours {
  margin: 2rem 0;
  text-align: left;
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
}
.hours h3 {
  font-size: 1.5rem;
  color: #3c655e;
  margin-bottom: 1rem;
}
.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #3f5c5c;
}
.hours li:last-child {
  border-bottom: none;
}
.hours li span:first-child {
  font-weight: 600;
  color: #2b4c4c;
}

/* ====== LEAVE DAYS (Отпуски) ====== */
.leave-days {
  margin: 2rem 0;
  text-align: left;
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
}
.leave-days h4 {
  font-size: 1.3rem;
  color: #3c655e;
  margin-bottom: 1rem;
}
.leave-days ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.leave-days li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #3f5c5c;
}
.leave-days li:last-child {
  border-bottom: none;
}
.leave-days li span:first-child {
  font-weight: 600;
  color: #2b4c4c;
}

/* ====== SECTION FORM ====== */
section form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section form input,
section form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
section form input:focus,
section form textarea:focus {
  border-color: #3c655e;
  outline: none;
}
section form button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #3c655e;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}
section form button:hover {
  background-color: #335049;
}

/* ====== ICON SPACING ====== */
section p i {
  margin-right: 0.5rem;
  color: #3c655e;
}
/* ====== OUR SERVICES WRAPPER ====== */
section#our-services {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}
section#our-services h2 {
  font-size: 2.2rem;
  color: #2b4c4c;
  margin-bottom: 2rem;
}

/* ====== GRID LAYOUT FOR SERVICES ====== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* ====== SERVICE BOX TRANSITIONS & HOVER ====== */
.service-box {
  /* add smooth transform & shadow transitions */
  transition: transform .2s, box-shadow .2s;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* adjust the icon spacing slightly (was 10px → now 12px) */
.service-box i {
  margin-bottom: 12px;
}

/* add a bottom margin inside the text block */
.service-box p {
  margin-bottom: .5rem;
}

/* new small description under each box */
.service-box small {
  display: block;
  font-size: .9rem;
  color: #576e6e;
}
/* ====== GALLERY GRID ====== */
.gallery {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 1rem 2rem;
}

/* ====== GALLERY ITEM & IMAGE ====== */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ====== CAPTION OVERLAY ====== */
.gallery-item .caption {
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  background: #ffffffee;
}
/* ====== ОБЩ CSS ====== */
body {
  margin: 0;
  font-family: sans-serif;
  background: #f7f7f7;
  color: #333;
}
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
h1,
h2 {
  margin: 1rem 0 0.5rem;
}

/* ====== BUTTON ====== */
.btn {
  padding: 0.5rem 1rem;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}

/* ====== CLIENT PORTAL ====== */
.client-portal {
  background: #f7fcfb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.client-portal__main {
  flex: 1;
  padding-bottom: 4rem;
}

.client-portal__intro {
  padding: 4rem 0 3rem;
  text-align: center;
}

.client-portal__intro h1 {
  font-size: 2.4rem;
  color: #1f5245;
  margin: 0.8rem 0 0.7rem;
}

.client-portal__intro p {
  max-width: 700px;
  margin: 0 auto;
  color: #3f5c5c;
  line-height: 1.7;
}

.client-portal__meta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.client-portal__meta .label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #3f5c5c;
  text-transform: uppercase;
}

.client-portal__meta .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f7a54;
}

.client-portal__pets,
.client-portal__booking,
.client-portal__upcoming,
.client-portal__history,
.client-portal__profile {
  padding: 3rem 0;
}

.muted {
  color: #6c8180;
  font-size: 0.95rem;
}

.pets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pet-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.25rem;
  padding: 1.4rem;
  box-shadow: 0 16px 32px rgba(17, 70, 55, 0.12);
  border: 1px solid rgba(31, 122, 84, 0.12);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pet-card__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background: #f0f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-card__placeholder {
  font-size: 2rem;
  color: #1f7a54;
}

.pet-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #1f5245;
}

.pet-card__specie {
  margin: 0;
  font-size: 0.95rem;
  color: #3f5c5c;
}

.pet-card__last {
  margin: 0;
  font-size: 0.9rem;
  color: #1f7a54;
}

.pet-card__last--empty {
  color: #6c8180;
}

.booking-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.5rem;
  padding: 2.2rem;
  box-shadow: 0 22px 44px rgba(17, 70, 55, 0.15);
  border: 1px solid rgba(31, 122, 84, 0.1);
}

.booking-card__header h2 {
  margin: 0;
  color: #1f5245;
}

.booking-card__header p {
  margin: 0.4rem 0 1.4rem;
  color: #3f5c5c;
}

.booking-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field span {
  font-weight: 600;
  color: #1f5245;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(31, 122, 84, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  color: #1f5245;
}

.form-field textarea {
  resize: vertical;
}

.form-field--address {
  display: none;
}

.visit-type {
  display: inline-flex;
  gap: 1rem;
  background: rgba(31, 122, 84, 0.08);
  padding: 0.45rem;
  border-radius: 999px;
}

.visit-type label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #1f5245;
}

.visit-type input {
  accent-color: #1f7a54;
}

.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.slot {
  border: 1px solid rgba(31, 122, 84, 0.28);
  border-radius: 0.75rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  color: #1f5245;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.slot:hover {
  background: rgba(31, 122, 84, 0.12);
}

.slot--taken {
  opacity: 0.4;
  cursor: not-allowed;
}

.slot--selected {
  background: linear-gradient(135deg, #1f7a54, #2fa06e);
  color: #f0fff9;
  border-color: transparent;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.booking-status {
  min-height: 1.2rem;
  font-size: 0.92rem;
  color: #3f5c5c;
}

.booking-status--success {
  color: #1f7a54;
}

.booking-status--error {
  color: #d81b60;
}

.booking-status::before {
  content: '';
  margin-right: 0.4rem;
}

.booking-status--success::before {
  content: '\2714';
}

.booking-status--error::before {
  content: '\26A0';
}

.btn-solid.is-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.6);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 0.6rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.table-responsive {
  overflow-x: auto;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(17, 70, 55, 0.12);
}

.portal-table th,
.portal-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(31, 122, 84, 0.08);
  text-align: left;
  font-size: 0.95rem;
}

.portal-table th {
  background: rgba(31, 122, 84, 0.08);
  color: #1f5245;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.portal-table tbody tr:last-child td {
  border-bottom: none;
}

.status {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.status--booked { color: #f39c12; }
.status--completed { color: #1f7a54; }
.status--canceled { color: #d81b60; }

.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.history-list li {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 14px 28px rgba(17, 70, 55, 0.12);
  border: 1px solid rgba(31, 122, 84, 0.1);
}

.history-list strong {
  color: #1f5245;
}

.history-list span {
  display: block;
  color: #3f5c5c;
  font-size: 0.9rem;
}

.history-pet {
  margin-top: 0.4rem;
  font-weight: 600;
  color: #1f7a54;
}

.history-notes {
  margin: 0.4rem 0 0;
  color: #3f5c5c;
  font-size: 0.92rem;
}

.profile-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(17, 70, 55, 0.12);
  border: 1px solid rgba(31, 122, 84, 0.1);
}

.profile-form .form-row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.5rem;
}

.profile-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: #1f5245;
}

.profile-form input {
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(31, 122, 84, 0.2);
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.profile-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.disabled,
.flatpickr-day .disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* --------------------------------------------------
 * Footer
 * -------------------------------------------------- */
.site-footer {
  position: relative;
  margin-top: 4rem;
  background: linear-gradient(135deg, #1d3f3a 0%, #17302d 100%);
  color: #f2f9f7;
  overflow: hidden;
  padding: 3.5rem 1.5rem 2rem;
}

.site-footer .footer-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 12%, transparent 13%);
  background-size: 110px 110px;
  opacity: 0.75;
  pointer-events: none;
}

.site-footer .footer-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .footer-logo img {
  width: 130px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #d7ece6;
  max-width: 260px;
}

.footer-animals {
  font-size: 2rem;
  display: flex;
  gap: 1rem;
  color: #f5d06d;
}

.site-footer h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #f8fffd;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-contact li,
.footer-links li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact i,
.footer-links i {
  color: #f5d06d;
  margin-top: 0.15rem;
}

.footer-contact a,
.footer-links a {
  color: #f2f9f7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #f5d06d;
}

.footer-hours ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2f9f7;
  font-size: 0.95rem;
}

.footer-hours ul li:last-child {
  border-bottom: none;
}

.footer-hours .day-name {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-hours .day-hours,
.footer-hours .day-off {
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  background: rgba(18, 72, 56, 0.25);
  color: #f5fdf9;
}

.footer-hours .day-off {
  background: rgba(230, 83, 83, 0.28);
  color: #ffe8e8;
}

.footer-hours .day-hours {
  background: rgba(245, 208, 109, 0.22);
  color: #fff8e2;
}

.footer-leaves {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(15, 88, 66, 0.18);
  backdrop-filter: blur(4px);
}

.footer-leaves h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #f5d06d;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-leaves ul {
  display: grid;
  gap: 0.55rem;
}

.footer-leaves li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f2f9f7;
}

.footer-leaves li span {
  font-weight: 500;
}

.footer-leaves li time {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #fff3d6;
}

.footer-help {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #cfe0db;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #c9d9d4;
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #f5d06d;
}

.footer-love i {
  color: #ff7aa2;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ---------- Header interactions ---------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 118, 91, 0.12);
  color: #1f5245;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-toggle:hover {
  background: rgba(36, 118, 91, 0.18);
  transform: translateY(-1px);
}

body.scrolled .site-header {
  box-shadow: 0 14px 28px rgba(17, 54, 44, 0.12);
}

body.scrolled .site-logo {
  transform: scale(0.94);
}

@media (max-width: 1200px) {
  .header-inner {
    padding: 0.7rem 1.6rem;
    gap: 1.1rem;
  }

  .header-top {
    padding: 0.48rem 1.6rem;
  }

  body {
    padding-top: 128px;
  }

  .section-head h2 {
    font-size: 2.1rem;
  }

  .services-highlight {
    padding: 4.6rem 0 3.6rem;
  }

  .gallery-page .gallery-hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translate(-50%, -18px);
    width: min(92vw, 420px);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(23, 57, 46, 0.18);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    backdrop-filter: blur(8px);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item + .nav-item {
    margin-left: 0;
  }

  .nav-greeting,
  .nav-auth,
  .nav-cta {
    margin-left: 0;
  }

  .nav-link,
  .nav-greeting span {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    padding: 0.65rem 1rem;
    font-size: 1.05rem;
  }

  .nav-link .icon-badge {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  body {
    padding-top: 124px;
  }

  .service-card {
    padding: 1.65rem;
  }

  .service-card--catalog {
    padding: 1.9rem;
  }

  .services-page .services-hero {
    padding: 5rem 0 3.2rem;
  }

  .gallery-meta {
    gap: 0.6rem;
  }

  .gallery-card__media {
    padding-bottom: 78%;
  }

  .gallery-lightbox__figure {
    max-width: min(94vw, 720px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .about-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero__stats {
    justify-content: center;
  }

  .about-hero__image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.55rem 1.1rem;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.6rem 1.1rem;
  }

  .top-contact {
    flex-direction: column;
    gap: 0.65rem;
  }

  .logo-text {
    display: none;
  }

  .site-logo {
    width: 64px;
    height: 64px;
  }

  .site-nav {
    top: 112px;
    width: min(92vw, 360px);
    padding: 1.25rem;
  }

  .nav-link {
    font-size: 1rem;
  }

  body {
    padding-top: 118px;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .services-highlight {
    padding: 4.2rem 0 3.2rem;
  }

  .services-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-actions .btn-solid,
  .services-actions .btn-outline {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .services-page .services-hero h1 {
    font-size: 2.2rem;
  }

  .service-card__icon .icon-badge {
    width: 56px;
    height: 56px;
  }

  .service-card--catalog .service-card__icon .icon-badge {
    width: 64px;
    height: 64px;
  }

  .gallery-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-card__media {
    padding-bottom: 82%;
  }

  .gallery-lightbox__figure {
    padding: 1rem;
  }

  .about-hero__content h1 {
    font-size: 2.3rem;
  }

  .about-hero__stats {
    gap: 0.9rem;
    justify-content: flex-start;
  }

  .about-values h2 {
    font-size: 1.9rem;
  }

  .about-cta .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .about-cta__actions .btn-solid,
  .about-cta__actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .account-hero h1 {
    font-size: 2rem;
  }

  .account-cards {
    gap: 1.1rem;
  }

  .account-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .top-link {
    font-size: 0.8rem;
  }

  .top-status {
    align-self: stretch;
    justify-content: center;
    font-size: 0.82rem;
  }

  .site-nav {
    top: 106px;
    border-radius: 18px;
  }

  .nav-link,
  .nav-greeting span {
    font-size: 0.95rem;
  }

  body {
    padding-top: 110px;
  }

  .section-head h2 {
    font-size: 1.82rem;
  }

  .services-page .services-hero h1 {
    font-size: 2rem;
  }

  .hero-points li {
    font-size: 0.95rem;
  }

  .btn-solid,
  .btn-outline {
    width: 100%;
  }

  .service-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .service-card__toggle {
    align-self: flex-start;
  }

  .gallery-page .gallery-hero h1 {
    font-size: 1.85rem;
  }

  .gallery-lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox__figure img {
    max-height: 60vh;
  }

  .about-hero__content h1 {
    font-size: 2rem;
  }

  .about-overview__content h2 {
    font-size: 1.8rem;
  }

  .about-hero__stats {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__stats div {
    width: 100%;
  }

  .account-hero__meta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .client-portal__intro h1 {
    font-size: 2rem;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    justify-content: center;
  }
}
