/* ============================================
   PLAYDOG Landing - PetPals Style
   Warm Beige/Brown Minimal Theme + Dark Mode
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --pd-accent: #967d6c;
  --pd-accent-dark: #7a6455;
  --pd-accent-light: #b49a89;
  --pd-text: #222222;
  --pd-text-light: #555555;
  --pd-text-muted: #888888;
  --pd-white: #ffffff;
  --pd-bg-alt: #fafafa;
  --pd-bg-warm: #f5f0eb;
  --pd-border: #e8e1da;
  --pd-footer-bg: #e8e1da;
  --pd-font-heading: 'Playfair Display', Georgia, serif;
  --pd-font-body: 'Inter', 'Noto Sans KR', sans-serif;
  --pd-radius: 16px;
  --pd-radius-sm: 10px;
  --pd-radius-lg: 24px;
  --pd-radius-pill: 50px;
  --pd-transition: 0.3s ease;
  --pd-header-h: 80px;
  --pd-max-w: 1200px;
  --pd-shadow: 0 4px 20px rgba(0,0,0,0.06);
  --pd-shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --pd-accent: #b0a090;
  --pd-accent-dark: #9a8a7a;
  --pd-accent-light: #c4b4a4;
  --pd-text: #e0e0e0;
  --pd-text-light: #a0a0a0;
  --pd-text-muted: #787878;
  --pd-white: #222222;
  --pd-bg-alt: #1a1a1a;
  --pd-bg-warm: #181818;
  --pd-border: #363636;
  --pd-footer-bg: #141414;
  --pd-shadow: 0 4px 20px rgba(0,0,0,0.25);
  --pd-shadow-hover: 0 12px 40px rgba(0,0,0,0.35);
}

[data-theme="dark"] .pd-header {
  background: rgba(24,24,24,0.88);
}
[data-theme="dark"] .pd-header.scrolled {
  background: rgba(24,24,24,0.96);
  box-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
[data-theme="dark"] .pd-mobile-nav {
  background: rgba(24,24,24,0.98);
}
[data-theme="dark"] .pd-nav-cta {
  background: var(--pd-accent); color: var(--pd-white) !important;
}
[data-theme="dark"] .pd-nav-cta:hover {
  background: var(--pd-accent-light); color: #181818 !important;
}
[data-theme="dark"] .pd-btn-primary {
  background: var(--pd-accent); color: #181818;
}
[data-theme="dark"] .pd-btn-primary:hover {
  background: var(--pd-accent-light); color: #181818;
}
[data-theme="dark"] .pd-hero::before {
  background: rgba(176,160,144,0.04);
}
[data-theme="dark"] .pd-hero::after {
  background: rgba(176,160,144,0.03);
}
[data-theme="dark"] .pd-hero-logo {
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
[data-theme="dark"] .pd-service-card.pd-service-highlight {
  background: linear-gradient(to bottom, rgba(176,160,144,0.08), var(--pd-white));
}
[data-theme="dark"] .pd-footer-bottom {
  border-top-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .pd-scroll-top {
  background: var(--pd-accent); color: #181818;
}
[data-theme="dark"] .pd-scroll-top:hover {
  background: var(--pd-accent-light);
}
[data-theme="dark"] .pd-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23867a6e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
[data-theme="dark"] .pd-contact-item i {
  background: #2a2a2a;
}
[data-theme="dark"] .pd-social-links a {
  background: #2a2a2a;
}
[data-theme="dark"] .pd-value-icon {
  background: #2e2e2e;
}
[data-theme="dark"] .pd-brand-logo-wrap img {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
[data-theme="dark"] .pd-hamburger span {
  background: var(--pd-text);
}

/* --- Dark Mode Toggle Button --- */
.pd-theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid var(--pd-border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; transition: all var(--pd-transition); color: var(--pd-text-muted);
  margin-left: 12px; flex-shrink: 0;
}
.pd-theme-toggle:hover { border-color: var(--pd-accent); color: var(--pd-accent); background: rgba(150,125,108,0.08); }
[data-theme="dark"] .pd-theme-toggle:hover { background: rgba(196,167,125,0.1); }

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--pd-header-h); }

