/* ========================================
   CocoCatHouse – style.css
   ======================================== */

:root {
  --cream: #FFF6E9;
  --cream2: #FEF0D8;
  --orange: #F4A261;
  --orange-deep: #E07C3E;
  --brown: #8D6E63;
  --brown-dark: #5D4037;
  --white: #FFFFFF;
  --beige: #F5ECD7;
  --beige2: #EDD9B0;
  --text: #3E2B1A;
  --text-muted: #9E7C60;
  --shadow-warm: 0 8px 40px rgba(141,110,99,0.13);
  --shadow-card: 0 4px 24px rgba(244,162,97,0.12);
  --radius: 20px;
  --radius-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Quicksand', sans-serif; font-weight: 700; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ========== NAVBAR ========== */
#navbar-wrap {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 28px); max-width: 1120px; z-index: 1000;
}
#navbar {
  background: rgba(255,255,255,.88); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-radius: 22px; padding: 11px 22px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 40px rgba(67,78,122,.12); border: 1px solid rgba(230,215,195,.7);
}
.nav-logo {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px;
  color: var(--brown-dark); cursor: pointer; display: flex; align-items: center; gap: 7px;
  text-decoration: none;
}
.nav-logo {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px;
  color: var(--brown-dark); cursor: pointer; display: flex; align-items: center; gap: 7px;
  text-decoration: none;
}
.nav-logo-img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--beige2);
  box-shadow: 0 2px 8px rgba(141,110,99,.18);
}
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--brown-dark); opacity: .65;
  padding: 6px 12px; border-radius: 10px; text-decoration: none; transition: all .2s; display: block;
}
.nav-links a:hover { opacity: 1; background: rgba(141,110,99,.06); }
.btn-book {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; border: none; border-radius: 50px;
  padding: 9px 22px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px;
  cursor: pointer; box-shadow: 0 4px 16px rgba(244,162,97,.35);
  transition: transform .2s; display: inline-block; text-decoration: none;
}
.btn-book:hover { transform: scale(1.04); }
#mobile-menu-btn {
  display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 4px;
}
#mobile-menu {
  display: none; background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-radius: 18px; margin-top: 8px; padding: 10px;
  box-shadow: 0 8px 40px rgba(141,110,99,.12); border: 1px solid rgba(230,215,195,.7);
}
#mobile-menu a {
  display: block; padding: 12px 16px; font-size: 15px; font-weight: 700;
  color: var(--brown-dark); text-decoration: none; border-radius: 10px;
}
#mobile-menu a:hover { background: var(--cream); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; padding: 100px 5vw 60px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--cream) 60%, var(--beige2) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content:''; position: absolute; top:-80px; right:-80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,162,97,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content:'🐾'; position: absolute; bottom: 80px; left: 4vw;
  font-size: 3.5rem; opacity: .08; transform: rotate(-20deg);
}
.hero-inner { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: auto; width: 100%; }
.hero-left { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--beige); border: 1.5px solid var(--beige2);
  border-radius: 50px; padding: 6px 16px; font-size: .85rem; font-weight: 600; color: var(--brown);
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1}50%{opacity:.4} }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.2;
  color: var(--brown-dark); margin-bottom: 18px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; padding: 14px 30px; border-radius: 50px;
  font-family: 'Quicksand',sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(244,162,97,.38); transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(244,162,97,.5); }
.btn-secondary {
  background: transparent; border: 2px solid var(--brown);
  color: var(--brown-dark); padding: 13px 28px; border-radius: 50px;
  font-family: 'Quicksand',sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--brown); color: #fff; }
.hero-right { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-img-wrap {
  width: 380px; height: 420px; position: relative;
  border-radius: var(--radius-lg); overflow: visible;
}
.hero-img-bg {
  width: 340px; height: 380px; border-radius: var(--radius-lg);
  background: #EDE4D8;
  position: absolute; top: 20px; left: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-warm);
  animation: float-cat 3.5s ease-in-out infinite;
  overflow: hidden; padding: 0;
}
.hero-logo-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
@keyframes float-cat { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
.hero-float {
  position: absolute; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-radius: 16px;
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-card); font-size: .9rem; font-weight: 700; color: var(--brown-dark);
}
.hero-float .icon { font-size: 1.4rem; }
.hero-float small { font-weight: 400; color: var(--text-muted); font-size: .75rem; display: block; }
.float-rating { top: 10px; right: -10px; animation: float-card1 4s ease-in-out infinite; }
.float-open { bottom: 40px; left: -20px; animation: float-card2 3.8s ease-in-out infinite; }
@keyframes float-card1 { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes float-card2 { 0%,100%{transform:translateY(0)}50%{transform:translateY(8px)} }

/* ========== TRUSTED ========== */
.trusted {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3E2B1A 100%);
  padding: 60px 5vw;
  text-align: center;
}
.trusted h2 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.trusted p { color: rgba(255,255,255,.65); margin-bottom: 40px; }
.stats-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Quicksand',sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: 6px; }

