/* ============================================
   ZWIERZOTEL DOMOWY - GLOBAL STYLES
   ============================================ */

:root {
  --cream: #FFF8F2;
  --rose: #D99082;
  --rose-dark: #BF7468;
  --brown: #3B241C;
  --white: #FFFFFF;
  --shadow: rgba(59, 36, 28, 0.1);
  --shadow-md: rgba(59, 36, 28, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --transition: 0.3s ease;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-main);
  line-height: 1.3;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--rose-dark);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--rose);
  font-size: 1.4rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(191, 116, 104, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-brown {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.btn-brown:hover {
  background: #2a1a13;
  border-color: #2a1a13;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-md);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0.95rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

.navbar-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 144, 130, 0.4);
}

.navbar-logo .logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--rose);
  font-family: var(--font-body);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: transparent;
  color: var(--rose);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-cta .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.mobile-menu a {
  font-size: 1.4rem;
  font-family: var(--font-main);
  color: var(--brown);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  text-align: center;
}

.mobile-menu a:hover {
  background: var(--rose);
  color: var(--white);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown);
  padding: 0.5rem;
}

.mobile-menu-footer {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B241C 0%, #6b3a2e 40%, #BF7468 80%, #D99082 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M30 10c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4zm-8 3c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zm16 0c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zM22 20c3.3 0 6-2.7 6-6H16c0 3.3 2.7 6 6 6zm16 0c3.3 0 6-2.7 6-6H32c0 3.3 2.7 6 6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 8rem 2rem 4rem;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-paws {
  position: absolute;
  right: -50px;
  bottom: -50px;
  font-size: 20rem;
  opacity: 0.03;
  transform: rotate(-20deg);
  user-select: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-md);
}

/* ============================================
   FEATURES GRID (HOME)
   ============================================ */

.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-md);
  background: var(--white);
}

.feature-icon {
  font-size: 3rem;
  line-height: 1;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--brown);
}

.feature-card p {
  color: #7a5c52;
  font-size: 0.95rem;
}

/* Qualifications cards: uniform headings (max 2 lines) and equal heights */
.qualifications-grid .feature-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ============================================
   PRICING SECTION
   ============================================ */

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

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--brown), #5a3428);
  color: var(--white);
}

.price-card.featured h3,
.price-card.featured p {
  color: var(--white);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-md);
}

.price-card .animal-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-card .price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--rose);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.price-card.featured .price-amount {
  color: var(--rose);
}

.price-card .price-unit {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.price-card .price-note {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.price-badge {
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 2.5rem;
  transform: rotate(35deg);
}

/* ============================================
   STEPS / PROCESS
   ============================================ */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 5.5rem;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--rose-dark));
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-main);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(191, 116, 104, 0.4);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: 0.75rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #7a5c52;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   SERVICES GRID (DODATKOWE)
   ============================================ */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--shadow-md);
  border-left: 4px solid var(--rose);
}

.service-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.service-content p {
  font-size: 0.9rem;
  color: #7a5c52;
  margin-bottom: 0.5rem;
}

.service-price {
  display: inline-block;
  background: var(--cream);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

/* Temporarily unavailable service */
.service-card--unavailable {
  opacity: 0.55;
  filter: grayscale(1);
  position: relative;
}

.service-card--unavailable:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: none;
}

.service-badge-unavailable {
  display: inline-block;
  margin-top: 0.5rem;
  background: #e5e0dc;
  color: #6b5a52;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--rose);
  background: transparent;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 4rem;
  transition: all var(--transition);
}

.gallery-placeholder span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  opacity: 0.7;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 36, 28, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  font-size: 2.5rem;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  min-width: 300px;
  font-size: 5rem;
}

.lightbox-image {
  max-width: 86vw;
  max-height: 82vh;
  border-radius: var(--radius);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-label {
  font-size: 1rem;
  margin-top: 1rem;
  color: #7a5c52;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.review-meta .review-platform {
  font-size: 0.8rem;
  color: var(--rose-dark);
  font-weight: 500;
}

.review-stars {
  color: #f4b400;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #5a3c34;
  line-height: 1.7;
  font-style: italic;
}

.review-pet {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  background: var(--cream);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--rose-dark);
}

/* ============================================
   FORM
   ============================================ */