body {
  font-family: var(--pd-font-body);
  background: var(--pd-white);
  color: var(--pd-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--pd-accent); text-decoration: none; transition: color var(--pd-transition); }
a:hover { color: var(--pd-accent-dark); }
img { max-width: 100%; height: auto; display: block; }

/* --- Layout --- */
.pd-container { max-width: var(--pd-max-w); margin: 0 auto; padding: 0 100px; }
.pd-section { padding: 120px 0; }
.pd-section-alt { background: var(--pd-bg-alt); }
.pd-section-warm { background: var(--pd-bg-warm); }

.pd-section-title { text-align: center; margin-bottom: 64px; }
.pd-section-title h2 {
  font-family: var(--pd-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pd-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.pd-section-title .pd-gold-line {
  width: 40px; height: 3px; background: var(--pd-accent);
  margin: 16px auto; border-radius: 2px;
}
.pd-section-title p { color: var(--pd-text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* --- Fade-in --- */
.pd-fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.pd-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER
   ============================================ */
.pd-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--pd-header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  transition: all var(--pd-transition);
}
.pd-header.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 1px 12px rgba(0,0,0,0.06); }

.pd-header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.pd-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.pd-logo img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.pd-logo-text {
  font-family: var(--pd-font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--pd-text); letter-spacing: 1px;
}
.pd-logo-text span { color: var(--pd-accent); }

.pd-nav { display: flex; align-items: center; gap: 36px; }
.pd-nav a {
  color: var(--pd-text-light); font-size: 0.92rem; font-weight: 500;
  transition: color var(--pd-transition); position: relative;
}
.pd-nav a:hover { color: var(--pd-accent); }

.pd-nav-cta {
  background: var(--pd-text); color: var(--pd-white) !important;
  padding: 10px 24px; border-radius: var(--pd-radius-pill);
  font-weight: 600; font-size: 0.88rem;
  transition: all var(--pd-transition);
}
.pd-nav-cta:hover { background: var(--pd-accent); color: var(--pd-white) !important; transform: translateY(-1px); }

.pd-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.pd-hamburger span { display: block; width: 24px; height: 2px; background: var(--pd-text); transition: all var(--pd-transition); border-radius: 1px; }
.pd-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pd-hamburger.active span:nth-child(2) { opacity: 0; }
.pd-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.pd-mobile-nav {
  display: none; position: fixed; top: var(--pd-header-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(15px);
  padding: 24px; border-bottom: 1px solid var(--pd-border); z-index: 999;
}
.pd-mobile-nav.open { display: flex; flex-direction: column; gap: 8px; }
.pd-mobile-nav a { color: var(--pd-text); font-size: 1.05rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--pd-border); }
.pd-mobile-nav a:hover { color: var(--pd-accent); }

/* ============================================
   HERO
   ============================================ */
.pd-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; background: var(--pd-bg-warm);
  overflow: hidden; padding-top: var(--pd-header-h);
}
.pd-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(150,125,108,0.08); pointer-events: none;
}
.pd-hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(150,125,108,0.06); pointer-events: none;
}

.pd-hero-inner { display: flex; align-items: center; gap: 80px; position: relative; z-index: 1; }

.pd-hero-content { flex: 1; }
.pd-hero-visual { flex: 1; display: flex; justify-content: center; }

.pd-hero-logo {
  width: 380px; height: 380px; border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(150,125,108,0.2);
  border: 3px solid var(--pd-border);
}

