/* =====================================================================
   CALICO PETSHOP PURBALINGGA — style.css
   Methodology : BEM
   Approach    : Mobile-first
   Author      : Senior Front-End Dev
   ===================================================================== */

/* =====================================================================
   1. CSS CUSTOM PROPERTIES
   ===================================================================== */
:root {
  /* — Color palette — */
  --clr-cream: #fff8f0;
  --clr-warm-white: #fffcf8;
  --clr-orange: #f4813a;
  --clr-orange-dark: #d9641f;
  --clr-orange-lt: #fceee3;
  --clr-teal: #3aaeaa;
  --clr-teal-dark: #2b8c88;
  --clr-teal-lt: #e3f7f6;
  --clr-brown: #6b3f1f;
  --clr-brown-lt: #c8956c;
  --clr-text: #3a2810;
  --clr-text-muted: #8b6a50;
  --clr-card-bg: #ffffff;
  --clr-border: #f0e0d0;

  /* — Typography — */
  --ff-display: "Fredoka", sans-serif;
  --ff-body: "Nunito", sans-serif;

  /* — Border radius — */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --radius-pill: 9999px;

  /* — Shadows — */
  --shadow-sm: 0 2px 8px rgba(100, 50, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(100, 50, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(100, 50, 0, 0.16);

  /* — Transitions — */
  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.18s ease;
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-cream);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =====================================================================
   3. UTILITY CLASSES
   ===================================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Section label pill */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--clr-orange-lt);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-label::before {
  content: attr(data-icon);
  font-size: 1rem;
}

/* Section typography */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-top: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn--primary {
  background: var(--clr-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(244, 129, 58, 0.35);
}

.btn--primary:hover {
  background: var(--clr-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 129, 58, 0.4);
}

.btn--teal {
  background: var(--clr-teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(58, 174, 170, 0.3);
}

.btn--teal:hover {
  background: var(--clr-teal-dark);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--clr-orange);
  color: var(--clr-orange);
}

.btn--outline:hover {
  background: var(--clr-orange);
  color: #fff;
}

.btn--why-cta {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn--why-cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Paw decorations */
.paw-deco {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  animation: float 5s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   4. ANIMATIONS
   ===================================================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =====================================================================
   5. NAVBAR
   ===================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--clr-text);
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-orange);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(244, 129, 58, 0.4);
}

.navbar__logo span {
  color: var(--clr-orange);
}

/* Desktop nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--clr-orange);
  background: var(--clr-orange-lt);
}

.navbar__cta {
  flex-shrink: 0;
}

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar__burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.navbar__mobile {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--clr-warm-white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 998;
  overflow-y: auto;
}

.navbar__mobile.open {
  transform: translateX(0);
}

.navbar__mobile a {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.navbar__mobile a:hover {
  background: var(--clr-orange-lt);
  color: var(--clr-orange);
}

/* =====================================================================
   6. HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: var(--clr-cream);
}

/* Ambient blobs */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, var(--clr-orange-lt) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: min(400px, 60vw);
  height: min(400px, 60vw);
  background: radial-gradient(circle, var(--clr-teal-lt) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 80px 60px;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-teal-lt);
  color: var(--clr-teal-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-teal);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Hero title */
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: 18px;
}

.hero__title em {
  font-style: normal;
  color: var(--clr-orange);
  position: relative;
}

.hero__title em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--clr-orange-lt);
  border-radius: 3px;
  z-index: -1;
}

.hero__desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Stats */
.hero__stats {
  display: flex;
  gap: 32px;
}

.hero__stat-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-orange);
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--clr-orange-lt);
}

.hero__card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__card-main:hover img {
  transform: scale(1.04);
}

/* Floating elements */
.hero__float-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: bob 3s ease-in-out infinite;
}

.hero__float-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--clr-teal-lt);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero__float-badge-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--clr-text);
}

