/* ============================================================
   HAPPY PETTINGS – MAIN STYLESHEET
   Design: Dark/Gold entertainment-site aesthetic
   Font: Inter (400, 500, 700, 800, 900)
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --gold:        #D8A73A;
  --gold-dark:   #C8870A;
  --gold-light:  #F0C96A;
  --bg:          #000;
  --bg-2:        #0D0B09;
  --bg-card:     #1A1310;
  --bg-card-2:   #1E1814;
  --text:        #F0EBE3;
  --text-muted:  #8A7260;
  --text-dim:    #5A4A3A;
  --border:      rgba(216,167,58,0.15);
  --border-bright: rgba(216,167,58,0.35);
  --nav-h:       72px;
  --transition:  0.3s ease;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTIONS ──────────────────────────────────────────── */
.section { padding: 100px 0; }

/* ─── SECTION HEADER (label-rule + title + desc) ──────── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border-bright);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── GOLD BUTTONS ──────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216,167,58,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-bright);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-bright);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost-gold:hover {
  background: rgba(216,167,58,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════════════════ */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: #0A0806;
  border-left: 1px solid var(--border);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { right: 0; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(3px);
}
.drawer-backdrop.active { display: block; }

.drawer-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
}
.drawer-logo .logo-accent { color: var(--gold); }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.drawer-links a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.drawer-links a:hover {
  color: var(--gold);
  background: rgba(216,167,58,0.06);
}

.drawer-cta {
  display: block;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 20px;
}

.drawer-contact {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.drawer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.drawer-contact a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,8,6,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon img{    width: 34px;margin-right: 5px;}

.logo-paw-svg { flex-shrink: 0; }

.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(216,167,58,0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--gold);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.nav-phone:hover {
  background: rgba(216,167,58,0.1);
  border-color: var(--gold);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(216,167,58,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }


/* ════════════════════════════════════════════════════════
   MOBILE PILL NAV
════════════════════════════════════════════════════════ */
.pill-nav {
  display: none;
  padding: 6px 8px;
  gap: 4px;
  backdrop-filter: blur(12px);
}
.pill-link {
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.pill-link:hover,
.pill-link.active {
  color: #000;
  background: var(--gold);
}


/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* layered background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.70) 50%,
    rgba(0,0,0,0.50) 100%
  );
}

.hero-fx-gold-haze {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(216,167,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-fx-spotlight {
  position: absolute;
  top: 0;
  width: 400px;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}
.hero-fx-spotlight-1 {
  left: 20%;
  background: linear-gradient(to bottom, rgba(216,167,58,0.06) 0%, transparent 60%);
  transform: skewX(-8deg);
}
.hero-fx-spotlight-2 {
  left: 45%;
  background: linear-gradient(to bottom, rgba(216,167,58,0.04) 0%, transparent 50%);
  transform: skewX(8deg);
}

.hero-fx-ray {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  pointer-events: none;
  opacity: 0.15;
}
.hero-fx-ray-1 {
  left: 35%;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 60%);
  animation: rayPulse 4s ease-in-out infinite;
}
.hero-fx-ray-2 {
  left: 65%;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 50%);
  animation: rayPulse 4s ease-in-out infinite 2s;
}
@keyframes rayPulse {
  0%, 100% { opacity: 0.08; }
  50%       { opacity: 0.25; }
}

/* hero inner layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  min-height: calc(100vh - var(--nav-h));
}

/* hero text */
.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216,167,58,0.1);
  border: 1px solid var(--border-bright);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title-white { color: var(--text); }
.hero-title-gold  { color: var(--gold); }

.hero-services-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-dot { color: var(--gold); font-size: 1rem; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* hero float cards (right side) */
.hero-float-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 260px;
  flex-shrink: 0;
}

.float-card {
  background: rgba(26,19,16,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  animation: floatBob 3s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 0.5s; }
.float-card:nth-child(3) { animation-delay: 1s; }
.float-card:nth-child(4) { animation-delay: 1.5s; }
.float-card:nth-child(5) { animation-delay: 2s; }
.float-card:nth-child(6) { animation-delay: 2.5s; }

.float-card:hover {
  border-color: var(--border-bright);
  background: rgba(216,167,58,0.06);
  transform: translateY(-4px);
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.fc-icon { line-height: 0; }

.fc-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-svg {
  color: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
  display: block;
}
.scroll-svg-dot {
  animation: dotBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(6px); opacity: 1; }
}
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}


