/* ═══════════════════════════════════════════════════════════
   ABSOLUTE PETS PLANET — MAIN STYLESHEET
   Version: 1.0 | absolutepetsplanet.com.ng
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --ink:       #0A0C0A;
  --ink-80:    rgba(10,12,10,0.8);
  --ink-40:    rgba(10,12,10,0.4);
  --ink-12:    rgba(10,12,10,0.12);
  --ink-06:    rgba(10,12,10,0.06);

  --paper:     #F7F5F0;
  --paper-80:  rgba(247,245,240,0.8);

  --forest:    #3B1F6B;
  --sage:      #5B3491;
  --moss:      #7B52B0;
  --mint:      #C4A8E8;
  --foam:      #F0EAF8;

  --gold:      #C9972A;
  --gold-lt:   #E8B84B;
  --gold-pale: #FDF5E4;

  --white:     #FFFFFF;
  --glass:     rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);

  --fs-display: clamp(3.2rem, 7vw, 6.5rem);
  --fs-h1:      clamp(2.4rem, 5vw, 4rem);
  --fs-h2:      clamp(1.8rem, 3vw, 2.6rem);
  --fs-h3:      clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.75rem;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-xl: 0 48px 96px rgba(0,0,0,0.20), 0 16px 40px rgba(0,0,0,0.12);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: none; border: none; }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--forest); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              transform 0.12s, opacity 0.3s, border-color 0.2s;
  opacity: 0.6;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has([onclick]:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.3; }

/* ── SCREEN SYSTEM ──────────────────────────────────────── */
.screen { display: none; }
.screen.active { display: block; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.t-display { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-display); font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; }
.t-h1      { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-h1); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.t-h2      { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-h2); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
.t-h3      { font-family: 'Outfit', sans-serif; font-size: var(--fs-h3); font-weight: 600; line-height: 1.3; }
.t-body    { font-size: var(--fs-body); line-height: 1.75; color: var(--ink-80); font-weight: 300; }
.t-sm      { font-size: var(--fs-sm); line-height: 1.6; color: var(--ink-80); }
.t-label   { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.t-italic  { font-style: italic; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.sec    { padding: 120px 0; }
.sec-sm { padding: 80px 0; }

/* ── SECTION HEADERS ────────────────────────────────────── */
.sec-header { margin-bottom: 64px; }
.sec-header.center { text-align: center; }
.sec-header .t-label { margin-bottom: 12px; }
.sec-header h2 { margin-bottom: 14px; }
.sec-header p { font-size: 1rem; font-weight: 300; color: var(--ink-80); max-width: 520px; }
.sec-header.center p { margin: 0 auto; }
.sec-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--r-full); font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.25s var(--ease-out); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,31,107,0.3); }
.btn-gold   { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,42,0.35); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--ink); border: 1.5px solid var(--ink-12); }
.btn-ghost-light:hover { border-color: var(--forest); color: var(--forest); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

.btn-primary-dark  { background: var(--gold); color: var(--ink); padding: 15px 32px; border-radius: var(--r-full); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s var(--ease-out); box-shadow: 0 4px 24px rgba(201,151,42,0.35); border: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,151,42,0.5); background: var(--gold-lt); }
.btn-outline-dark  { background: transparent; color: var(--white); border: 1px solid var(--glass-border); padding: 14px 32px; border-radius: var(--r-full); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s var(--ease-out); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-dark:hover { background: var(--glass); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.btn-cta-dark  { background: var(--ink); color: var(--white); padding: 15px 36px; border-radius: var(--r-full); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.25s; border: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-dark:hover { background: var(--forest); transform: translateY(-2px); }
.btn-cta-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(10,12,10,0.3); padding: 14px 36px; border-radius: var(--r-full); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-ghost:hover { background: rgba(10,12,10,0.08); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px;
  background: rgba(247,245,240,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--ink-06);
  transition: background 0.3s;
}
.nav.dark { background: rgba(10,12,10,0.92); border-bottom: 1px solid var(--glass-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1280px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; min-width: 0; }
.nav-logo-img { height: 36px; width: auto; flex-shrink: 0; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--forest); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.nav-logo-text { min-width: 0; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); line-height: 1.1; transition: color 0.3s; white-space: nowrap; }
.nav.dark .nav-logo-name { color: var(--white); }
.nav-logo-tagline { font-size: 0.6rem; font-weight: 500; color: var(--ink-40); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; white-space: nowrap; }
.nav.dark .nav-logo-tagline { color: rgba(255,255,255,0.35); }
/* Desktop links */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link { font-size: 0.82rem; font-weight: 500; color: var(--ink-80); letter-spacing: 0.02em; cursor: pointer; transition: color 0.2s; position: relative; padding-bottom: 2px; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 100%; height: 1px; background: var(--forest); transition: right 0.3s var(--ease-out); }
.nav-link:hover::after { right: 0; }
.nav-link:hover { color: var(--ink); }
.nav.dark .nav-link { color: rgba(255,255,255,0.65); }
.nav.dark .nav-link:hover { color: var(--white); }
.nav.dark .nav-link::after { background: var(--mint); }
/* Desktop action buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-wa { display: flex; align-items: center; gap: 7px; background: #22C55E; color: var(--white); padding: 9px 16px; border-radius: var(--r-full); font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.25s var(--ease-out); box-shadow: 0 2px 12px rgba(34,197,94,0.3); white-space: nowrap; }
.nav-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,0.4); }
.nav-book { background: var(--forest); color: var(--white); padding: 9px 18px; border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.25s var(--ease-out); white-space: nowrap; }
.nav-book:hover { background: var(--sage); transform: translateY(-1px); }

/* ── HAMBURGER BUTTON ───────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--glass); }
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ──────────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(10,12,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 32px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}
.nav-drawer-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.nav-drawer-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: rgba(255,255,255,0.7);
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: color 0.2s; letter-spacing: -0.01em;
}
.nav-drawer-link:hover { color: var(--white); }
.nav-drawer-link:first-child { padding-top: 0; }
.nav-drawer-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #22C55E; color: var(--white);
  padding: 15px; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
}
.nav-drawer-book {
  display: flex; align-items: center; justify-content: center;
  background: var(--forest); color: var(--white);
  padding: 15px; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
}
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.5);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero { min-height: 100vh; background: var(--ink); position: relative; overflow: hidden; display: grid; grid-template-rows: 1fr; padding-top: 72px; }
.hero-bg-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(59,31,107,0.7) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,151,42,0.08) 0%, transparent 60%), var(--ink); }
.hero-grid-overlay { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.hero-noise { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: calc(100vh - 72px); padding: 80px 48px; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-left { padding-right: 60px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(12px); padding: 8px 16px; border-radius: var(--r-full); margin-bottom: 36px; animation: fadeSlideUp 0.8s var(--ease-out) forwards; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero-eyebrow span { color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; }
.hero-headline { color: var(--white); animation: fadeSlideUp 0.8s 0.1s var(--ease-out) both; }
.hero-headline em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; color: var(--gold-lt); display: block; }
.hero-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; font-weight: 300; line-height: 1.75; margin: 28px 0 44px; max-width: 440px; animation: fadeSlideUp 0.8s 0.2s var(--ease-out) both; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideUp 0.8s 0.3s var(--ease-out) both; }
.hero-stats-row { display: flex; gap: 48px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--glass-border); animation: fadeSlideUp 0.8s 0.4s var(--ease-out) both; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--white); line-height: 1; display: flex; align-items: flex-start; }
.hero-stat-num sup { font-size: 1.2rem; color: var(--gold); margin-top: 8px; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* Hero right visual */
.hero-right { position: relative; height: 580px; animation: fadeSlideUp 0.8s 0.2s var(--ease-out) both; }
.hero-card-main { position: absolute; top: 0; right: 0; left: 60px; bottom: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main-fallback { width: 100%; height: 100%; background: linear-gradient(160deg, #3B1F6B 0%, #5B3491 40%, #3B1F6B 100%); display: flex; align-items: center; justify-content: center; font-size: 11rem; }
.hero-float-card { position: absolute; bottom: 40px; left: -10px; background: rgba(247,245,240,0.95); backdrop-filter: blur(20px); border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-lg); width: 220px; z-index: 2; animation: float 4s ease-in-out infinite; }
.hero-float-label { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 6px; }
.hero-float-title { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.hero-float-sub { font-size: 0.75rem; color: var(--ink-40); }
.hero-float-btn { background: var(--forest); color: var(--white); padding: 8px 16px; border-radius: var(--r-full); font-size: 0.72rem; font-weight: 600; display: block; text-align: center; margin-top: 14px; cursor: pointer; transition: background 0.2s; }
.hero-float-btn:hover { background: var(--sage); }
.hero-badge-rating { position: absolute; top: 32px; left: 0; background: var(--gold); border-radius: var(--r-md); padding: 14px 18px; z-index: 2; box-shadow: var(--shadow-md); text-align: center; }
.hero-badge-rating .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1; }
.hero-badge-rating .stars { color: rgba(255,255,255,0.9); font-size: 0.65rem; margin-top: 2px; }
.hero-badge-rating .lbl { font-size: 0.6rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 1px; }
.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; animation: fadeSlideUp 1s 1s var(--ease-out) both; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollLine 1.5s ease-in-out infinite; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap { background: var(--forest); overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.marquee-track { display: flex; white-space: nowrap; }
.marquee-inner { display: flex; animation: marquee 30s linear infinite; flex-shrink: 0; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 40px; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }
.marquee-sep { color: var(--gold); font-size: 0.5rem; }

/* ── SERVICES BENTO ─────────────────────────────────────── */
.services-bento { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 340px 340px; gap: 16px; }
.svc-card { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out); }
.svc-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-xl); }
.svc-card-1 { grid-row: span 2; background: var(--forest); }
.svc-card-2 { background: #261445; }
.svc-card-3 { background: #1E1040; }
.svc-card-4 { background: #140D35; }
.svc-card-5 { background: var(--paper); border: 1.5px solid var(--ink-12); }
.svc-bg-emoji { position: absolute; bottom: -20px; right: -10px; font-size: 9rem; opacity: 0.12; pointer-events: none; transition: transform 0.4s var(--ease-out), opacity 0.4s; line-height: 1; }
.svc-card:hover .svc-bg-emoji { transform: scale(1.1) rotate(-5deg); opacity: 0.2; }
.svc-card-inner { position: absolute; inset: 0; padding: 36px 32px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
.svc-card-1 .svc-card-inner { background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 70%); }
.svc-card-5 .svc-card-inner { background: none; justify-content: space-between; }
.svc-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white); line-height: 1.15; }
.svc-card-1 .svc-title { font-size: 2.4rem; }
.svc-card-5 .svc-title { color: var(--ink); }
.svc-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.6; }
.svc-card-5 .svc-desc { color: var(--ink-80); }
.svc-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 20px; transition: color 0.2s, gap 0.2s; }
.svc-card:hover .svc-arrow { color: var(--white); gap: 10px; }
.svc-card-5 .svc-arrow { color: var(--forest); }
.svc-card-5:hover .svc-arrow { color: var(--sage); }

/* ── STATS ───────────────────────────────────────────────── */
.stats-sec { background: var(--ink); padding: 80px 0; position: relative; overflow: hidden; }
.stats-sec::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(59,31,107,0.4) 0%, transparent 70%); pointer-events: none; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }
.stat-col { padding: 20px 40px; text-align: center; border-right: 1px solid var(--glass-border); }
.stat-col:last-child { border-right: none; }
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--white); line-height: 1; display: flex; align-items: flex-start; justify-content: center; }
.stat-big sup { font-size: 2rem; color: var(--gold); margin-top: 8px; }
.stat-lbl { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 12px; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--ink); }
.why-left { background: var(--forest); padding: 100px 72px; position: relative; overflow: hidden; }
.why-left::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.why-left-emoji { font-size: 7rem; margin-bottom: 40px; display: block; }
.why-left h2 { color: var(--white); margin-bottom: 20px; }
.why-left p { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; max-width: 380px; }
.why-left-award { display: flex; align-items: center; gap: 16px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-md); padding: 18px 22px; margin-top: 48px; }
.why-left-award-icon { font-size: 1.8rem; }
.why-left-award-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.why-left-award-text span { color: rgba(255,255,255,0.45); font-size: 0.75rem; }
.why-right { background: var(--ink); padding: 100px 72px; }
.why-right > .t-label { margin-bottom: 16px; }
.why-right > .t-h2 { color: var(--white); margin-bottom: 60px; }
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point-row { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--glass-border); }
.why-point-row:last-child { border-bottom: none; }
.why-point-num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--gold); flex-shrink: 0; width: 28px; margin-top: 2px; }
.why-point-body strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-point-body p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-sec { background: var(--paper); }
.testi-featured { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.testi-visual { aspect-ratio: 3/4; border-radius: var(--r-xl); overflow: hidden; position: relative; }
.testi-visual img { width: 100%; height: 100%; object-fit: cover; }
.testi-visual-fallback { width: 100%; height: 100%; background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 100%); display: flex; align-items: center; justify-content: center; font-size: 7rem; }
.testi-content { padding: 20px 0; }
.testi-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--forest); opacity: 0.2; line-height: 1; margin-bottom: -20px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; font-style: italic; line-height: 1.55; color: var(--ink); margin-bottom: 36px; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 0.78rem; color: var(--ink-40); margin-top: 2px; }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }
.testi-dots { display: flex; gap: 8px; margin-top: 48px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-12); cursor: pointer; transition: all 0.25s; }
.testi-dot.active { background: var(--forest); width: 28px; border-radius: 4px; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-masonry { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 12px; }
.gallery-full    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.g-item { border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; transition: transform 0.4s var(--ease-out); }
.g-item:hover { transform: scale(1.02); z-index: 2; }
.g-item:hover .g-overlay { opacity: 1; }
.g-item-1 { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-item-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.g-bg-1 { background: linear-gradient(160deg, #1A0A2E 0%, #3B1F6B 100%); }
.g-bg-2 { background: linear-gradient(160deg, #180D32 0%, #2A1850 100%); }
.g-bg-3 { background: linear-gradient(160deg, #1A0830 0%, #3D1860 100%); }
.g-bg-4 { background: linear-gradient(160deg, #0D0820 0%, #2E1A50 100%); }
.g-bg-5 { background: linear-gradient(160deg, #0A0A1A 0%, #1A1A3A 100%); }
.g-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity 0.3s; z-index: 2; }
.g-overlay-label { color: var(--white); font-size: 0.8rem; font-weight: 500; }

/* ── PET CARDS ───────────────────────────────────────────── */
.pets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pet-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--ink-06); transition: all 0.4s var(--ease-out); box-shadow: var(--shadow-sm); }
.pet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pet-card-img { height: 240px; position: relative; overflow: hidden; }
.pet-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease-out); }
.pet-card:hover .pet-card-img img { transform: scale(1.04); }
.pet-card-img-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.pet-status { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: var(--r-full); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; z-index: 1; }
.pet-status.available { background: var(--forest); color: var(--white); }
.pet-status.reserved  { background: var(--gold); color: var(--ink); }
.pet-card-body { padding: 22px 24px 28px; }
.pet-breed-tag { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px; }
.pet-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.pet-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.pet-chip { font-size: 0.7rem; font-weight: 500; background: var(--foam); color: var(--forest); padding: 4px 10px; border-radius: var(--r-full); }
.pet-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--ink-06); }
.pet-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--forest); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: var(--gold); padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%; background: rgba(255,255,255,0.06); transform: rotate(-8deg); }
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; color: var(--ink); margin-bottom: 14px; }
.cta-band p { color: rgba(10,12,10,0.65); font-size: 1rem; margin-bottom: 40px; font-weight: 300; }

/* ── PAGE HERO (sub-pages) ───────────────────────────────── */
.page-hero { background: var(--ink); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(59,31,107,0.5) 0%, transparent 70%); }
.page-hero-noise { position: absolute; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb span { font-size: 0.75rem; color: rgba(255,255,255,0.35); cursor: pointer; transition: color 0.2s; }
.breadcrumb span:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.breadcrumb-active { color: rgba(255,255,255,0.6) !important; cursor: default !important; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .hero-sub { color: rgba(255,255,255,0.5); font-size: 1rem; font-weight: 300; line-height: 1.75; }

/* ── SERVICE DETAIL ──────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; }
.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0 40px; }
.detail-feature { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 400; padding: 12px 14px; border-radius: var(--r-sm); background: var(--foam); color: var(--forest); }
.detail-feature-check { font-size: 0.7rem; width: 18px; height: 18px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-list { margin-top: 48px; }
.process-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--ink-06); }
.process-item:last-child { border-bottom: none; }
.process-num-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; flex-shrink: 0; margin-top: 2px; }
.process-text strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.process-text p { font-size: 0.82rem; color: var(--ink-80); line-height: 1.65; font-weight: 300; }
.notice-box { background: var(--gold-pale); border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: 18px 20px; margin-top: 28px; }
.notice-box strong { font-size: 0.88rem; color: var(--ink); }
.notice-box p { font-size: 0.8rem; color: rgba(10,12,10,0.65); margin-top: 5px; line-height: 1.6; }

/* ── ENQUIRY BOX ─────────────────────────────────────────── */
.enquiry-box { position: sticky; top: 92px; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--ink-06); box-shadow: var(--shadow-lg); overflow: hidden; }
.enquiry-box-head { background: var(--forest); padding: 28px 28px 24px; }
.enquiry-box-head h3 { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.enquiry-box-head p { color: rgba(255,255,255,0.55); font-size: 0.8rem; font-weight: 300; }
.enquiry-box-body { padding: 24px 28px; }
.pkg-list { display: flex; flex-direction: column; gap: 10px; }
.pkg { border: 1.5px solid var(--ink-06); border-radius: var(--r-md); padding: 16px 18px; cursor: pointer; transition: all 0.2s; position: relative; }
.pkg:hover,.pkg.active { border-color: var(--forest); background: var(--foam); }
.pkg-popular { position: absolute; top: -9px; right: 12px; background: var(--gold); color: var(--ink); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 2px 10px; border-radius: var(--r-full); }
.pkg-name  { font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--forest); }
.pkg-price span { font-size: 0.75rem; font-family: 'Outfit', sans-serif; font-weight: 400; color: var(--ink-40); }
.pkg-desc  { font-size: 0.75rem; color: var(--ink-40); margin-top: 4px; line-height: 1.5; }

/* ── ABOUT / TEAM ────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--ink-06); box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease-out); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 220px; overflow: hidden; position: relative; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-img-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.team-card-body { padding: 24px; }
.team-role { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px; }
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: var(--ink-80); line-height: 1.65; font-weight: 300; }
.certs-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert-tile { background: var(--white); border: 1px solid var(--ink-06); border-radius: var(--r-md); padding: 28px 20px; text-align: center; transition: all 0.25s; }
.cert-tile:hover { border-color: var(--forest); box-shadow: var(--shadow-sm); }
.cert-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cert-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.cert-body { font-size: 0.72rem; color: var(--ink-40); line-height: 1.5; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-tile { padding: 52px 40px; background: var(--forest); }
.value-tile:nth-child(2) { background: var(--sage); }
.value-tile:nth-child(3) { background: var(--moss); }
.value-icon { font-size: 2.5rem; margin-bottom: 20px; }
.value-tile h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.value-tile p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; font-weight: 300; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; }
.contact-info-col h2 { color: var(--ink); margin-bottom: 16px; }
.contact-info-col p { font-weight: 300; line-height: 1.75; color: var(--ink-80); margin-bottom: 48px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--foam); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-item strong { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); margin-bottom: 3px; }
.contact-detail-item span { font-size: 0.9rem; color: var(--ink); font-weight: 400; }
.map-block { height: 220px; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--foam) 0%, var(--mint) 100%); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; margin-top: 32px; border: 1px solid var(--ink-06); }
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 48px; border: 1px solid var(--ink-06); box-shadow: var(--shadow-md); }
.form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.form-card > p { font-size: 0.85rem; color: var(--ink-40); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); margin-bottom: 8px; }
.form-input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--ink-12); border-radius: var(--r-sm); font-family: 'Outfit', sans-serif; font-size: 0.92rem; color: var(--ink); background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; }
.form-input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(59,31,107,0.08); background: var(--white); }
textarea.form-input { resize: vertical; min-height: 120px; }
.success-msg { display: none; background: var(--foam); border: 1px solid var(--mint); border-radius: var(--r-md); padding: 20px; text-align: center; margin-top: 16px; }
.success-msg .icon { font-size: 1.8rem; margin-bottom: 8px; }
.success-msg strong { display: block; color: var(--forest); font-size: 0.95rem; }
.success-msg span { font-size: 0.8rem; color: var(--sage); }

/* ── GALLERY PAGE TABS ───────────────────────────────────── */
.gallery-tabs { display: flex; gap: 6px; background: var(--white); border: 1px solid var(--ink-06); border-radius: var(--r-full); padding: 5px; width: fit-content; margin: 0 auto 48px; }
.g-tab { padding: 8px 20px; border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--ink-40); }
.g-tab.active { background: var(--forest); color: var(--white); }

/* ── FILTER PILLS ────────────────────────────────────────── */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-pill { padding: 8px 20px; border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--ink-40); background: var(--white); border: 1.5px solid var(--ink-12); }
.filter-pill.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.filter-pill:hover:not(.active) { border-color: var(--forest); color: var(--forest); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--ink-06); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-weight: 500; font-size: 0.95rem; gap: 20px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--ink-12); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; color: var(--forest); transition: all 0.25s; }
.faq-item.open .faq-icon { background: var(--forest); color: var(--white); border-color: var(--forest); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 0.88rem; color: var(--ink-80); line-height: 1.75; font-weight: 300; max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 10px; background: #16A34A; color: var(--white); padding: 14px 22px; border-radius: var(--r-full); font-size: 0.85rem; font-weight: 600; cursor: pointer; box-shadow: 0 8px 32px rgba(22,163,74,0.4); transition: all 0.3s var(--ease-out); }
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px rgba(22,163,74,0.5); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--white); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-icon { width: 40px; height: 40px; background: var(--forest); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); }
.footer-brand-desc { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 260px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; cursor: pointer; transition: background 0.2s; }
.footer-social-btn:hover { background: var(--forest); }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li { font-size: 0.85rem; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.2s; }
.footer-col ul li:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-rc   { font-size: 0.7rem;  color: rgba(255,255,255,0.18); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float       { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes marquee     { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollLine  { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@keyframes pulse       { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.fade-up { opacity: 0; animation: fadeSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.d1{animation-delay:0.1s} .d2{animation-delay:0.2s} .d3{animation-delay:0.3s} .d4{animation-delay:0.4s} .d5{animation-delay:0.5s}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav: hide desktop links & actions, show hamburger */
  .nav { padding: 0 24px; }
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-inner  { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .hero-right  { display: none; }
  .hero-left   { padding-right: 0; }
  .hero-stats-row { gap: 28px; }

  /* Layout adjustments */
  .container, .container-wide { padding: 0 28px; }
  .sec  { padding: 80px 0; }
  .services-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; }
  .svc-card-1 { grid-row: span 1; }
  .svc-card-1 .svc-title { font-size: 1.8rem; }
  .why-split   { grid-template-columns: 1fr; }
  .why-left    { padding: 64px 40px; }
  .why-right   { padding: 64px 40px; }
  .testi-featured { grid-template-columns: 1fr; gap: 32px; }
  .testi-visual { display: none; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .enquiry-box { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .certs-row   { grid-template-columns: 1fr 1fr; }
  .pets-grid   { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Cursor off on touch ── */
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button { cursor: pointer; }

  /* ── Spacing ── */
  .container, .container-wide { padding: 0 20px; }
  .sec    { padding: 64px 0; }
  .sec-sm { padding: 48px 0; }
  .sec-header { margin-bottom: 40px; }
  .sec-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ── Nav drawer height adjustment ── */
  .nav-drawer { top: 68px; padding: 24px 20px 32px; }
  .nav-drawer-link { font-size: 1.7rem; padding: 14px 0; }

  /* ── Hero ── */
  .hero { padding-top: 68px; min-height: 100svh; }
  .hero-inner { padding: 48px 20px 56px; min-height: calc(100svh - 68px); }
  .t-display  { font-size: clamp(2.6rem, 11vw, 4rem); line-height: 0.97; }
  .hero-sub   { font-size: 0.95rem; margin: 20px 0 32px; }
  .hero-ctas  { flex-direction: column; gap: 12px; }
  .hero-ctas .btn-primary-dark,
  .hero-ctas .btn-outline-dark { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-stats-row { gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; }
  .hero-stat-num  { font-size: 2rem; }
  .hero-eyebrow   { font-size: 0.7rem; margin-bottom: 24px; }
  .scroll-hint    { display: none; }

  /* ── Marquee ── */
  .marquee-item { padding: 0 24px; font-size: 0.75rem; }

  /* ── Services bento ── */
  .services-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .svc-card-1 { min-height: 240px; }
  .svc-card-2, .svc-card-3, .svc-card-4, .svc-card-5 { min-height: 160px; }
  .svc-card-1 .svc-title { font-size: 1.6rem; }
  .svc-title  { font-size: 1.3rem; }
  .svc-card-inner { padding: 24px 20px; }

  /* ── Stats ── */
  .stats-row  { grid-template-columns: 1fr 1fr; }
  .stat-col   { padding: 16px 20px; border-right: none; border-bottom: 1px solid var(--glass-border); }
  .stat-col:nth-child(odd)  { border-right: 1px solid var(--glass-border); }
  .stat-col:last-child      { border-bottom: none; }
  .stat-col:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .stat-big   { font-size: 3rem; }

  /* ── Why split ── */
  .why-left   { padding: 48px 20px; }
  .why-left-emoji { font-size: 4.5rem; margin-bottom: 24px; }
  .why-right  { padding: 48px 20px; }
  .why-point-row { padding: 20px 0; }

  /* ── Testimonials ── */
  .testi-text   { font-size: 1.2rem; }
  .testi-content { padding: 0; }

  /* ── Gallery ── */
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .g-item-1 { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9 !important; }
  .gallery-full { grid-template-columns: 1fr 1fr; gap: 8px; }
  .g-item { border-radius: var(--r-sm); }

  /* ── Pets ── */
  .pets-grid  { grid-template-columns: 1fr; gap: 16px; margin-top: 0; }
  .pet-card-img { height: 200px; }

  /* ── Page hero (sub-pages) ── */
  .page-hero { padding: 104px 0 56px; }
  .t-h1      { font-size: clamp(2rem, 8vw, 3.2rem); }
  .t-h2      { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* ── Service detail ── */
  .detail-grid { gap: 32px; }
  .detail-features { grid-template-columns: 1fr; gap: 8px; }
  .enquiry-box-head { padding: 22px 20px 18px; }
  .enquiry-box-body { padding: 18px 20px; }

  /* ── Values / About ── */
  .values-grid { grid-template-columns: 1fr; gap: 2px; }
  .value-tile  { padding: 40px 24px; }
  .team-grid   { grid-template-columns: 1fr; gap: 16px; }
  .certs-row   { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* ── Contact ── */
  .contact-wrap   { gap: 36px; }
  .contact-info-col p { margin-bottom: 28px; }
  .map-block { height: 160px; }
  .form-card { padding: 28px 20px; border-radius: var(--r-lg); }
  .form-row  { grid-template-columns: 1fr; gap: 0; }

  /* ── CTA Band ── */
  .cta-band { padding: 56px 0; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-cta-dark, .btn-cta-ghost { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Footer ── */
  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── WhatsApp float ── */
  .wa-float { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 0.82rem; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
══════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .nav-logo-tagline { display: none; }
  .t-display   { font-size: 2.4rem; }
  .hero-stat-num { font-size: 1.7rem; }
  .services-bento { gap: 8px; }
  .gallery-masonry, .gallery-full { grid-template-columns: 1fr; }
  .g-item-1 { grid-column: span 1; aspect-ratio: 1 !important; }
  .certs-row { grid-template-columns: 1fr; }
  .pets-grid { grid-template-columns: 1fr; }
}
