/* ════════════════════════════════════════
   PAWSOME PET SHOP  —  style.css
   ════════════════════════════════════════ */

/* ── RESET & DESIGN TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:  #FDF6EC;
  --warm:   #F5E6D0;
  --sand:   #E8C99A;
  --rust:   #C4622D;
  --deep:   #2B1B0E;
  --forest: #3A5A40;
  --sage:   #7A9E7E;
  --gold:   #D4A853;
  --white:  #FFFDF9;
  --muted:  #7A6652;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 3px; }


/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatD {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(14px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes waPop {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes imgReveal {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}


/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253, 246, 236, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 98, 45, .12);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 30px rgba(43, 27, 14, .1); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {
  width: 42px; height: 42px;
  background: var(--rust); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.45rem;
  color: var(--rust); letter-spacing: -.5px;
}
.logo-text span { color: var(--forest); }

nav { display: flex; gap: 26px; align-items: center; }

nav a {
  text-decoration: none; color: var(--muted);
  font-size: .875rem; font-weight: 500;
  position: relative; transition: color .2s;
}
nav a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rust); transition: width .3s;
}
nav a:hover { color: var(--rust); }
nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--rust) !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 100px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--deep) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--rust); border-radius: 2px; display: block;
}


/* ════════════════════════════════════════
   MOBILE NAV
   ════════════════════════════════════════ */
.mob-nav {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(43, 27, 14, .97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--white);
  text-decoration: none; font-weight: 700; transition: color .2s;
}
.mob-nav a:hover { color: var(--rust); }
.mob-close {
  position: absolute; top: 24px; right: 5%;
  font-size: 28px; color: var(--white);
  background: none; border: none; cursor: pointer;
}


/* ════════════════════════════════════════
   SECTION COMMONS
   ════════════════════════════════════════ */
section { padding: 96px 5%; }

.sec-label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--rust); margin-bottom: 14px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700; color: var(--deep);
  line-height: 1.15; letter-spacing: -1px;
}
.sec-sub {
  color: var(--muted); font-size: 1rem;
  line-height: 1.7; max-width: 520px; margin-top: 12px;
}
.sec-hd { margin-bottom: 52px; }


/* ════════════════════════════════════════
   SHARED BUTTONS
   ════════════════════════════════════════ */
.btn-p {
  background: var(--rust); color: var(--white);
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(196, 98, 45, .3);
  display: inline-block;
}
.btn-p:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 98, 45, .4);
}

.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--deep); padding: 14px 24px; border-radius: 100px;
  text-decoration: none; font-weight: 500;
  border: 1.5px solid var(--sand);
  transition: border-color .2s, background .2s;
}
.btn-s:hover { background: var(--warm); border-color: var(--rust); }

.btn-lt {
  margin-top: 24px; display: inline-block;
  background: var(--gold); color: var(--deep);
  padding: 13px 30px; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: background .2s, transform .2s;
}
.btn-lt:hover { background: var(--sand); transform: translateY(-2px); }


/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 5% 60px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,168,83,.15), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(122,158,126,.12), transparent 50%),
    var(--cream);
  position: relative; overflow: hidden;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--warm); border: 1px solid var(--sand);
  border-radius: 100px; padding: 6px 16px;
  font-size: .8rem; font-weight: 600; color: var(--rust);
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}
.hero-badge::before {
  content: '●'; font-size: .5rem;
  animation: pulse 2s infinite;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05; letter-spacing: -2px; color: var(--deep);
  animation: fadeUp .7s .1s ease both;
}
.hero-content h1 em { font-style: italic; color: var(--rust); }