/* Hero Full-width (no logo) */
.pd-hero-full .pd-hero-center {
  text-align: center; max-width: 860px; margin: 0 auto;
  position: relative; z-index: 1;
}
.pd-hero-full .pd-hero-buttons { justify-content: center; }
.pd-hero-full .pd-hero-stats { justify-content: center; }

.pd-hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.pd-hero-tags span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--pd-radius-pill);
  background: rgba(150,125,108,0.1); border: 1px solid var(--pd-border);
  font-size: 0.85rem; font-weight: 500; color: var(--pd-text-light);
  transition: all var(--pd-transition);
}
.pd-hero-tags span:hover {
  background: var(--pd-accent); color: var(--pd-white); border-color: var(--pd-accent);
}
.pd-hero-tags span i { font-size: 0.8rem; color: var(--pd-accent); }
.pd-hero-tags span:hover i { color: var(--pd-white); }
[data-theme="dark"] .pd-hero-tags span {
  background: rgba(176,160,144,0.1); border-color: var(--pd-border);
}

.pd-hero-move { opacity: 0; transform: translateY(20px); }
.pd-hero-move.animate { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }

.pd-hero-label {
  display: inline-block; background: var(--pd-accent); color: var(--pd-white);
  font-size: 0.82rem; font-weight: 600; padding: 6px 18px;
  border-radius: var(--pd-radius-pill); margin-bottom: 24px; letter-spacing: 1.5px; text-transform: uppercase;
}

.pd-hero h1 {
  font-family: var(--pd-font-heading);
  font-size: 3.5rem; font-weight: 700; line-height: 1.2;
  margin-bottom: 20px; color: var(--pd-text); letter-spacing: -0.5px;
}
.pd-hero h1 em {
  font-style: normal; color: var(--pd-accent);
  background: linear-gradient(to top, rgba(150,125,108,0.15) 30%, transparent 30%);
}

.pd-hero-sub { font-size: 1.1rem; color: var(--pd-text-light); margin-bottom: 36px; line-height: 1.8; }
.pd-hero-sub strong { color: var(--pd-accent); font-weight: 600; }

.pd-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.pd-hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--pd-border);
}
.pd-hero-stat-number {
  font-family: var(--pd-font-heading);
  font-size: 2.2rem; font-weight: 700; color: var(--pd-accent); line-height: 1;
}
.pd-hero-stat-label { font-size: 0.85rem; color: var(--pd-text-muted); margin-top: 4px; }

/* --- Buttons --- */
.pd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--pd-radius-pill);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all var(--pd-transition); border: none; font-family: var(--pd-font-body);
}
.pd-btn-primary { background: var(--pd-text); color: var(--pd-white); }
.pd-btn-primary:hover { background: var(--pd-accent); color: var(--pd-white); transform: translateY(-2px); box-shadow: var(--pd-shadow-hover); }
.pd-btn-outline { background: transparent; color: var(--pd-text); border: 2px solid var(--pd-border); }
.pd-btn-outline:hover { border-color: var(--pd-accent); color: var(--pd-accent); transform: translateY(-2px); }

/* ============================================
   QUICK SERVICE CARDS
   ============================================ */
.pd-quick-services { padding: 0; margin-top: -50px; position: relative; z-index: 10; }
.pd-quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pd-quick-grid-4 { grid-template-columns: repeat(4, 1fr); }

.pd-quick-card {
  background: var(--pd-white); border-radius: var(--pd-radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--pd-shadow); border: 1px solid var(--pd-border);
  transition: all var(--pd-transition); cursor: pointer; text-decoration: none; color: var(--pd-text); display: block;
}
.pd-quick-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-hover); border-color: var(--pd-accent); color: var(--pd-text); }

.pd-quick-card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--pd-bg-warm); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.6rem;
  transition: background var(--pd-transition);
}
.pd-quick-card:hover .pd-quick-card-icon { background: var(--pd-accent); }
.pd-quick-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.pd-quick-card p { color: var(--pd-text-muted); font-size: 0.85rem; }