/* ========== SECTION COMMONS ========== */
section { padding: 80px 5vw; }
.section-tag {
  display: inline-block; background: var(--beige); color: var(--orange-deep);
  border-radius: 50px; padding: 5px 16px; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--brown-dark); margin-bottom: 10px; }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto 48px; }
.center { text-align: center; }

/* ========== SERVICES ========== */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; max-width: 1100px; margin: auto; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow-card); border: 1.5px solid var(--beige2);
  transition: transform .3s, box-shadow .3s; cursor: default;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(244,162,97,.2); }
.service-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.15rem; color: var(--brown-dark); margin-bottom: 12px; }
.service-list { list-style: none; }
.service-list li { padding: 5px 0; color: var(--text-muted); font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.service-list li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink:0; }

/* ========== ABOUT ========== */
.about { background: var(--beige); }
.about-inner { display: flex; gap: 60px; align-items: center; max-width: 1100px; margin: auto; }
.about-img {
  flex: 1; min-width: 260px; height: 380px; border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--orange) 0%, var(--beige2) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 8rem;
  box-shadow: var(--shadow-warm); position: relative; flex-shrink:0;
}
.about-img::after {
  content:''; position: absolute; bottom: -16px; right: -16px;
  width: 80%; height: 80%; border-radius: var(--radius-lg);
  border: 2.5px solid var(--orange); z-index: -1;
}
.about-text { flex: 1; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-size: 1rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  background: var(--white); border: 1.5px solid var(--beige2); border-radius: 50px;
  padding: 6px 16px; font-size: .85rem; font-weight: 600; color: var(--brown); display: flex; align-items: center; gap: 6px;
}

/* ========== GALLERY ========== */
.gallery { background: var(--cream); }

.gallery-grid {
  columns: 3;
  column-gap: 16px;
  max-width: 1100px;
  margin: auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-box {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery-img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-img.tall { height: 280px; }
.gallery-img.med  { height: 200px; }
.gallery-img.sm   { height: 160px; }

.gallery-box:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brown-dark);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-box:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; column-gap: 12px; }
  .gallery-img.tall { height: 220px; }
  .gallery-img.med  { height: 170px; }
  .gallery-img.sm   { height: 140px; }
}

@media (max-width: 550px) {
  .gallery-grid { columns: 1; }
  .gallery-img.tall { height: 260px; }
  .gallery-img.med  { height: 210px; }
  .gallery-img.sm   { height: 180px; }
}