.hero__float-badge-text span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.hero__float-tag {
  position: absolute;
  top: 20px;
  right: -18px;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(244, 129, 58, 0.4);
  animation: bob 4s ease-in-out infinite reverse;
}

/* =====================================================================
   7. SERVICES
   ===================================================================== */
.services {
  padding-block: 96px;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--clr-cream) 0%,
    var(--clr-warm-white) 100%
  );
  z-index: -1;
}

.services__header {
  text-align: center;
  margin-bottom: 56px;
}

.services__header .section-label {
  justify-content: center;
}

.services__header .section-desc {
  margin-inline: auto;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Service card */
.service-card {
  background: var(--clr-card-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-orange-lt), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-orange);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__img-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--clr-orange-lt);
}

.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img-wrap img {
  transform: scale(1.07);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
}

.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Color variants */
.service-card--orange .service-card__icon {
  background: var(--clr-orange-lt);
}
.service-card--teal .service-card__icon {
  background: var(--clr-teal-lt);
}
.service-card--brown .service-card__icon {
  background: #f5ede3;
}
.service-card--pink .service-card__icon {
  background: #fdeaf0;
}

.service-card--teal .service-card__img-wrap {
  background: var(--clr-teal-lt);
}
.service-card--brown .service-card__img-wrap {
  background: #f5ede3;
}
.service-card--pink .service-card__img-wrap {
  background: #fdeaf0;
}

.service-card--orange .service-card__badge {
  background: var(--clr-orange-lt);
  color: var(--clr-orange);
}
.service-card--teal .service-card__badge {
  background: var(--clr-teal-lt);
  color: var(--clr-teal-dark);
}
.service-card--brown .service-card__badge {
  background: #f5ede3;
  color: var(--clr-brown-lt);
}
.service-card--pink .service-card__badge {
  background: #fdeaf0;
  color: #c0547c;
}

/* =====================================================================
   8. WHY US BANNER
   ===================================================================== */
.why {
  background: var(--clr-teal);
  padding-block: 64px;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "🐾";
  position: absolute;
  font-size: 14rem;
  right: -2%;
  top: -20%;
  opacity: 0.06;
  pointer-events: none;
}

.why__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.why__text {
  max-width: 500px;
}

.why__text .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.why__text .section-title {
  color: #fff;
}

.why__text .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.why__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why__pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition-fast);
}

.why__pillar:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.why__pillar-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.why__pillar-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.why__pillar-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* =====================================================================
   9. SCHEDULE
   ===================================================================== */
.schedule {
  padding-block: 96px;
}

.schedule__header {
  margin-bottom: 48px;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.schedule-card {
  background: var(--clr-card-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.schedule-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.schedule-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 20px;
  border-bottom: 1.5px solid var(--clr-border);
}

.schedule-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.schedule-card__icon--store {
  background: var(--clr-orange-lt);
}
.schedule-card__icon--clinic {
  background: var(--clr-teal-lt);
}
.schedule-card__icon--hotel {
  background: #f5ede3;
}

.schedule-card__name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.schedule-card__type {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.schedule-card__body {
  padding: 20px 24px 24px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--clr-border);
  font-size: 0.88rem;
  gap: 8px;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row__day {
  color: var(--clr-text-muted);
  font-weight: 600;
}

.schedule-row__time {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-text);
}

.schedule-row__badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.schedule-row__badge--open {
  background: #e8f8f0;
  color: #2e8b57;
}
.schedule-row__badge--split {
  background: var(--clr-teal-lt);
  color: var(--clr-teal-dark);
}
.schedule-row__badge--closed {
  background: #fef0f0;
  color: #c0392b;
}

.schedule__cta {
  text-align: center;
  margin-top: 40px;
}

/* =====================================================================
   10. GALLERY MARQUEE
   ===================================================================== */
.gallery {
  padding-block: 96px;
  background: var(--clr-warm-white);
  overflow: hidden;
}

.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery__header .section-label {
  justify-content: center;
}

.gallery__track-wrap {
  overflow: hidden;
  margin-inline: -20px;
}

.gallery__track {
  display: flex;
  gap: 16px;
  animation: marquee 28s linear infinite;
  width: max-content;
  padding-inline: 20px;
}

.gallery__track:hover {
  animation-play-state: paused;
}

.gallery__item {
  width: 240px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--clr-orange-lt);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--clr-text);
}