/* ============================================
   GUIDE BANNER
   ============================================ */
.pd-guide-banner { padding: 60px 0; }
.pd-guide-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--pd-bg-warm); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius-lg); padding: 48px; gap: 40px;
  transition: all var(--pd-transition);
}
.pd-guide-card:hover { box-shadow: var(--pd-shadow-hover); }
.pd-guide-card-content h2 {
  font-family: var(--pd-font-heading); font-size: 1.8rem; font-weight: 700;
  margin-bottom: 12px; line-height: 1.4; color: var(--pd-text);
}
.pd-guide-card-content p { color: var(--pd-text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; max-width: 560px; }
.pd-guide-card-icon { font-size: 5rem; flex-shrink: 0; opacity: 0.7; }

.pd-service-badge {
  display: inline-block; background: var(--pd-accent); color: var(--pd-white);
  font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: var(--pd-radius-pill);
}

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.pd-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pd-cat-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pd-cat-grid-5 { grid-template-columns: repeat(5, 1fr); }

.pd-cat-card {
  background: var(--pd-white); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius); overflow: hidden;
  transition: all var(--pd-transition); cursor: pointer;
}
.pd-cat-card:hover { box-shadow: var(--pd-shadow-hover); transform: translateY(-6px); border-color: var(--pd-accent); }

.pd-cat-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; background: var(--pd-bg-warm); position: relative;
}
.pd-cat-img .pd-cat-icon { position: relative; z-index: 1; transition: transform var(--pd-transition); }
.pd-cat-card:hover .pd-cat-icon { transform: scale(1.15); }

.pd-cat-body { padding: 22px; }
.pd-cat-body h3 { font-family: var(--pd-font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pd-cat-body p { color: var(--pd-text-light); font-size: 0.88rem; line-height: 1.6; }
.pd-cat-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  color: var(--pd-accent); font-size: 0.88rem; font-weight: 600;
}
.pd-cat-link:hover { gap: 10px; }

/* ============================================
   SUBSECTION TITLES
   ============================================ */
.pd-subsection-title {
  font-family: var(--pd-font-heading);
  font-size: 1.3rem; font-weight: 700; color: var(--pd-text);
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.pd-subsection-title i {
  color: var(--pd-accent); font-size: 1rem;
}
.pd-subsection-desc {
  color: var(--pd-text-light); font-size: 0.95rem;
  margin-top: -16px; margin-bottom: 28px;
}

.pd-services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pd-services-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================
   RESTAURANT SOLUTION
   ============================================ */
.pd-restaurant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pd-rest-card {
  background: var(--pd-white); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius); padding: 28px; text-align: center;
  transition: all var(--pd-transition);
}
.pd-rest-card:hover { box-shadow: var(--pd-shadow-hover); transform: translateY(-6px); border-color: var(--pd-accent); }
.pd-rest-card-img {
  width: 100%; height: 140px; border-radius: var(--pd-radius-sm);
  overflow: hidden; margin-bottom: 16px;
}
.pd-rest-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.pd-rest-card:hover .pd-rest-card-img img { transform: scale(1.08); }
.pd-rest-card h4 { font-family: var(--pd-font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pd-rest-card p { color: var(--pd-text-light); font-size: 0.84rem; line-height: 1.6; }

/* ============================================
   PRODUCTS
   ============================================ */
.pd-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.pd-product-card {
  background: var(--pd-white); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius); overflow: hidden;
  transition: all var(--pd-transition);
}
.pd-product-card:hover { box-shadow: var(--pd-shadow-hover); transform: translateY(-6px); border-color: var(--pd-accent); }

.pd-product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: var(--pd-bg-warm); position: relative; overflow: hidden;
}
.pd-product-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.pd-product-card:hover .pd-product-photo { transform: scale(1.08); }
.pd-product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--pd-accent); color: var(--pd-white);
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: var(--pd-radius-pill);
}
.pd-product-body { padding: 20px; }
.pd-product-body h4 { font-family: var(--pd-font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.pd-product-body .pd-product-desc { color: var(--pd-text-light); font-size: 0.84rem; margin-bottom: 12px; line-height: 1.5; }
.pd-product-price { color: var(--pd-accent); font-weight: 700; font-size: 1rem; }

/* ============================================
   BRAND STORY
   ============================================ */
.pd-brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pd-brand-logo-wrap { display: flex; align-items: center; justify-content: center; }
.pd-brand-logo-wrap img {
  width: 320px; height: 320px; border-radius: 32px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(150,125,108,0.15); border: 3px solid var(--pd-border);
}
.pd-brand-text h2 {
  font-family: var(--pd-font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 16px;
}
.pd-brand-text h2 span { color: var(--pd-accent); }
.pd-brand-text > p { color: var(--pd-text-light); font-size: 1.05rem; line-height: 1.9; margin-bottom: 32px; }

.pd-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pd-value-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: var(--pd-bg-warm); border-radius: var(--pd-radius-sm); border: 1px solid var(--pd-border);
  transition: all var(--pd-transition);
}
.pd-value-item:hover { border-color: var(--pd-accent); box-shadow: var(--pd-shadow); }
.pd-value-icon {
  font-size: 1.4rem; flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pd-white); border-radius: 10px;
}
.pd-value-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.pd-value-item p { color: var(--pd-text-muted); font-size: 0.82rem; }

.pd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--pd-border); }
.pd-stat { text-align: center; }
.pd-stat-number { font-family: var(--pd-font-heading); font-size: 2.8rem; font-weight: 700; color: var(--pd-accent); line-height: 1; margin-bottom: 8px; }
.pd-stat-label { color: var(--pd-text-muted); font-size: 0.9rem; }