.hero-content p {
  margin-top: 20px; font-size: 1.05rem;
  color: var(--muted); line-height: 1.7; max-width: 440px;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex; gap: 14px; margin-top: 36px;
  flex-wrap: wrap; animation: fadeUp .7s .3s ease both;
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeUp .7s .4s ease both;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--deep); line-height: 1;
}
.stat-lbl {
  font-size: .75rem; color: var(--muted); margin-top: 4px;
  font-weight: 500; text-transform: uppercase; letter-spacing: .5px;
}

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; animation: fadeRight .9s .2s ease both;
}
.hero-card {
  width: 320px; height: 400px; border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(43, 27, 14, .2);
  position: relative;
}
.hero-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.hero-card:hover img { transform: scale(1.06); }
.hero-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(43,27,14,.4));
}

/* floating badges on hero image */
.fb {
  position: absolute;
  background: var(--white); border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(43, 27, 14, .15);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .85rem;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.fb-top { top: 40px; right: -20px; }
.fb-bot { bottom: 60px; left: -20px; animation: floatD 4s ease-in-out infinite; }


/* ════════════════════════════════════════
   MARQUEE TICKER
   ════════════════════════════════════════ */
.marquee-wrap {
  background: var(--rust);
  overflow: hidden; padding: 13px 0;
}
.marquee-inner {
  display: flex; gap: 52px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-inner span {
  color: #fff; font-weight: 700;
  font-size: .88rem; white-space: nowrap;
}


/* ════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════ */
#services { background: var(--warm); }

.srv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

.srv-card {
  background: var(--white); border-radius: 22px;
  padding: 34px 28px;
  border: 1px solid rgba(196, 98, 45, .08);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden; cursor: pointer;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,98,45,.04), transparent);
  opacity: 0; transition: opacity .3s;
}
.srv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(43,27,14,.12); }
.srv-card:hover::before { opacity: 1; }

.srv-icon {
  width: 56px; height: 56px; background: var(--cream);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 26px;
  margin-bottom: 18px; transition: background .3s;
}
.srv-card:hover .srv-icon { background: rgba(196, 98, 45, .1); }

.srv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--deep); margin-bottom: 8px;
}
.srv-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.srv-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .85rem; font-weight: 600;
  color: var(--rust); text-decoration: none; transition: gap .2s;
}
.srv-link:hover { gap: 10px; }


/* ════════════════════════════════════════
   PRODUCTS SECTION
   ════════════════════════════════════════ */
#products { background: var(--cream); }

.filter-row { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }

.fil-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--sand); background: none;
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: .875rem; font-weight: 500; cursor: pointer; transition: .2s;
}
.fil-btn.active,
.fil-btn:hover { background: var(--rust); border-color: var(--rust); color: var(--white); }

.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}

.prod-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(196, 98, 45, .08);
  transition: transform .3s, box-shadow .3s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(43,27,14,.12); }

.prod-img {
  height: 180px; position: relative;
  overflow: hidden; background: var(--warm);
}
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
  animation: imgReveal .5s ease both;
}
.prod-card:hover .prod-img img { transform: scale(1.08); }

.prod-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--rust); color: var(--white);
  font-size: .68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .5px;
}
.prod-pet {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255, 255, 255, .92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.prod-info { padding: 16px 16px 18px; }
.prod-info h4 { font-weight: 600; font-size: .92rem; color: var(--deep); margin-bottom: 3px; }
.prod-sub { font-size: .76rem; color: var(--muted); margin-bottom: 10px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }

.prod-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--rust);
}

.add-btn {
  width: 32px; height: 32px;
  background: var(--rust); color: var(--white);
  border: none; border-radius: 50%; font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.add-btn:hover { background: var(--deep); transform: scale(1.12); }


/* ════════════════════════════════════════
   GROOMING SECTION
   ════════════════════════════════════════ */
#grooming {
  background: var(--forest); color: var(--white);
  position: relative; overflow: hidden;
}
#grooming::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,.2), transparent 60%);
  pointer-events: none;
}

.groom-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.groom-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.groom-tile {
  background: rgba(255,255,255,.08); border-radius: 18px;
  padding: 26px 20px; border: 1px solid rgba(255,255,255,.1);
  text-align: center; transition: background .3s, transform .3s;
}
.groom-tile:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.groom-tile:first-child { grid-column: span 2; }
.groom-tile .gi { font-size: 32px; margin-bottom: 10px; }
.groom-tile h4 { font-weight: 600; color: var(--white); margin-bottom: 6px; font-size: .95rem; }
.groom-tile p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }

