/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Warm, cute palette */
  --pink-50: #fff5f7;
  --pink-100: #ffe8ed;
  --pink-200: #ffd0db;
  --pink-300: #ffadc2;
  --pink-400: #ff85a3;
  --pink-500: #ff5c8a;
  --pink-600: #e8446e;
  --peach-100: #fff0e6;
  --peach-200: #ffe0cc;
  --peach-300: #ffc9a8;
  --cream: #fef9f4;
  --cream-dark: #f9efe5;
  --warm-50: #fefcfa;
  --warm-100: #fdf6ee;
  --warm-200: #f5e6d3;
  --warm-300: #e8cdb3;
  --warm-400: #c9a87c;
  --warm-500: #a68456;
  --brown-600: #7a5c3a;
  --brown-700: #5c432a;
  --gray-50: #fafaf9;
  --gray-100: #f5f4f2;
  --gray-200: #e8e6e3;
  --gray-300: #d4d1cc;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --white: #ffffff;

  --font-display: 'Quicksand', 'Noto Sans TC', sans-serif;
  --font-body: 'Noto Sans TC', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-pink: 0 4px 20px rgba(255, 92, 138, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Section Tags ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-100);
  color: var(--pink-500);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-tag i {
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink-500);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--pink-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 92, 138, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--pink-300);
  color: var(--pink-500);
  transform: translateY(-2px);
}

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pink-500);
}

.nav-logo i {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-400);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--pink-500);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--pink-500);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--pink-600);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 48px;
}

.mobile-menu-inner a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.2s;
}

.mobile-menu-inner a:hover {
  color: var(--pink-500);
}

.mobile-cta {
  margin-top: 16px;
  background: var(--pink-500);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 245, 247, 0.92) 0%,
    rgba(255, 232, 237, 0.85) 40%,
    rgba(255, 208, 219, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-500);
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
}

.hero-badge i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--pink-500);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--peach-200);
  border-radius: 6px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Paw prints */
.hero-paws {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.paw {
  position: absolute;
  color: var(--pink-200);
  opacity: 0.4;
}

.p1 { font-size: 3rem; top: 20%; right: 15%; transform: rotate(-20deg); }
.p2 { font-size: 2rem; top: 60%; right: 25%; transform: rotate(15deg); }
.p3 { font-size: 4rem; top: 70%; right: 8%; transform: rotate(-35deg); }

/* ===== About ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--peach-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-100);
  color: var(--pink-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.feature span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pink-300);
  line-height: 1;
  min-width: 44px;
  padding-top: 2px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}

.pricing-header {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: var(--white);
  padding: 32px 28px 28px;
  text-align: center;
}

.pricing-header i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.9;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.pricing-header p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.pricing-body {
  padding: 24px 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.price-row:last-child {
  border-bottom: none;
}

.breed {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 1rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pink-500);
}

.price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-card .btn {
  margin: 0 28px 28px;
  width: calc(100% - 56px);
}

/* ===== Gallery ===== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,92,138,0.7), transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info .section-tag {
  margin-bottom: 12px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 32px;
  line-height: 1.3;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-100);
  color: var(--pink-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.info-item span {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.contact-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-badge i {
  font-size: 1.8rem;
  color: var(--pink-500);
}

.map-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
  font-family: var(--font-display);
}

.map-badge span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 48px 0 24px;
}

.footer-content {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-logo i {
  color: var(--pink-400);
}

.footer-content p {
  font-size: 0.95rem;
  color: var(--gray-400);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.3s;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--pink-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-700);
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 300px;
  }

  .about-image-accent {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .contact-map img {
    height: 280px;
  }

  .process-step {
    padding: 18px;
  }
}

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

  .gallery-item {
    aspect-ratio: 4/3;
  }

  .pricing-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
  }
}