/* ============================================
   SERVICES
   ============================================ */
.pd-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pd-service-card {
  background: var(--pd-white); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius); padding: 32px 22px; text-align: center;
  transition: all var(--pd-transition); position: relative;
}
.pd-service-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-hover); border-color: var(--pd-accent); }
.pd-service-card.pd-service-highlight { border-color: var(--pd-accent); background: linear-gradient(to bottom, rgba(150,125,108,0.05), var(--pd-white)); }
.pd-service-card .pd-service-badge { position: absolute; top: -12px; right: 16px; }
.pd-service-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.pd-service-card h3 { font-family: var(--pd-font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pd-service-card p { color: var(--pd-text-light); font-size: 0.86rem; line-height: 1.6; margin-bottom: 18px; }
.pd-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pd-accent); font-size: 0.88rem; font-weight: 600;
}
.pd-service-link:hover { gap: 10px; }

/* ============================================
   BUSINESS SOLUTIONS
   ============================================ */
.pd-solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pd-solution-card {
  background: var(--pd-white); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius); padding: 32px 28px; position: relative;
  transition: all var(--pd-transition); overflow: hidden;
}
.pd-solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pd-accent), var(--pd-accent-light));
  opacity: 0; transition: opacity var(--pd-transition);
}
.pd-solution-card:hover { box-shadow: var(--pd-shadow-hover); transform: translateY(-6px); border-color: var(--pd-accent); }
.pd-solution-card:hover::before { opacity: 1; }

.pd-solution-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--pd-font-heading); font-size: 2.8rem; font-weight: 800;
  color: var(--pd-border); line-height: 1; pointer-events: none;
  transition: color var(--pd-transition);
}
.pd-solution-card:hover .pd-solution-num { color: rgba(150,125,108,0.15); }
[data-theme="dark"] .pd-solution-card:hover .pd-solution-num { color: rgba(176,160,144,0.12); }