.groom-cnt h2 {
  font-family: 'Playfair Display', serif; font-size: 2.3rem;
  font-weight: 700; color: var(--white);
  line-height: 1.2; letter-spacing: -1px; margin-bottom: 14px;
}

.pkg {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; transition: background .3s; cursor: pointer;
}
.pkg:hover { background: rgba(255,255,255,.13); }
.pkg-name { font-weight: 600; color: var(--white); font-size: .9rem; }
.pkg-inc  { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 3px; }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--gold); font-size: 1.15rem;
}


/* ════════════════════════════════════════
   TRAINING SECTION
   ════════════════════════════════════════ */
#training { background: var(--cream); }

.train-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: start;
}
.steps { display: flex; flex-direction: column; gap: 18px; }

.step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--white); border-radius: 18px;
  border: 1px solid rgba(196,98,45,.08);
  transition: box-shadow .3s, transform .3s;
}
.step:hover { box-shadow: 0 10px 40px rgba(43,27,14,.1); transform: translateX(6px); }

.step-n {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px; background: var(--rust); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
}
.step h4 { font-weight: 600; color: var(--deep); margin-bottom: 5px; font-size: .95rem; }
.step p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.train-info h2 {
  font-family: 'Playfair Display', serif; font-size: 2.3rem;
  font-weight: 700; color: var(--deep);
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px;
}
.train-info > p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 26px; }

.trainer {
  background: var(--warm); border-radius: 18px; padding: 20px;
  display: flex; gap: 16px; align-items: center; margin-top: 22px;
}
.t-av {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--deep); font-size: .95rem; }
.t-role { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.t-exp  { font-size: .8rem; color: var(--rust); font-weight: 600; margin-top: 4px; }


/* ════════════════════════════════════════
   HEALTH SECTION
   ════════════════════════════════════════ */
#health { background: var(--warm); }

.health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.hcard {
  background: var(--white); border-radius: 22px; padding: 30px;
  display: flex; gap: 18px;
  border: 1px solid rgba(196,98,45,.08);
  transition: transform .3s, box-shadow .3s;
}
.hcard:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(43,27,14,.1); }

.hcard.wide {
  grid-column: span 2; flex-direction: row;
  align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--rust), #8B3A15);
}
.hcard.wide .ht { color: var(--white); }
.hcard.wide .hb { color: rgba(255,255,255,.7); }

.hico { font-size: 32px; flex-shrink: 0; }
.ht {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  font-weight: 700; color: var(--deep); margin-bottom: 7px;
}
.hb { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.hcta {
  background: var(--white); color: var(--rust);
  padding: 12px 26px; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: .875rem;
  flex-shrink: 0; transition: background .2s, transform .2s;
}
.hcta:hover { background: var(--cream); transform: scale(1.04); }


/* ════════════════════════════════════════
   ADOPTION SECTION
   ════════════════════════════════════════ */
#adoption { background: var(--cream); }

.adopt-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.adopt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.acard {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(196,98,45,.08);
  transition: transform .3s, box-shadow .3s; cursor: pointer;
}
.acard:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(43,27,14,.12); }

.acard-img {
  height: 140px; position: relative;
  overflow: hidden; background: var(--warm);
}
.acard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s; animation: imgReveal .5s ease both;
}
.acard:hover .acard-img img { transform: scale(1.1); }

.a-status {
  position: absolute; top: 8px; right: 8px;
  background: var(--forest); color: var(--white);
  font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 100px; text-transform: uppercase;
}