/* ========== WHY US ========== */
.why { background: var(--beige); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; max-width: 1100px; margin: auto; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px; text-align: center;
  border: 1.5px solid var(--beige2); box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h4 { font-size: 1rem; color: var(--brown-dark); margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ========== PRICING ========== */
.pricing { background: var(--cream); }
.pricing-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; max-width: 1100px; margin: auto; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 30px;
  border: 2px solid var(--beige2); box-shadow: var(--shadow-card);
  flex: 1; min-width: 240px; max-width: 320px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(244,162,97,.22); }
.price-card.featured { border-color: var(--orange); background: linear-gradient(145deg,#fff 60%,rgba(244,162,97,.07)); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,var(--orange),var(--orange-deep));
  color: #fff; border-radius: 50px; padding: 4px 18px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.price-icon { font-size: 2.5rem; margin-bottom: 12px; }
.price-card h3 { font-size: 1.2rem; color: var(--brown-dark); margin-bottom: 6px; }
.price-amount { font-family: 'Quicksand',sans-serif; font-size: 2rem; font-weight: 700; color: var(--orange); margin: 14px 0; }
.price-amount small { font-size: 1rem; color: var(--text-muted); }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { padding: 6px 0; color: var(--text-muted); font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.price-features li::before { content:'✓'; color: var(--orange); font-weight: 700; }
.btn-price {
  display: block; text-align: center; background: linear-gradient(135deg,var(--orange),var(--orange-deep));
  color: #fff; border-radius: 50px; padding: 12px 0;
  font-family: 'Quicksand',sans-serif; font-weight: 700; text-decoration: none;
  transition: box-shadow .2s;
}
.btn-price:hover { box-shadow: 0 6px 20px rgba(244,162,97,.4); }
.btn-price-outline {
  display: block; text-align: center; border: 2px solid var(--orange);
  color: var(--orange-deep); border-radius: 50px; padding: 11px 0;
  font-family: 'Quicksand',sans-serif; font-weight: 700; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-price-outline:hover { background: var(--orange); color: #fff; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--beige); overflow: hidden; }
.testi-track-wrap { position: relative; overflow: hidden; max-width: 1100px; margin: auto; }
.testi-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card {
  min-width: 320px; max-width: 340px; background: var(--white);
  border-radius: var(--radius); padding: 28px 24px; border: 1.5px solid var(--beige2);
  box-shadow: var(--shadow-card); flex-shrink: 0;
}
.testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--beige2)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.testi-name { font-weight: 700; color: var(--brown-dark); font-size: .95rem; }
.testi-date { font-size: .78rem; color: var(--text-muted); }
.testi-stars { color: #F4A261; font-size: 1rem; margin-bottom: 10px; }
.testi-text { color: var(--text-muted); font-size: .92rem; line-height: 1.7; font-style: italic; }
.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.testi-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--beige2); background: var(--white);
  cursor: pointer; font-size: 1.1rem; color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.testi-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.testi-dots { display: flex; gap: 8px; align-items: center; margin-top: 16px; justify-content: center; }
.dot-btn { width: 8px; height: 8px; border-radius: 50%; background: var(--beige2); border: none; cursor: pointer; transition: .2s; }
.dot-btn.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* ========== FLOATING WA BUTTON ========== */
#wa-btn {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  background: #25D366; color: #fff; border: none; border-radius: 50%;
  width: 58px; height: 58px; cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
#wa-btn:hover { transform: scale(1.1); }

/* ========== BOOKING CTA ========== */
.booking {
  background: linear-gradient(160deg, var(--brown-dark) 0%, #3E2B1A 100%);
  padding: 80px 5vw; position: relative; overflow: hidden;
}
.booking-inner { max-width: 900px; margin: 0 auto; position: relative; }
.booking-title {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(28px,4vw,50px); color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.booking-title span { color: var(--orange); }
.booking-sub {
  color: rgba(255,255,255,.7); font-size: 17px;
  max-width: 480px; margin: 0 auto 44px; text-align: center;
}
.booking-cols { display: flex; gap: 28px; flex-wrap: wrap; align-items: flex-start; }
.booking-form {
  flex: 1 1 340px; background: rgba(255,255,255,.07); border-radius: 28px; padding: 28px;
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px);
}
.booking-form h3 { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 20px; }
.booking-form input, .booking-form select {
  width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; padding: 13px 16px; color: #fff; font-size: 15px;
  font-family: 'Nunito', sans-serif; margin-bottom: 14px; outline: none;
}
.booking-form input::placeholder { color: rgba(255,255,255,.5); }
.booking-form select option { color: #333; background: #fff; }
.btn-wa-form {
  width: 100%; background: #25D366; color: #fff; border: none; border-radius: 14px;
  padding: 15px 0; font-size: 16px; font-weight: 900; font-family: 'Nunito',sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s;
}
.btn-wa-form:hover { transform: scale(1.02); }
.booking-info { flex: 1 1 250px; display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: rgba(255,255,255,.07); border-radius: 20px; padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
}
.info-card .info-val { color: #fff;}
.info-card .info-label { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.info-card .info-label span.ic { font-size: 18px; }
.info-card .info-label span.lb { font-weight: 700; font-size: 14px; color: var(--orange); }
/* ========== FAQ ========== */
.faq { background: var(--cream); }
.faq-inner { max-width: 720px; margin: auto; }
.faq-item { border-bottom: 1.5px solid var(--beige2); padding: 20px 0; cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--brown-dark); font-size: 1rem;
}
.faq-arrow { font-size: 1.2rem; color: var(--orange); transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3E2B1A 100%);
  color: rgba(255,255,255,.8); padding: 60px 5vw 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Quicksand',sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background .2s, border-color .2s; cursor: pointer;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: .9rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-divider { border-color: rgba(255,255,255,.1); margin-bottom: 20px; }
.footer-bottom { text-align: center; font-size: .83rem; color: rgba(255,255,255,.4); }

/* ========== FLOATING PAW ========== */
.paw-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,var(--orange),var(--orange-deep));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(244,162,97,.45);
  cursor: pointer; transition: transform .2s;
  text-decoration: none;
}
.paw-float:hover { transform: scale(1.1) rotate(-10deg); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-left { order: 1; }
  .hero-right { order: 0; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-img-bg { width: 260px; height: 280px; font-size: 7rem; }
  .hero-img-wrap { width: 280px; height: 300px; }
  .about-inner { flex-direction: column; }
  .about-img { width: 100%; min-width: unset; flex-shrink:1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { columns: 2; }
  .nav-links { display: none !important; }
  #mobile-menu-btn { display: block !important; }
  .booking-cols { flex-direction: column; }
  .booking-title { text-align: center; }
  .booking-sub { text-align: center; }
}
@media (max-width: 550px) {
  .gallery-grid { columns: 1; }
  .stats-grid { gap: 28px; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card { max-width: 100%; width: 100%; }
  .testi-card { min-width: 280px; }
}