.pd-solution-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--pd-bg-warm); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--pd-accent); margin-bottom: 18px;
  transition: all var(--pd-transition);
}
.pd-solution-card:hover .pd-solution-icon { background: var(--pd-accent); color: var(--pd-white); }
[data-theme="dark"] .pd-solution-card:hover .pd-solution-icon { color: #181818; }

.pd-solution-card h3 {
  font-family: var(--pd-font-heading); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px; color: var(--pd-text);
}
.pd-solution-card > p {
  color: var(--pd-text-light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px;
}

.pd-solution-card ul {
  list-style: none; padding: 0; margin: 0 0 18px;
}
.pd-solution-card ul li {
  position: relative; padding-left: 18px; font-size: 0.84rem; color: var(--pd-text-light);
  line-height: 1.5; margin-bottom: 6px;
}
.pd-solution-card ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--pd-accent);
}
.pd-solution-card ul li span {
  color: var(--pd-text-muted); font-size: 0.78rem;
}

.pd-solution-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 700; color: var(--pd-accent);
  background: rgba(150,125,108,0.08); padding: 5px 12px;
  border-radius: var(--pd-radius-pill); letter-spacing: 0.3px;
}
.pd-solution-tag i { font-size: 0.7rem; }
[data-theme="dark"] .pd-solution-tag { background: rgba(176,160,144,0.1); }

/* ============================================
   REVIEWS
   ============================================ */