/* =====================================================================
   11. LOCATION
   ===================================================================== */
.location {
  padding-block: 96px;
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  background: var(--clr-teal-lt);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__info {
  padding-top: 8px;
}

.location__info .section-title {
  margin-bottom: 20px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--clr-card-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.info-block:hover {
  border-color: var(--clr-orange);
  box-shadow: var(--shadow-sm);
}

.info-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--clr-orange-lt);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-block__text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.info-block__text span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* =====================================================================
   12. CONTACT
   ===================================================================== */
.contact {
  background: linear-gradient(135deg, var(--clr-brown) 0%, #8b4f2a 100%);
  padding-block: 96px;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "🐱";
  position: absolute;
  font-size: 18rem;
  left: -4%;
  bottom: -10%;
  opacity: 0.05;
  pointer-events: none;
}

.contact::after {
  content: "🐶";
  position: absolute;
  font-size: 12rem;
  right: 2%;
  top: -8%;
  opacity: 0.05;
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact__header {
  text-align: center;
  margin-bottom: 56px;
}

.contact__header .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  justify-content: center;
}

.contact__header .section-title {
  color: #fff;
}

.contact__header .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-inline: auto;
  text-align: center;
}

.contact__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Contact card */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-width: 180px;
  transition: var(--transition);
  text-align: center;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.contact-card__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.contact-card__handle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  word-break: break-all;
}

.contact-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  margin-top: 4px;
}

.contact-card__btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Platform icon colors */
.contact-card--wa .contact-card__icon {
  background: #25d366;
  color: #fff;
}
.contact-card--ig .contact-card__icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.contact-card--tiktok .contact-card__icon {
  background: #010101;
  color: #fff;
}
.contact-card--fb .contact-card__icon {
  background: #1877f2;
  color: #fff;
}

/* =====================================================================
   13. FOOTER
   ===================================================================== */
.footer {
  background: #1a0d05;
  color: rgba(255, 255, 255, 0.6);
  padding-block: 56px 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}

.footer__brand-name span {
  color: var(--clr-orange);
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__brand-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--clr-orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.footer__col ul li a:hover {
  color: var(--clr-orange);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer__bottom a {
  color: var(--clr-orange);
}

/* =====================================================================
   14. BACK TO TOP
   ===================================================================== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--clr-orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(244, 129, 58, 0.4);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--transition-fast);
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  background: var(--clr-orange-dark);
  transform: translateY(-2px);
}

/* =====================================================================
   15. RESPONSIVE — Tablet (max 900px)
   ===================================================================== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 60px 48px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__card-main {
    width: min(360px, 100%);
    aspect-ratio: 3 / 2.5;
  }

  .hero__float-badge {
    bottom: -14px;
    left: 12px;
  }

  .hero__float-tag {
    top: 12px;
    right: 12px;
  }

  .location__inner {
    grid-template-columns: 1fr;
  }

  .location__map {
    height: 280px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* =====================================================================
   16. RESPONSIVE — Mobile (max 680px)
   ===================================================================== */
@media (max-width: 680px) {
  .navbar__nav {
    display: none;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .contact__cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    width: 100%;
    max-width: 360px;
  }
}

/* =====================================================================
   17. RESPONSIVE — Small Mobile (max 480px)
   ===================================================================== */
@media (max-width: 480px) {
  .hero__stats {
    gap: 20px;
  }
  .hero__float-badge {
    display: none;
  }
  .why__inner {
    gap: 28px;
  }
  .schedule__grid {
    grid-template-columns: 1fr;
  }
}