.form-section {
  background: var(--white);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 8px 40px var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

.form-group label .required {
  color: var(--rose);
  margin-left: 0.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1.1rem;
  border: 2px solid rgba(59, 36, 28, 0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--brown);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 144, 130, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%233B241C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid rgba(59, 36, 28, 0.08);
  cursor: pointer;
  transition: border-color var(--transition);
}

.form-checkbox:hover {
  border-color: var(--rose);
}

/* Toggle switch */
.toggle {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 30px;
}

/* Native checkbox overlays the toggle: invisible but focusable & full-size,
   so label clicks and native required-validation keep working everywhere. */
.toggle input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d6d8dc;
  transition: background-color var(--transition);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(59, 36, 28, 0.35);
  transition: transform var(--transition);
}

/* Checkmark appears inside the thumb when active */
.toggle-thumb::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 6px;
  height: 11px;
  border: solid var(--rose);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.toggle input[type="checkbox"]:checked ~ .toggle-track {
  background: var(--rose);
}

.toggle input[type="checkbox"]:checked ~ .toggle-track .toggle-thumb {
  transform: translateX(22px);
}

.toggle input[type="checkbox"]:checked ~ .toggle-track .toggle-thumb::after {
  transform: rotate(45deg) scale(1);
}

.toggle input[type="checkbox"]:focus-visible ~ .toggle-track {
  box-shadow: 0 0 0 3px rgba(217, 144, 130, 0.3);
}