.pd-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pd-review-card {
  background: var(--pd-white); border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius); padding: 28px;
  transition: all var(--pd-transition);
}
.pd-review-card:hover { box-shadow: var(--pd-shadow-hover); border-color: var(--pd-accent); }
.pd-review-stars { color: var(--pd-accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.pd-review-text { color: var(--pd-text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.pd-review-author { display: flex; align-items: center; gap: 12px; }
.pd-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pd-bg-warm); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; border: 2px solid var(--pd-border);
}
.pd-review-name { font-weight: 700; font-size: 0.92rem; }
.pd-review-pet { color: var(--pd-text-muted); font-size: 0.8rem; }

/* ============================================
   CONTACT
   ============================================ */
.pd-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pd-form-group { margin-bottom: 18px; }
.pd-form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.pd-form-group input, .pd-form-group select, .pd-form-group textarea {
  width: 100%; padding: 13px 16px; background: var(--pd-white);
  border: 1px solid var(--pd-border); border-radius: var(--pd-radius-sm);
  color: var(--pd-text); font-size: 0.95rem; font-family: var(--pd-font-body);
  transition: border-color var(--pd-transition), box-shadow var(--pd-transition); outline: none;
}
.pd-form-group input:focus, .pd-form-group select:focus, .pd-form-group textarea:focus {
  border-color: var(--pd-accent); box-shadow: 0 0 0 3px rgba(150,125,108,0.1);
}
.pd-form-group textarea { resize: vertical; min-height: 120px; }
.pd-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.pd-form-group .pd-error { color: #c0392b; font-size: 0.8rem; margin-top: 4px; display: none; }
.pd-form-group.has-error input, .pd-form-group.has-error select, .pd-form-group.has-error textarea { border-color: #c0392b; }
.pd-form-group.has-error .pd-error { display: block; }

.pd-contact-info {
  background: var(--pd-bg-warm); border-radius: var(--pd-radius-lg);
  padding: 36px; border: 1px solid var(--pd-border);
}
.pd-contact-info h3 { font-family: var(--pd-font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.pd-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.pd-contact-item i {
  color: var(--pd-accent); font-size: 1rem; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pd-white); border-radius: 50%; flex-shrink: 0; margin-top: 2px;
}
.pd-contact-item strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.pd-contact-item span { color: var(--pd-text-light); font-size: 0.88rem; }

.pd-social-links { display: flex; gap: 10px; margin-top: 28px; }
.pd-social-links a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pd-white); border: 1px solid var(--pd-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--pd-text-muted); font-size: 1.1rem; transition: all var(--pd-transition);
}
.pd-social-links a:hover { border-color: var(--pd-accent); color: var(--pd-accent); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.pd-footer { background: var(--pd-footer-bg); padding: 60px 0 0; }
.pd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.pd-footer-brand p { color: var(--pd-text-light); font-size: 0.88rem; line-height: 1.7; margin-top: 16px; }
.pd-footer-col h4 { font-family: var(--pd-font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.pd-footer-col ul { list-style: none; }
.pd-footer-col ul li { margin-bottom: 10px; }
.pd-footer-col ul li a { color: var(--pd-text-light); font-size: 0.85rem; }
.pd-footer-col ul li a:hover { color: var(--pd-accent); }
.pd-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.pd-footer-bottom p { color: var(--pd-text-muted); font-size: 0.8rem; }
.pd-footer-links { display: flex; gap: 16px; }
.pd-footer-links a { color: var(--pd-text-muted); font-size: 0.8rem; font-weight: 600; }
.pd-footer-links a:hover { color: var(--pd-accent); }

.pd-footer-business {
  border-top: 1px solid rgba(0,0,0,0.08); padding: 24px 0 0;
  margin-bottom: 0;
}
.pd-footer-business p { color: var(--pd-text-muted); font-size: 0.78rem; line-height: 1.9; }
[data-theme="dark"] .pd-footer-business { border-top-color: rgba(255,255,255,0.06); }

.pd-footer-social { display: flex; gap: 10px; margin-top: 14px; }
.pd-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--pd-border); display: flex; align-items: center; justify-content: center;
  color: var(--pd-text-muted); font-size: 1rem; transition: all var(--pd-transition);
}
.pd-footer-social a:hover { border-color: var(--pd-accent); color: var(--pd-accent); transform: translateY(-2px); }

/* ============================================
   VIDEO / IMAGE BACKGROUND SECTIONS
   ============================================ */
.pd-video-bg {
  position: relative;
  background: #0a0a0a !important;
  overflow: hidden;
}
.pd-video-bg > .pd-container {
  position: relative;
  z-index: 2;
}

/* Media layer */
.pd-bg-media {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0; overflow: hidden;
}
.pd-bg-media video,
.pd-bg-media > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pd-bg-media::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Light text overrides for video bg */
.pd-video-bg,
.pd-video-bg h1, .pd-video-bg h2, .pd-video-bg h3, .pd-video-bg h4,
.pd-video-bg .pd-section-title h2,
.pd-video-bg .pd-brand-text h2,
.pd-video-bg .pd-value-item h4 { color: #fff; }

.pd-video-bg p,
.pd-video-bg .pd-section-title p,
.pd-video-bg .pd-hero-sub,
.pd-video-bg .pd-brand-text > p { color: rgba(255,255,255,0.85); }

.pd-video-bg .pd-hero-sub strong,
.pd-video-bg .pd-brand-text h2 span,
.pd-video-bg h1 em { color: var(--pd-accent-light); }
.pd-video-bg h1 em { background: none; }

.pd-video-bg .pd-hero-stat-label,
.pd-video-bg .pd-stat-label,
.pd-video-bg .pd-value-item p { color: rgba(255,255,255,0.6); }

.pd-video-bg .pd-hero-stats,
.pd-video-bg .pd-stats { border-top-color: rgba(255,255,255,0.15); }

.pd-video-bg .pd-gold-line { background: var(--pd-accent-light); }

/* Hero tags on dark bg */
.pd-video-bg .pd-hero-tags span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.pd-video-bg .pd-hero-tags span i { color: var(--pd-accent-light); }
.pd-video-bg .pd-hero-tags span:hover {
  background: var(--pd-accent); color: #fff; border-color: var(--pd-accent);
}
.pd-video-bg .pd-hero-tags span:hover i { color: #fff; }

/* Buttons on dark bg */
.pd-video-bg .pd-btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.3);
}
.pd-video-bg .pd-btn-outline:hover {
  border-color: var(--pd-accent); color: var(--pd-accent);
}

/* Brand story values on dark bg */
.pd-video-bg .pd-value-item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.pd-video-bg .pd-value-item:hover { border-color: var(--pd-accent); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.pd-video-bg .pd-value-icon { background: rgba(255,255,255,0.1); }
.pd-video-bg .pd-brand-logo-wrap img {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Remove decorative circles on video bg hero */
.pd-hero.pd-video-bg::before,
.pd-hero.pd-video-bg::after { display: none; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.pd-scroll-top {
  position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
  background: var(--pd-text); color: var(--pd-white); border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--pd-transition); z-index: 900; box-shadow: var(--pd-shadow);
}
.pd-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.pd-scroll-top:hover { background: var(--pd-accent); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pd-container { padding: 0 50px; }
  .pd-products-grid, .pd-services-grid, .pd-services-grid-2, .pd-services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pd-restaurant-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-cat-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .pd-quick-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pd-footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-hero-inner { gap: 40px; }
  .pd-hero-logo { width: 280px; height: 280px; }
  .pd-hero h1 { font-size: 2.8rem; }
  .pd-section-title h2 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .pd-container { padding: 0 24px; }
  .pd-section { padding: 80px 0; }
  .pd-section-title h2 { font-size: 2rem; }
  .pd-nav { display: none; }
  .pd-nav .pd-theme-toggle { display: none; }
  .pd-hamburger { display: flex; }
  .pd-hero { min-height: auto; padding: 120px 0 80px; }
  .pd-hero-inner { flex-direction: column; text-align: center; }
  .pd-hero h1 { font-size: 2.2rem; }
  .pd-hero h1 br, .pd-hero-sub br { display: none; }
  .pd-hero-logo { width: 220px; height: 220px; }
  .pd-hero-buttons { justify-content: center; }
  .pd-hero-stats { justify-content: center; }
  .pd-quick-services { margin-top: -30px; }
  .pd-quick-grid, .pd-quick-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pd-cat-grid, .pd-cat-grid-4, .pd-cat-grid-5, .pd-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-restaurant-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-solutions-grid { grid-template-columns: 1fr; }
  .pd-brand-grid { grid-template-columns: 1fr; text-align: center; }
  .pd-brand-logo-wrap img { width: 220px; height: 220px; }
  .pd-contact-grid { grid-template-columns: 1fr; }
  .pd-footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-footer-bottom { flex-direction: column; text-align: center; }
  .pd-guide-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .pd-guide-card-icon { order: -1; font-size: 3.5rem; }
}

@media (max-width: 480px) {
  .pd-container { padding: 0 16px; }
  .pd-section { padding: 56px 0; }
  .pd-section-title h2 { font-size: 1.6rem; }
  .pd-hero h1 { font-size: 1.6rem; }
  .pd-hero-sub { font-size: 0.92rem; }
  .pd-hero-logo { width: 180px; height: 180px; }
  .pd-hero-buttons { flex-direction: column; align-items: center; }
  .pd-btn { width: 100%; justify-content: center; }
  .pd-hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .pd-cat-grid, .pd-cat-grid-4, .pd-cat-grid-5, .pd-products-grid, .pd-services-grid, .pd-services-grid-2, .pd-services-grid-3, .pd-reviews-grid, .pd-restaurant-grid, .pd-solutions-grid { grid-template-columns: 1fr; }
  .pd-quick-grid, .pd-quick-grid-4 { grid-template-columns: 1fr; }
  .pd-values { grid-template-columns: 1fr; }
  .pd-stats { grid-template-columns: 1fr; gap: 24px; }
  .pd-footer-grid { grid-template-columns: 1fr; }
  .pd-scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 360px) {
  .pd-hero h1 { font-size: 1.5rem; }
  .pd-logo-text { font-size: 1.2rem; }
}