/* ════════════════════════════════════════════════════════
   SERVICES SECTION (panels)
════════════════════════════════════════════════════════ */
.services-section { background: var(--bg-2); }

/* sticky services filter */
.services-filter-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 -16px 24px;
  padding: 12px 16px;
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-filter-scroll {
  flex: 1;
  overflow: hidden;
}

.services-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
  scroll-behavior: smooth;
}
.services-filters::-webkit-scrollbar { display: none; }

.sf-tab {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.sf-tab:hover { border-color: var(--border-bright); color: var(--text); }
.sf-tab.active {
  background: rgba(216,167,58,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .services-filter-wrap { padding: 10px 12px; margin: 0 -12px 20px; }
  .sf-tab { padding: 7px 14px; font-size: 0.7rem; }
}

.service-panel {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 460px;
  margin-bottom: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 24px;
}
.service-panel-reverse { grid-template-columns: 60% 40%; }
.service-panel-reverse .panel-img-col { order: 2; }
.service-panel-reverse .panel-content-col { order: 1; }

.panel-img-col {
  position: relative;
  overflow: hidden;
}
.panel-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-panel:hover .panel-img-col img { transform: scale(1.04); }

.panel-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.overlay-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.overlay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.overlay-tags span {
  padding: 4px 10px;
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0,0,0,0.4);
}

/* panel content */
.panel-content-col {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-type-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.panel-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.panel-title-line {
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.type-btn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.type-btn {
  padding: 8px 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.type-btn:hover {
  border-color: var(--border-bright);
  color: var(--text);
}
.type-btn.active {
  background: rgba(216,167,58,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.panel-expanded {}

.expanded-tag {
  display: inline-block;
  background: rgba(216,167,58,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.expanded-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.expanded-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.expanded-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}
.el-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(216,167,58,0.15);
  color: var(--gold);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.btn-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.btn-panel-cta:hover {
  background: rgba(216,167,58,0.08);
  border-color: var(--gold);
}

.panel-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.btn-panel-call,
.btn-panel-book,
.btn-panel-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-panel-call {
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text-muted);
}
.btn-panel-call:hover {
  background: rgba(216,167,58,0.06);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-panel-book {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #1a1a1a;
}
.btn-panel-book:hover {
  background: #e6b347;
  border-color: #e6b347;
}

.btn-panel-wa {
  background: transparent;
  border: 1px solid rgba(37,211,102,0.45);
  color: #25d366;
}
.btn-panel-wa:hover {
  background: rgba(37,211,102,0.1);
  border-color: #25d366;
}

@media (max-width: 560px) {
  .panel-cta-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .btn-panel-call,
  .btn-panel-book,
  .btn-panel-wa {
    padding: 10px 6px;
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    gap: 4px;
  }
  .btn-panel-call svg,
  .btn-panel-book svg,
  .btn-panel-wa svg {
    width: 12px;
    height: 12px;
  }
}


/* ════════════════════════════════════════════════════════
   BREEDS / OCCASIONS GRID
════════════════════════════════════════════════════════ */
.breeds-section { background: var(--bg); }

.breeds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.breed-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
}
.breed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.breed-card:hover img { transform: scale(1.07); }

.breed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.breed-card:hover .breed-overlay { opacity: 1; }

.breed-overlay span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.breed-card-all .breed-overlay { opacity: 1; }

.breed-overlay-all {
  background: linear-gradient(to top, rgba(216,167,58,0.35) 0%, transparent 70%);
}
.breed-overlay-all span {
  font-size: 1.1rem;
  font-weight: 900;
}


/* ════════════════════════════════════════════════════════
   DAILY ROUTINE
════════════════════════════════════════════════════════ */
.routine-section { background: var(--bg-2); }

.routine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.routine-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.routine-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-2);
  transform: translateY(-4px);
}

.routine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: var(--transition);
}
.routine-card:hover::before { opacity: 1; }

.routine-time-badge {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(216,167,58,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
}

.routine-icon {
  margin-bottom: 12px;
  line-height: 0;
}

.routine-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.routine-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ════════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════════ */
.gallery-section { background: var(--bg); }

/* filter tabs */
.gallery-filter-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.gallery-filter-scroll {
  flex: 1;
  overflow: hidden;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.gallery-filters::-webkit-scrollbar { display: none; }

.gf-tab {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.gf-tab:hover { border-color: var(--border-bright); color: var(--text); }
.gf-tab.active {
  background: rgba(216,167,58,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.gallery-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* masonry grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  grid-auto-flow: dense;
}

.g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.g-item.hidden { display: none; }

.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }

.g-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: rgba(216,167,58,0.85);
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.g-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(216,167,58,0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.g-play-btn:hover { background: var(--gold-light); transform: scale(1.1); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lb-content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-content img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(26,19,16,0.9);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(216,167,58,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.lb-next:hover { transform: translateY(-50%) scale(1.05); }


/* ════════════════════════════════════════════════════════
   PET HOSTS SECTION
════════════════════════════════════════════════════════ */
.hosts-section { background: var(--bg-2); }

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 9px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tab-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px;
  }
  .tab-row::-webkit-scrollbar { display: none; }
}
.tab-btn:hover { border-color: var(--border-bright); color: var(--text); }
.tab-btn.active {
  background: rgba(216,167,58,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.host-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.host-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.host-card.hidden { display: none; }

.host-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.host-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.host-card:hover .host-img-wrap img { transform: scale(1.05); }

.host-avail {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.host-avail-green { background: rgba(34,197,94,0.2); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.host-avail-amber { background: rgba(216,167,58,0.2); color: var(--gold); border: 1px solid var(--border); }

.host-body { padding: 20px; }

.host-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.host-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.host-rating-val { font-size: 0.8rem; font-weight: 700; color: var(--gold); }

.host-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.host-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}


/* ════════════════════════════════════════════════════════
   REVIEWS SECTION
════════════════════════════════════════════════════════ */
.reviews-section { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: var(--border-bright);
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-stars-row {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
  flex: 1;
}

.review-quote.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-readmore {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0 0 16px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--transition);
}

.review-readmore:hover { color: var(--text); }

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.review-service {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviews-loadmore-row {
  text-align: center;
  margin-top: 36px;
}

.reviews-cta-row {
  text-align: center;
  margin-top: 20px;
}


/* ════════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════════ */
.about-section { background: var(--bg-2); }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cred-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}
.cred-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-2);
  transform: translateY(-4px);
}

.cred-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.cred-star { font-size: 1.3rem; }

.cred-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════════════════
   CONTACT / BOOKING FORM
════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

/* left info */
.contact-info-col {}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(216,167,58,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
a.ci-value:hover { color: var(--gold); }

.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(216,167,58,0.08);
  transform: translateY(-2px);
}

/* right form */
.contact-form-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row-2 .form-group { margin-bottom: 0; }

label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.req { color: var(--gold); }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--text-dim); }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,167,58,0.1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(3) hue-rotate(0deg);
}

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%238A7260'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select option { background: #1A1310; color: var(--text); }

textarea { resize: vertical; min-height: 96px; }

.btn-form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  font-size: 0.8rem;
  margin-top: 4px;
  letter-spacing: 2px;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 14px;
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.form-alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
}
.form-alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
}


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: #050402;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-divider-top {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-dark), transparent);
  opacity: 0.5;
}

.footer-top { padding: 80px 0 60px; }

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
}
.footer-logo-accent { color: var(--gold); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 280px;
}

.footer-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
.f-stars { color: var(--gold); letter-spacing: 2px; }
.f-rating-text { color: var(--text-muted); }

.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(216,167,58,0.08);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a:hover { color: var(--gold); }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.footer-wa-btn:hover {
  background: rgba(37,211,102,0.2);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-credits .heart { color: var(--gold); }


/* ════════════════════════════════════════════════════════
   PACKAGE MODAL
════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(216,167,58,0.05);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close-btn {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px -48px auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  flex-shrink: 0;
}
.modal-close-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(216,167,58,0.08); }

.modal-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(216,167,58,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 10px;
}

.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.modal-body { padding: 24px 32px; }

.modal-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 4px;
}

.modal-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 14px 0 4px;
}

.modal-body ul { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.modal-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.modal-body ul li .el-check {
  background: rgba(216,167,58,0.1);
  color: var(--gold);
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  position: sticky;
  bottom: 0;
  background: var(--bg-card);
  z-index: 2;
}

/* ── Rich modal (service detail popup) ── */
.modal-box-rich { max-width: 640px; }

.modal-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.modal-google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.modal-stars { color: #f9ab00; font-size: 0.8rem; letter-spacing: 1px; }
.modal-rating-text { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.modal-review-count { font-size: 0.75rem; color: var(--text-muted); }

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 6px 0 4px;
}

.modal-location-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.modal-highlight {
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(216,167,58,0.07);
  border: 1px solid rgba(216,167,58,0.18);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 18px !important;
}

.modal-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.modal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.modal-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-style: italic;
}

.modal-section-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 !important;
  margin-top: 0 !important;
}

.modal-section-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.modal-section-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.3;
}