.ainfo { padding: 13px; }
.a-name  { font-weight: 700; color: var(--deep); font-size: .9rem; }
.a-breed { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.a-age   { font-size: .75rem; color: var(--rust); font-weight: 600; margin-top: 4px; }

.adopt-cnt h2 {
  font-family: 'Playfair Display', serif; font-size: 2.3rem;
  font-weight: 700; color: var(--deep);
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px;
}
.adopt-cnt > p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 26px; }

.a-stats { display: flex; gap: 30px; margin-bottom: 28px; }
.a-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--rust); }
.a-lbl { font-size: .8rem; color: var(--muted); font-weight: 500; }


/* ════════════════════════════════════════
   TESTIMONIALS SECTION
   ════════════════════════════════════════ */
#testimonials { background: var(--deep); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 52px;
}

.tcard {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 28px;
  transition: background .3s, transform .3s;
}
.tcard:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }

.stars   { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 3px; }
.ttext   { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tav     { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(255,255,255,.1); }
.tname   { font-weight: 600; color: var(--white); font-size: .88rem; }
.tpet    { font-size: .76rem; color: rgba(255,255,255,.4); margin-top: 2px; }

.trust-badges {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.trust-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 10px 22px;
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 600; font-size: .85rem;
}
.trust-badge span { font-size: 18px; }


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer { background: #1A0F06; color: rgba(255,255,255,.6); padding: 70px 5% 30px; }

.ft-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 44px; margin-bottom: 50px;
}

.ft-brand p {
  font-size: .875rem; line-height: 1.7;
  color: rgba(255,255,255,.45); margin-top: 14px; max-width: 260px;
}

.ft-soc { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
}
.soc-btn:hover { background: var(--rust); color: #fff; transform: translateY(-3px); }

.ft-col h5 { color: var(--white); font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.ft-col a  { display: block; color: rgba(255,255,255,.45); text-decoration: none; font-size: .85rem; margin-bottom: 10px; transition: color .2s; }
.ft-col a:hover { color: var(--sand); }

.f-in {
  width: 100%; padding: 11px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .875rem;
  margin-bottom: 10px; outline: none; transition: border-color .2s;
}
.f-in:focus { border-color: var(--rust); }
.f-in::placeholder { color: rgba(255,255,255,.3); }

.f-sub {
  width: 100%; padding: 12px;
  background: var(--rust); color: var(--white); border: none;
  border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .875rem; cursor: pointer; transition: background .2s;
}
.f-sub:hover { background: var(--gold); color: var(--deep); }

.ft-bot {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 12px;
}
.ft-links { display: flex; gap: 22px; }
.ft-links a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--sand); }


/* ════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════ */
.wa-wrap {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: waPop .5s cubic-bezier(.34,1.56,.64,1) .8s both;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.65); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-tip {
  background: var(--deep); color: var(--white);
  font-size: .8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  pointer-events: none; transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(43,27,14,.2);
}
.wa-wrap:hover .wa-tip { opacity: 1; transform: translateX(0); }


/* ════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .prod-grid  { grid-template-columns: repeat(2, 1fr); }
  .ft-top     { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════ */
@media (max-width: 820px) {
  #hero               { grid-template-columns: 1fr; text-align: center; }
  .hero-visual        { display: none; }
  .hero-stats         { justify-content: center; }
  .hero-actions       { justify-content: center; }
  nav                 { display: none; }
  .hamburger          { display: flex; }
  .srv-grid           { grid-template-columns: 1fr; }
  .groom-layout,
  .train-layout,
  .adopt-layout       { grid-template-columns: 1fr; gap: 40px; }
  .health-grid        { grid-template-columns: 1fr; }
  .hcard.wide         { grid-column: span 1; flex-direction: column; text-align: center; gap: 16px; }
  .testi-grid         { grid-template-columns: 1fr; }
  .ft-top             { grid-template-columns: 1fr; }
  .ft-bot             { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .prod-grid              { grid-template-columns: 1fr; }
  .adopt-grid             { grid-template-columns: 1fr; }
  .groom-visual           { grid-template-columns: 1fr; }
  .groom-tile:first-child { grid-column: span 1; }
}