.form-checkbox-text {
  font-size: 0.9rem;
  color: var(--brown);
  cursor: pointer;
  line-height: 1.5;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.5rem 0 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(217, 144, 130, 0.2);
  grid-column: 1 / -1;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.form-submit .btn {
  padding: 1rem 3rem;
  font-size: 1.05rem;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: #9a7a72;
  text-align: center;
}

.honeypot {
  display: none !important;
}

.form-success {
  display: none;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 2px solid #81c784;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}

.form-success h3 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(59, 36, 28, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--rose-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-item-text strong {
  font-size: 1rem;
}

.contact-item-text a:hover {
  color: var(--rose);
}

.map-placeholder {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.map-header {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  padding: 1.25rem 1.5rem;
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-embed {
  flex: 1;
  background: #e8e0d8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  min-height: 350px;
  font-size: 4rem;
  color: var(--rose-dark);
}

.map-embed p {
  font-size: 1rem;
  color: var(--brown);
  text-align: center;
}

.map-embed a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.map-embed a:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-icon {
  width: 56px;
  height: 56px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(217, 144, 130, 0.4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul a:hover {
  color: var(--rose);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.6rem;
}

.footer-contact-item a:hover {
  color: var(--rose);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-paws {
  font-size: 1.2rem;
  color: var(--rose);
  letter-spacing: 4px;
}

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--brown) 0%, #5a3428 60%, var(--rose-dark) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '🐾';
  position: absolute;
  font-size: 15rem;
  opacity: 0.04;
  right: -2rem;
  top: -2rem;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--rose);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  text-align: center;
  padding: 5rem 2rem;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--brown);
  padding: 2.5rem 2rem;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  color: var(--rose);
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ============================================
   ANIMALS TABS (oferta)
   ============================================ */

.tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--rose);
  background: transparent;
  color: var(--rose-dark);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   GUARANTEE RIBBON
   ============================================ */

.guarantee-ribbon {
  background: linear-gradient(135deg, #FFF3E0, #FFF8F2);
  border: 2px solid rgba(217, 144, 130, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.guarantee-ribbon .ribbon-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-ribbon h3 {
  margin-bottom: 0.25rem;
}

.guarantee-ribbon p {
  color: #7a5c52;
  font-size: 0.95rem;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

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

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

@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.25rem;
  }

  .navbar {
    padding: 1rem 1.25rem;
  }

  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 7rem 1.25rem 4rem;
  }

  .hero-paws {
    font-size: 12rem;
    right: -30px;
  }

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

  .form-group.full-width {
    grid-column: 1;
  }

  .form-section-title {
    grid-column: 1;
  }

  .form-submit {
    grid-column: 1;
  }

  .form-note {
    grid-column: 1;
  }

  .form-wrapper {
    padding: 2rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .step-item {
    gap: 1rem;
  }

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

  .guarantee-ribbon {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .navbar-logo .logo-text {
    display: none;
  }

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

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

/* ============================================
   HERO BANNER IMAGE (homepage)
   ============================================ */

.hero-bg.has-image {
  background-image:
    linear-gradient(135deg, rgba(59,36,28,0.78) 0%, rgba(191,116,104,0.55) 70%, rgba(217,144,130,0.45) 100%),
    url("images/banner.jpg");
  background-size: cover;
  background-position: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-photo {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--white);
  box-shadow: 0 12px 40px var(--shadow-md);
  overflow: hidden;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text p { color: #6e5046; margin-bottom: 1rem; }

.about-signature {
  font-family: var(--font-main);
  font-size: 1.3rem;
  color: var(--rose-dark);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { min-height: 240px; font-size: 5rem; }
}

/* ============================================
   PACKING LIST
   ============================================ */

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.checklist-item:hover { transform: translateY(-4px); box-shadow: 0 12px 35px var(--shadow-md); }
.checklist-item .check-ico { font-size: 1.6rem; flex-shrink: 0; }
.checklist-item p { color: #6e5046; font-size: 0.95rem; }
.checklist-item strong { display: block; color: var(--brown); margin-bottom: 0.15rem; }
.checklist-item .req { color: var(--rose-dark); font-size: 0.8rem; font-weight: 700; }

/* ============================================
   INFO TABLE (refund / cancellation)
   ============================================ */

.info-table {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.info-table .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(59,36,28,0.07);
}

.info-table .row:last-child { border-bottom: none; }
.info-table .row .amount {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--rose-dark);
}
.info-table .row .amount.zero { color: #b04a3c; }
.info-table .row p { color: #6e5046; font-size: 0.95rem; }

/* ============================================
   INSTAGRAM / GALLERY EMBED
   ============================================ */

.insta-card {
  max-width: 760px;
  margin: 0 auto 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px var(--shadow);
  overflow: hidden;
  text-align: center;
}

.insta-head {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
  padding: 2.5rem 2rem;
  color: var(--white);
}

.insta-head .insta-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.insta-head h3 { color: var(--white); margin-bottom: 0.25rem; }
.insta-head p { opacity: 0.95; font-size: 0.95rem; }

.insta-body { padding: 2rem; }
.insta-body p { color: #6e5046; margin-bottom: 1.5rem; }

.insta-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.insta-preview .insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* ============================================
   SOCIAL LINKS LIST (contact)
   ============================================ */

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.social-link:hover { transform: translateY(-3px); border-color: var(--rose); box-shadow: 0 10px 28px var(--shadow-md); }
.social-link .social-ico { font-size: 1.5rem; flex-shrink: 0; }
.social-link > span:last-child { min-width: 0; }
.social-link strong { font-size: 0.95rem; color: var(--brown); overflow-wrap: anywhere; }
.social-link small { display: block; font-size: 0.78rem; color: var(--rose-dark); overflow-wrap: anywhere; }

/* ============================================
   NOTE BOX
   ============================================ */

.note-box {
  max-width: 760px;
  margin: 2.5rem auto 0;
  background: linear-gradient(135deg, #FFF3E0, #FFF8F2);
  border: 2px solid rgba(217,144,130,0.25);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.note-box .note-ico { font-size: 1.8rem; flex-shrink: 0; }
.note-box p { color: #6e5046; font-size: 0.95rem; }
.note-box strong { color: var(--brown); }

/* ============================================
   VISIT / TRIAL STAY BOX (oferta)
   ============================================ */

.visit-box {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF3E0, var(--white));
  border: 2px solid rgba(217, 144, 130, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow);
}

.visit-box .visit-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.visit-box .visit-head .visit-ico { font-size: 2.5rem; flex-shrink: 0; }
.visit-box .visit-head h3 { margin: 0; }

.visit-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.visit-box ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #6e5046;
  font-size: 0.97rem;
}

.visit-box ul li::before { content: '🐾'; flex-shrink: 0; }

.visit-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--white);
  border: 2px dashed rgba(217, 144, 130, 0.5);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  text-align: center;
}

.visit-price .visit-price-label {
  color: var(--rose-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.visit-price .visit-price-amount {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--rose);
}