.modal-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
  color: var(--text);
}
.modal-icon-list li::before { display: none; }
.modal-icon-list li .el-check {
  background: rgba(216,167,58,0.1);
  color: var(--gold);
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ════════════════════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1310;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(216,167,58,0.4);
  z-index: 900;
  transition: var(--transition);
  border: 1px solid #25d366;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(216,167,58,0.5);
}

.float-wa-tooltip {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-wa-tooltip::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--border);
  border-left-width: 0;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: var(--transition);
}
.float-phone:hover {
  background: rgba(216,167,58,0.1);
  transform: scale(1.05);
}


/* ════════════════════════════════════════════════════════
   FADE-IN ANIMATION
════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════════════
   FIELD ERROR (inline form validation)
════════════════════════════════════════════════════════ */
.field-error {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (max 1100px)
════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-float-cards  { width: 220px; }
  .float-card        { padding: 12px 10px; }
  .fc-label          { font-size: 0.58rem; }

  .hosts-grid        { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner  { grid-template-columns: 1fr 1fr; gap: 36px; }

  .service-panel,
  .service-panel-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-reverse .panel-img-col { order: 0; }
  .service-panel-reverse .panel-content-col { order: 0; }

  .panel-img-col { height: 300px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-col { max-width: 480px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (max 768px)
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* nav */
  .logo-text,.nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  /* pill nav — sits above floating buttons */
  .pill-nav { display: flex; bottom: 16px; }

  /* hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .hero-float-cards { display: none; }
  .hero-title       { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-services-row {
    font-size: 0.62rem;
    gap: 6px;
  }
  .hero-btns { flex-direction: row; align-items: flex-start; }

  /* service panel content */
  .panel-content-col { padding: 28px 24px; }

  /* breeds */
  .breeds-grid { grid-template-columns: repeat(2, 1fr); }

  /* routine */
  .routine-grid { grid-template-columns: 1fr 1fr; }

  /* gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g-wide { grid-column: span 1; }
  .g-tall { grid-row: span 1; }

  /* hosts */
  .hosts-grid { grid-template-columns: repeat(2, 1fr); }

  /* credentials */
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }

  /* trust bar */
  .trust-bar    { flex-direction: column; gap: 16px; padding: 24px; }
  .trust-item   { padding: 0; }
  .trust-divider { width: 100%; height: 1px; }

  /* contact form */
  .contact-form-col { padding: 28px 20px; }
  .form-row-2       { grid-template-columns: 1fr; }

  /* footer */
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* modal */
  .modal-header, .modal-body, .modal-footer { padding-left: 20px; padding-right: 20px; }
  .modal-footer { flex-direction: column; }

  /* floats — moved up to clear pill nav */
  .float-wa    { width: 50px; height: 50px; bottom: 76px; left: 16px; }
  .float-phone { width: 50px; height: 50px; bottom: 76px; right: 16px; }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE – SMALL (max 480px)
════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .breeds-grid      { grid-template-columns: 1fr 1fr; }
  .routine-grid     { grid-template-columns: 1fr; }
  .hosts-grid       { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide           { grid-column: span 1; }
  .g-tall           { grid-row: span 1; }

  /* .hero-services-row .hero-dot:nth-child(6),
  .hero-services-row span:nth-child(7),
  .hero-services-row span:nth-child(8),
  .hero-services-row span:nth-child(9) { display: none; } */

  .tab-row { gap: 6px; }
  .tab-btn { padding: 7px 14px; font-size: 0.72rem; }

  .panel-content-col { padding: 22px 16px; }
  .contact-form-col  { padding: 22px 16px; }

  .nav-inner{gap: 5px;}

  /* footer column stacks with less gap */
  .footer-top { padding: 56px 0 40px; }

  /* pill nav full-width on tiny screens */
  .pill-nav {
    width: calc(100% - 32px);
    overflow-x: scroll;
    scrollbar-width: none;
    background: rgba(26, 19, 16, 0.95);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px 40px 4px 8px;
  }
  .hero{    min-height: 87vh;}
  .hero-inner{    min-height: calc(80vh - var(--nav-h));}
  .pill-link { padding: 8px 10px; font-size: 0.68rem; }
  .float-wa    { bottom: 72px; left: 12px; right: auto; }
  .float-phone { bottom: 72px; right: 12px; }
  .nav-cta{display: block;}
  .btn-nav-cta{display: none;}
  .nav-cta .nav-phone{margin-left: -40px; z-index: 9999; position: relative;}
  .hero-dot{font-size: 10px;}
  .hero-services-row{margin-bottom: 26px;}
  .note-section label{font-size: 10px;}
  .note-section label a{color: #c3c3c3;}
  .services-filter-wrap{padding: 2px 12px;}
  .sf-tab{border-radius: 0;border:0; border-bottom: 1px solid transparent;padding: 3px 8px;background: transparent;}
  .sf-tab.active{background: transparent;}
}


/* MF Phone & Date widget wrappers  */
.mf-phone-fg { }
.mf-date-fg { position: relative; }

/*  Phone row  */
.carex-phone-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

.carex-cc-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 10px;
  background: #f5fbf7;
  border: 1.5px solid #cdddd5;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #1a2b22;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.carex-cc-btn:hover,
.carex-cc-btn.cx-cc-open { background: #e6f4ed; border-color: #1a5c38; }

.carex-cc-flag { font-size: 16px; line-height: 1; }
.carex-cc-code { font-size: 12px; font-weight: 700; color: #1a5c38; }
.carex-cc-arrow { color: #6b8c7a; flex-shrink: 0; }

/*Unified single-box phone display */
.carex-digits-wrap {
  flex: 1;
  position: relative;
  cursor: text;
  display: flex;
  align-items: center;
  height: 44px;
  border:1px solid var(--border);
  border-radius: 11px;
  background: #1e1814;
  padding: 0 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}

.carex-digits-wrap.cx-focused {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(26,92,56,.1);
}

.carex-digits-wrap.cx-complete {
  border-color: #2f2f2f;
  box-shadow: 0 0 0 3px rgba(26,92,56,.15);
  background: #2d2214;
}
.carex-digits-wrap.cx-complete::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  flex-shrink: 0;
  z-index: 2;
  animation: cxCheckIn 0.22s ease forwards;
}
@keyframes cxCheckIn {
  from { opacity: 0; transform: translateY(-50%) scale(0.6); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

.carex-digits-group {
  display: contents;
}

.carex-digit-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  font-size: 15px;
  font-weight: 700;
  color: #5a4a2e;
  user-select: none;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.15s;
}

.carex-digit-x {
  font-size: 15px;
  font-weight: 600;
  color: #5a4a2e;
  letter-spacing: 0;
  pointer-events: none;
}

.carex-digit-box.cx-filled {
  color: #5a4a2e;
}

.carex-digit-box.cx-active {
  position: relative;
}
.carex-digit-box.cx-active::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background: #1a5c38;
  border-radius: 2px;
  animation: cxCursorBlink 1s step-end infinite;
}
.carex-digit-box.cx-active.cx-cursor-end::before {
  display: none;
}
.carex-digit-box.cx-active.cx-cursor-end::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background: #1a5c38;
  border-radius: 2px;
  animation: cxCursorBlink 1s step-end infinite;
}

@keyframes cxCursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.carex-digits-sep {
  font-size: 15px;
  font-weight: 700;
  color: #5a4a2e;
  flex-shrink: 0;
  margin: 0 2px;
  user-select: none;
}

.carex-digits-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1px;
  color: transparent;
  caret-color: transparent;
  cursor: text;
  z-index: 1;
}

.carex-cc-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
      background: #1e1814;
    border: 1px solid var(--border);
  border-radius: 11px;
  box-sizing: border-box;
}

.carex-cc-wrap .carex-cc-code {
  font-size: 14px;
  font-weight: 700;
  color: #5a4a2e;
}

.carex-cc-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: auto;
  min-width: 260px;
  background: #fff;
  border: 1.5px solid #d4e8db;
  border-radius: 13px;
  box-shadow: 0 10px 32px rgba(26,92,56,.18);
  z-index: 1100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 280px;
}

.carex-cc-dropdown.cx-cc-open { display: flex; }

.carex-cc-search-wrap {
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e8eeea;
  flex-shrink: 0;
}

.carex-cc-search {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #cdddd5;
  border-radius: 8px;
  font-size: 12px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.carex-cc-search:focus { border-color: #1a5c38; }

.carex-cc-list {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #c0d8c8 transparent;
}

.carex-cc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #1a2b22;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f5f2;
}

.carex-cc-item:last-child { border-bottom: none; }
.carex-cc-item:hover { background: #e8f5ed; }
.carex-cc-item.cx-cc-selected { background: #e6f4ed; font-weight: 700; }

.carex-cc-item-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
.carex-cc-item-name { flex: 1; font-size: 12.5px; }
.carex-cc-item-dial { font-size: 12px; font-weight: 700; color: #1a5c38; }

/*Calendar trigger button */
.carex-cal-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  width: 100%;
    padding: 12px 16px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    color: #5a4a2e;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.carex-cal-btn:focus, .carex-cal-btn.cx-cal-open {
  border-color: #1a5c38;
  box-shadow: 0 0 0 3px rgba(26,92,56,.1);
}

.carex-cal-icon { flex-shrink: 0; display: inline-block; vertical-align: middle; }

.carex-cal-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 1100;
  display: none;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(26,92,56,.18);
  border: 1.5px solid #d4e8db;
  overflow: hidden;
}

.carex-cal-wrap.cx-cal-expand { display: block; }

.carex-cal-inner { overflow: hidden; }

.carex-cal {
  background: #f5fbf7;
  padding: 12px;
}

.carex-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.carex-cal-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #e8f5ed;
  color: #1a5c38;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.carex-cal-nav-btn:hover { background: #c8e4d0; }

.carex-cal-month-lbl {
  font-size: 13px;
  font-weight: 800;
  color: #1a2b22;
}

.carex-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.carex-cal-dname {
  font-size: 9.5px;
  font-weight: 700;
  color: #6b8c7a;
  text-align: center;
  padding: 3px 0 4px;
  text-transform: uppercase;
}

.carex-cal-day {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 7px 2px;
  border-radius: 8px;
  cursor: pointer;
  color: #1a2b22;
  transition: background 0.15s, color 0.15s;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carex-cal-day:hover:not(.cx-cal-empty):not(.cx-cal-past) {
  background: #e8f5ed;
  color: #1a5c38;
}

.carex-cal-day.cx-cal-selected {
  background: #1a5c38;
  color: #fff;
  font-weight: 800;
}

.carex-cal-day.cx-cal-today {
  border: 2px solid #1a5c38;
  color: #1a5c38;
  font-weight: 800;
}

.carex-cal-day.cx-cal-past { color: #ccc; cursor: default; }
.carex-cal-empty { cursor: default; }

.note-section{padding:0px 0px 10px;}