/* ============================================
   PET GROOMING HQ - MAIN STYLESHEET
   pgh-main.css
   ============================================ */

:root {
  --pgh-primary: #1F6F78;
  --pgh-secondary: #4CB8A9;
  --pgh-accent: #F4B860;
  --pgh-dark: #203239;
  --pgh-light: #F8FBFB;
  --pgh-white: #ffffff;
  --pgh-gray-100: #f4f6f7;
  --pgh-gray-200: #e8ecee;
  --pgh-gray-300: #d1d9dc;
  --pgh-gray-500: #7a9099;
  --pgh-gray-700: #455a64;
  --pgh-text: #2c3e45;
  --pgh-text-light: #5a7280;
  --pgh-shadow-sm: 0 2px 8px rgba(31,111,120,0.08);
  --pgh-shadow: 0 4px 20px rgba(31,111,120,0.12);
  --pgh-shadow-lg: 0 8px 40px rgba(31,111,120,0.18);
  --pgh-radius: 12px;
  --pgh-radius-lg: 20px;
  --pgh-transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --pgh-font-heading: 'Playfair Display', Georgia, serif;
  --pgh-font-body: 'Inter', system-ui, sans-serif;
  --pgh-font-accent: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--pgh-font-heading);
  color: var(--pgh-dark);
  line-height: 1.25;
  font-weight: 700;
}

a { color: var(--pgh-primary); text-decoration: none; transition: var(--pgh-transition); }
a:hover { color: var(--pgh-secondary); }

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

p { margin-bottom: 1rem; color: var(--pgh-text-light); }

/* ============ TYPOGRAPHY ============ */
.pgh-display-1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; }
.pgh-display-2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.15; }
.pgh-heading-lg { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.pgh-heading-md { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.pgh-heading-sm { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.pgh-lead { font-size: 1.175rem; line-height: 1.8; color: var(--pgh-text-light); }
.pgh-label {
  font-family: var(--pgh-font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pgh-secondary);
}

/* ============ BUTTONS ============ */
.pgh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--pgh-font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--pgh-transition);
  text-decoration: none;
  line-height: 1;
}

.pgh-btn-primary {
  background: var(--pgh-primary);
  color: var(--pgh-white);
  border-color: var(--pgh-primary);
}
.pgh-btn-primary:hover {
  background: var(--pgh-dark);
  border-color: var(--pgh-dark);
  color: var(--pgh-white);
  transform: translateY(-2px);
  box-shadow: var(--pgh-shadow);
}

.pgh-btn-secondary {
  background: transparent;
  color: var(--pgh-primary);
  border-color: var(--pgh-primary);
}
.pgh-btn-secondary:hover {
  background: var(--pgh-primary);
  color: var(--pgh-white);
  transform: translateY(-2px);
}

.pgh-btn-accent {
  background: var(--pgh-accent);
  color: var(--pgh-dark);
  border-color: var(--pgh-accent);
}
.pgh-btn-accent:hover {
  background: #e5a84e;
  border-color: #e5a84e;
  color: var(--pgh-dark);
  transform: translateY(-2px);
  box-shadow: var(--pgh-shadow);
}

.pgh-btn-white {
  background: var(--pgh-white);
  color: var(--pgh-primary);
  border-color: var(--pgh-white);
}
.pgh-btn-white:hover {
  background: transparent;
  color: var(--pgh-white);
  transform: translateY(-2px);
}

.pgh-btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.pgh-btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ============ NAVBAR ============ */
.pgh-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--pgh-transition);
  background: transparent;
}

.pgh-navbar.pgh-navbar-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--pgh-shadow-sm);
  padding: 0.6rem 0;
}

.pgh-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.pgh-navbar-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--pgh-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pgh-navbar-logo-text {
  font-family: var(--pgh-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pgh-dark);
  line-height: 1;
}

.pgh-navbar-logo-text span {
  color: var(--pgh-primary);
}

.pgh-navbar.pgh-navbar-transparent .pgh-navbar-logo-text,
.pgh-navbar.pgh-navbar-transparent .pgh-nav-link {
  color: var(--pgh-white);
}

.pgh-navbar.pgh-navbar-transparent .pgh-navbar-logo-text span {
  color: var(--pgh-accent);
}

.pgh-nav-link {
  font-family: var(--pgh-font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pgh-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: var(--pgh-transition);
  position: relative;
}

.pgh-nav-link:hover,
.pgh-nav-link.active {
  color: var(--pgh-primary);
  background: rgba(31,111,120,0.06);
}

.pgh-navbar-transparent .pgh-nav-link:hover {
  color: var(--pgh-accent);
  background: rgba(255,255,255,0.1);
}

.pgh-navbar-cta {
  background: var(--pgh-accent);
  color: var(--pgh-dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
}
.pgh-navbar-cta:hover {
  background: #e5a84e;
  transform: translateY(-1px);
}

/* Mobile menu */
.pgh-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--pgh-dark);
  cursor: pointer;
}

.pgh-navbar-transparent .pgh-mobile-menu-btn { color: white; }

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

.pgh-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,50,57,0.85) 0%, rgba(31,111,120,0.75) 100%);
  z-index: 1;
}

.pgh-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pgh-hero-content {
  position: relative;
  z-index: 2;
}

.pgh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,184,96,0.2);
  border: 1px solid rgba(244,184,96,0.4);
  color: var(--pgh-accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--pgh-font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.pgh-hero-title {
  color: var(--pgh-white);
  margin-bottom: 1.5rem;
}

.pgh-hero-title em {
  font-style: italic;
  color: var(--pgh-accent);
}

.pgh-hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.175rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.pgh-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.pgh-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.pgh-hero-stat-num {
  font-family: var(--pgh-font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--pgh-white);
  line-height: 1;
}

.pgh-hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* Hero collage */
.pgh-hero-collage {
  position: relative;
  height: 500px;
}

.pgh-hero-img-main {
  width: 70%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--pgh-radius-lg);
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: var(--pgh-shadow-lg);
}

.pgh-hero-img-accent1 {
  width: 45%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--pgh-radius);
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: var(--pgh-shadow);
  border: 4px solid var(--pgh-white);
}

.pgh-hero-img-accent2 {
  width: 38%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--pgh-radius);
  position: absolute;
  bottom: 60px;
  right: 5%;
  box-shadow: var(--pgh-shadow);
  border: 4px solid var(--pgh-white);
}

.pgh-hero-float-badge {
  position: absolute;
  top: 20px;
  left: -10px;
  background: var(--pgh-white);
  border-radius: var(--pgh-radius);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--pgh-shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.pgh-hero-float-badge .pgh-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(76,184,169,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pgh-primary);
  font-size: 1.2rem;
}

/* ============ SECTIONS ============ */
.pgh-section { padding: 100px 0; }
.pgh-section-sm { padding: 60px 0; }
.pgh-section-lg { padding: 140px 0; }

.pgh-section-header { margin-bottom: 4rem; }
.pgh-section-header.text-center { text-align: center; }

.pgh-section-title { margin-bottom: 1rem; }
.pgh-section-desc { max-width: 600px; font-size: 1.05rem; }
.pgh-section-header.text-center .pgh-section-desc { margin: 0 auto; }

/* ============ CARDS ============ */
.pgh-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  overflow: hidden;
  box-shadow: var(--pgh-shadow-sm);
  transition: var(--pgh-transition);
}

.pgh-card:hover {
  box-shadow: var(--pgh-shadow-lg);
  transform: translateY(-4px);
}

.pgh-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.pgh-card-body { padding: 1.75rem; }

.pgh-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: rgba(31,111,120,0.1);
  color: var(--pgh-primary);
  transition: var(--pgh-transition);
}

.pgh-card:hover .pgh-card-icon {
  background: var(--pgh-primary);
  color: var(--pgh-white);
}

/* ============ SERVICE CARDS ============ */
.pgh-service-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  overflow: hidden;
  box-shadow: var(--pgh-shadow-sm);
  transition: var(--pgh-transition);
  border: 1px solid var(--pgh-gray-200);
  height: 100%;
}

.pgh-service-card:hover {
  box-shadow: var(--pgh-shadow-lg);
  transform: translateY(-6px);
  border-color: var(--pgh-secondary);
}

.pgh-service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pgh-service-card-body { padding: 1.75rem; }

.pgh-service-card-tag {
  display: inline-block;
  background: rgba(76,184,169,0.12);
  color: var(--pgh-primary);
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--pgh-font-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pgh-service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

/* ============ TEAM CARDS ============ */
.pgh-team-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  overflow: hidden;
  box-shadow: var(--pgh-shadow-sm);
  transition: var(--pgh-transition);
  text-align: center;
}

.pgh-team-card:hover { box-shadow: var(--pgh-shadow-lg); transform: translateY(-6px); }

.pgh-team-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.pgh-team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pgh-team-card:hover .pgh-team-card-img { transform: scale(1.05); }

.pgh-team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,111,120,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--pgh-transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.pgh-team-card:hover .pgh-team-card-overlay { opacity: 1; }

.pgh-team-card-body { padding: 1.5rem; }
.pgh-team-card-name { font-size: 1.2rem; margin-bottom: 0.25rem; }
.pgh-team-card-role {
  font-family: var(--pgh-font-accent);
  font-size: 0.8rem;
  color: var(--pgh-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* ============ REVIEW CARDS ============ */
.pgh-review-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  padding: 2rem;
  box-shadow: var(--pgh-shadow-sm);
  border: 1px solid var(--pgh-gray-200);
  transition: var(--pgh-transition);
}

.pgh-review-card:hover { box-shadow: var(--pgh-shadow); }

.pgh-review-stars { color: var(--pgh-accent); margin-bottom: 1rem; font-size: 1.1rem; }

.pgh-review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--pgh-text);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pgh-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--pgh-gray-200);
  padding-top: 1.25rem;
}

.pgh-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pgh-gray-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pgh-font-accent);
  font-weight: 700;
  color: var(--pgh-primary);
  font-size: 1rem;
}

.pgh-review-name { font-weight: 600; font-size: 0.95rem; color: var(--pgh-dark); }
.pgh-review-meta { font-size: 0.8rem; color: var(--pgh-gray-500); }

/* ============ FAQ ============ */
.pgh-faq-item {
  border: 1px solid var(--pgh-gray-200);
  border-radius: var(--pgh-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--pgh-transition);
}

.pgh-faq-item.pgh-faq-open { border-color: var(--pgh-secondary); box-shadow: var(--pgh-shadow-sm); }

.pgh-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--pgh-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pgh-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--pgh-transition);
}

.pgh-faq-question:hover { color: var(--pgh-primary); }
.pgh-faq-open .pgh-faq-question { color: var(--pgh-primary); background: rgba(31,111,120,0.04); }

.pgh-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pgh-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--pgh-transition);
  color: var(--pgh-primary);
  font-size: 0.75rem;
}

.pgh-faq-open .pgh-faq-icon {
  background: var(--pgh-primary);
  color: var(--pgh-white);
  transform: rotate(180deg);
}

.pgh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.pgh-faq-open .pgh-faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.pgh-faq-answer p { margin-bottom: 0; font-size: 0.95rem; }

/* ============ STATS ============ */
.pgh-stats-section {
  background: var(--pgh-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pgh-stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(76,184,169,0.08);
  pointer-events: none;
}

.pgh-stat-item { text-align: center; }

.pgh-stat-number {
  font-family: var(--pgh-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pgh-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pgh-stat-label {
  font-family: var(--pgh-font-accent);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pgh-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto;
}

/* ============ PROCESS TIMELINE ============ */
.pgh-process-timeline { position: relative; }

.pgh-process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--pgh-secondary), transparent);
  transform: translateX(-50%);
}

.pgh-process-step {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.pgh-process-step:nth-child(even) { flex-direction: row-reverse; }

.pgh-process-step-content {
  flex: 1;
  background: var(--pgh-white);
  border-radius: var(--pgh-radius);
  padding: 1.75rem;
  box-shadow: var(--pgh-shadow-sm);
  border: 1px solid var(--pgh-gray-200);
}

.pgh-process-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pgh-primary);
  color: var(--pgh-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pgh-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(31,111,120,0.15);
  margin-top: 0.5rem;
}

/* ============ QUIZ & CALCULATOR ============ */
.pgh-quiz-container,
.pgh-calculator-tool {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  box-shadow: var(--pgh-shadow);
  overflow: hidden;
}

.pgh-quiz-header,
.pgh-calc-header {
  background: linear-gradient(135deg, var(--pgh-primary), var(--pgh-secondary));
  padding: 2rem;
  color: var(--pgh-white);
}

.pgh-quiz-header h3,
.pgh-calc-header h3 {
  color: var(--pgh-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pgh-quiz-header p,
.pgh-calc-header p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.pgh-quiz-body,
.pgh-calc-body { padding: 2rem; }

.pgh-quiz-progress { margin-bottom: 1.5rem; }
.pgh-quiz-progress-bar {
  height: 6px;
  background: var(--pgh-gray-200);
  border-radius: 50px;
  overflow: hidden;
}
.pgh-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pgh-primary), var(--pgh-secondary));
  border-radius: 50px;
  transition: width 0.4s ease;
}

.pgh-quiz-question-text {
  font-family: var(--pgh-font-heading);
  font-size: 1.2rem;
  color: var(--pgh-dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.pgh-quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }

.pgh-quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--pgh-gray-200);
  border-radius: var(--pgh-radius);
  cursor: pointer;
  transition: var(--pgh-transition);
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--pgh-white);
}

.pgh-quiz-option:hover {
  border-color: var(--pgh-secondary);
  background: rgba(76,184,169,0.05);
}

.pgh-quiz-option.pgh-quiz-selected {
  border-color: var(--pgh-primary);
  background: rgba(31,111,120,0.07);
  color: var(--pgh-primary);
}

.pgh-quiz-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--pgh-gray-300);
  flex-shrink: 0;
  transition: var(--pgh-transition);
}

.pgh-quiz-selected .pgh-quiz-option-radio {
  border-color: var(--pgh-primary);
  background: var(--pgh-primary);
  box-shadow: inset 0 0 0 4px white;
}

.pgh-quiz-result {
  text-align: center;
  padding: 2rem;
}

.pgh-quiz-result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pgh-calc-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pgh-dark);
  margin-bottom: 0.5rem;
}

.pgh-calc-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--pgh-gray-200);
  border-radius: var(--pgh-radius);
  font-family: var(--pgh-font-body);
  font-size: 0.95rem;
  color: var(--pgh-dark);
  background: var(--pgh-white);
  cursor: pointer;
  transition: var(--pgh-transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F6F78' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.pgh-calc-select:focus { border-color: var(--pgh-primary); outline: none; box-shadow: 0 0 0 3px rgba(31,111,120,0.12); }

.pgh-calc-result {
  background: linear-gradient(135deg, rgba(31,111,120,0.06), rgba(76,184,169,0.06));
  border: 1px solid var(--pgh-secondary);
  border-radius: var(--pgh-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.pgh-calc-result h4 {
  color: var(--pgh-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ============ SERVICE FINDER ============ */
.pgh-service-finder {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  box-shadow: var(--pgh-shadow);
  overflow: hidden;
}

.pgh-finder-header {
  background: linear-gradient(135deg, var(--pgh-dark), var(--pgh-primary));
  padding: 2rem;
  color: var(--pgh-white);
}

.pgh-finder-body { padding: 2rem; }

.pgh-finder-step { margin-bottom: 1.5rem; }

.pgh-finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.pgh-finder-chip {
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--pgh-gray-200);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--pgh-transition);
  background: var(--pgh-white);
  color: var(--pgh-text);
}

.pgh-finder-chip:hover,
.pgh-finder-chip.pgh-chip-active {
  border-color: var(--pgh-primary);
  background: var(--pgh-primary);
  color: var(--pgh-white);
}

.pgh-finder-result {
  background: rgba(76,184,169,0.08);
  border: 1px solid var(--pgh-secondary);
  border-radius: var(--pgh-radius);
  padding: 1.5rem;
  margin-top: 1rem;
}

/* ============ CHECKLIST ============ */
.pgh-checklist-generator {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  box-shadow: var(--pgh-shadow);
  overflow: hidden;
}

.pgh-checklist-header {
  background: linear-gradient(135deg, var(--pgh-accent) 0%, #e5a84e 100%);
  padding: 2rem;
  color: var(--pgh-dark);
}

.pgh-checklist-body { padding: 2rem; }

.pgh-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--pgh-gray-100);
}

.pgh-checklist-item:last-child { border-bottom: none; }

.pgh-checklist-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--pgh-gray-300);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--pgh-transition);
  margin-top: 2px;
}

.pgh-checklist-checkbox.pgh-checked {
  background: var(--pgh-primary);
  border-color: var(--pgh-primary);
  color: white;
}

.pgh-checklist-item-text { font-size: 0.95rem; line-height: 1.5; }
.pgh-checklist-item-text strong { color: var(--pgh-dark); }

/* ============ GALLERY ============ */
.pgh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
}

.pgh-gallery-item {
  overflow: hidden;
  border-radius: var(--pgh-radius);
  cursor: pointer;
  position: relative;
}

.pgh-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pgh-gallery-item:nth-child(5) { grid-column: span 2; }

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

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

.pgh-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,111,120,0.5);
  opacity: 0;
  transition: var(--pgh-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

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

/* ============ IMAGE COMPARISON ============ */
.pgh-comparison-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--pgh-radius-lg);
  cursor: col-resize;
  height: 360px;
  box-shadow: var(--pgh-shadow);
}

.pgh-comparison-before,
.pgh-comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pgh-comparison-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.02s;
}

.pgh-comparison-before img,
.pgh-comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pgh-comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--pgh-white);
  z-index: 2;
}

.pgh-comparison-handle::before {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  background: var(--pgh-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pgh-shadow);
  color: var(--pgh-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.pgh-comparison-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
}

.pgh-comparison-label-before { left: 1rem; }
.pgh-comparison-label-after { right: 1rem; }

/* ============ LOCAL MAP ============ */
.pgh-map-section { background: var(--pgh-gray-100); }

.pgh-map-embed {
  width: 100%;
  height: 420px;
  border-radius: var(--pgh-radius-lg);
  overflow: hidden;
  box-shadow: var(--pgh-shadow);
  border: none;
}

.pgh-map-info-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  padding: 2rem;
  box-shadow: var(--pgh-shadow-sm);
  height: 100%;
}

.pgh-map-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--pgh-gray-100);
}

.pgh-map-info-row:last-child { border-bottom: none; }

.pgh-map-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(31,111,120,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pgh-primary);
  flex-shrink: 0;
}

/* ============ ARTICLE CARDS ============ */
.pgh-article-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  overflow: hidden;
  box-shadow: var(--pgh-shadow-sm);
  border: 1px solid var(--pgh-gray-200);
  transition: var(--pgh-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pgh-article-card:hover {
  box-shadow: var(--pgh-shadow-lg);
  transform: translateY(-4px);
}

.pgh-article-card-img-wrap { position: relative; overflow: hidden; height: 220px; }

.pgh-article-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pgh-article-card:hover .pgh-article-card-img { transform: scale(1.06); }

.pgh-article-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pgh-primary);
  color: white;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--pgh-font-accent);
}

.pgh-article-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pgh-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--pgh-gray-500);
}

.pgh-article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  flex: 1;
}

.pgh-article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pgh-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--pgh-gray-100);
}

.pgh-article-read-link:hover { gap: 0.75rem; color: var(--pgh-secondary); }

/* ============ CONTACT FORM ============ */
.pgh-form-group { margin-bottom: 1.5rem; }

.pgh-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pgh-dark);
  margin-bottom: 0.5rem;
}

.pgh-form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--pgh-gray-200);
  border-radius: var(--pgh-radius);
  font-family: var(--pgh-font-body);
  font-size: 0.95rem;
  color: var(--pgh-dark);
  background: var(--pgh-white);
  transition: var(--pgh-transition);
}

.pgh-form-control:focus {
  outline: none;
  border-color: var(--pgh-primary);
  box-shadow: 0 0 0 3px rgba(31,111,120,0.1);
}

.pgh-form-control.pgh-error { border-color: #e53e3e; }
.pgh-form-error { color: #e53e3e; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.pgh-form-error.pgh-visible { display: block; }

textarea.pgh-form-control { resize: vertical; min-height: 140px; }

/* ============ FOOTER ============ */
.pgh-footer {
  background: var(--pgh-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.pgh-footer-brand { margin-bottom: 1.5rem; }

.pgh-footer-logo-text {
  font-family: var(--pgh-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pgh-white);
}

.pgh-footer-logo-text span { color: var(--pgh-accent); }

.pgh-footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }

.pgh-footer-heading {
  font-family: var(--pgh-font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pgh-white);
  margin-bottom: 1.25rem;
}

.pgh-footer-links { list-style: none; }
.pgh-footer-links li { margin-bottom: 0.6rem; }
.pgh-footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--pgh-transition);
}
.pgh-footer-links a:hover { color: var(--pgh-accent); padding-left: 4px; }

.pgh-footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.pgh-footer-contact-item i {
  color: var(--pgh-secondary);
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pgh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.pgh-footer-bottom-text { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.pgh-footer-bottom-links { display: flex; gap: 1.5rem; }
.pgh-footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.pgh-footer-bottom-links a:hover { color: var(--pgh-accent); }

.pgh-social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.pgh-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--pgh-transition);
  font-size: 0.9rem;
}
.pgh-social-link:hover {
  background: var(--pgh-primary);
  border-color: var(--pgh-primary);
  color: white;
  transform: translateY(-2px);
}

/* ============ PAGE HEADER ============ */
.pgh-page-header {
  background: linear-gradient(135deg, var(--pgh-dark) 0%, var(--pgh-primary) 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.pgh-page-header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--pgh-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.pgh-page-header h1 { color: var(--pgh-white); margin-bottom: 1rem; }
.pgh-page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; }

.pgh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.pgh-breadcrumb a { color: rgba(255,255,255,0.55); }
.pgh-breadcrumb a:hover { color: var(--pgh-accent); }
.pgh-breadcrumb span { color: var(--pgh-accent); }

/* ============ HIGHLIGHT BOXES ============ */
.pgh-highlight {
  background: rgba(76,184,169,0.08);
  border-left: 4px solid var(--pgh-secondary);
  border-radius: 0 var(--pgh-radius) var(--pgh-radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.pgh-tip-box {
  background: rgba(244,184,96,0.1);
  border-left: 4px solid var(--pgh-accent);
  border-radius: 0 var(--pgh-radius) var(--pgh-radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

/* ============ TRUST BADGES ============ */
.pgh-trust-section { background: var(--pgh-gray-100); }

.pgh-trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pgh-trust-icon {
  font-size: 2.5rem;
  color: var(--pgh-primary);
  margin-bottom: 1rem;
  display: block;
}

/* ============ WAVE DIVIDERS ============ */
.pgh-wave-top,
.pgh-wave-bottom {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.pgh-wave-top svg,
.pgh-wave-bottom svg {
  display: block;
  width: 100%;
}

/* ============ COOKIE BANNER ============ */
.pgh-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--pgh-dark);
  border-radius: var(--pgh-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--pgh-shadow-lg);
  z-index: 9999;
  display: none;
  animation: pgh-slideUp 0.4s ease;
}

.pgh-cookie-banner.pgh-cookie-visible { display: block; }

@keyframes pgh-slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pgh-cookie-banner h6 {
  color: white;
  font-family: var(--pgh-font-accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pgh-cookie-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.pgh-cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============ BACK TO TOP ============ */
.pgh-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--pgh-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--pgh-shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--pgh-transition);
  z-index: 500;
  font-size: 1rem;
  border: none;
}

.pgh-back-to-top.pgh-visible { opacity: 1; pointer-events: auto; }
.pgh-back-to-top:hover { background: var(--pgh-dark); transform: translateY(-2px); }

/* ============ PHILOSOPHY SECTION ============ */
.pgh-philosophy-section {
  background: linear-gradient(135deg, var(--pgh-dark) 0%, #1a3a44 100%);
  position: relative;
  overflow: hidden;
}

.pgh-philosophy-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(76,184,169,0.08);
  pointer-events: none;
}

.pgh-philosophy-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(244,184,96,0.08);
  pointer-events: none;
}

.pgh-philosophy-section h2 { color: var(--pgh-white); }
.pgh-philosophy-section p { color: rgba(255,255,255,0.65); }
.pgh-philosophy-section .pgh-label { color: var(--pgh-accent); }

.pgh-value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--pgh-radius);
  transition: var(--pgh-transition);
}

.pgh-value-item:hover { background: rgba(255,255,255,0.04); }

.pgh-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(76,184,169,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pgh-secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pgh-value-item h5 { color: var(--pgh-white); font-size: 1rem; margin-bottom: 0.4rem; }
.pgh-value-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 0; }

/* ============ ARTICLE CONTENT ============ */
.pgh-article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--pgh-text);
}

.pgh-article-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--pgh-dark);
  padding-top: 1rem;
  border-top: 2px solid var(--pgh-gray-100);
}

.pgh-article-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--pgh-primary);
}

.pgh-article-content p { margin-bottom: 1.5rem; }
.pgh-article-content ul, .pgh-article-content ol { margin: 1.5rem 0; padding-left: 2rem; }
.pgh-article-content li { margin-bottom: 0.5rem; }

.pgh-article-feature-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--pgh-radius-lg);
  margin: 2rem 0;
}

/* ============ ABOUT PAGE ============ */
.pgh-timeline { position: relative; }

.pgh-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--pgh-primary), var(--pgh-secondary), var(--pgh-accent));
  border-radius: 2px;
}

.pgh-timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.pgh-timeline-dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--pgh-primary);
  border: 3px solid var(--pgh-white);
  box-shadow: 0 0 0 3px rgba(31,111,120,0.25);
}

.pgh-timeline-year {
  font-family: var(--pgh-font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pgh-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.pgh-timeline-item h5 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.pgh-timeline-item p { font-size: 0.9rem; margin-bottom: 0; }

/* ============ THANK YOU PAGE ============ */
.pgh-thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pgh-light), rgba(76,184,169,0.08));
}

.pgh-thankyou-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgh-primary), var(--pgh-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: white;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 40px rgba(31,111,120,0.3);
}

/* ============ LEGAL PAGES ============ */
.pgh-legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--pgh-primary); }
.pgh-legal-content h3 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.pgh-legal-content p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.pgh-legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.pgh-legal-content li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.pgh-legal-effective { color: var(--pgh-gray-500); font-size: 0.85rem; margin-bottom: 2.5rem; }

/* ============ TIPS CARDS ============ */
.pgh-tip-card {
  background: var(--pgh-white);
  border-radius: var(--pgh-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--pgh-shadow-sm);
  border-top: 4px solid var(--pgh-secondary);
  transition: var(--pgh-transition);
  text-align: center;
}

.pgh-tip-card:hover { transform: translateY(-4px); box-shadow: var(--pgh-shadow); }

.pgh-tip-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.pgh-tip-card h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ============ UTILITIES ============ */
.pgh-text-primary { color: var(--pgh-primary) !important; }
.pgh-text-secondary { color: var(--pgh-secondary) !important; }
.pgh-text-accent { color: var(--pgh-accent) !important; }
.pgh-text-dark { color: var(--pgh-dark) !important; }
.pgh-text-light { color: var(--pgh-text-light) !important; }
.pgh-bg-primary { background: var(--pgh-primary) !important; }
.pgh-bg-secondary { background: var(--pgh-secondary) !important; }
.pgh-bg-light { background: var(--pgh-light) !important; }
.pgh-bg-dark { background: var(--pgh-dark) !important; }
.pgh-bg-accent { background: var(--pgh-accent) !important; }
.pgh-rounded { border-radius: var(--pgh-radius) !important; }
.pgh-rounded-lg { border-radius: var(--pgh-radius-lg) !important; }
.pgh-shadow { box-shadow: var(--pgh-shadow) !important; }
.pgh-shadow-lg { box-shadow: var(--pgh-shadow-lg) !important; }

/* ============ REVEAL ANIMATION INIT ============ */
.pgh-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pgh-reveal.pgh-revealed {
  opacity: 1;
  transform: translateY(0);
}

.pgh-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pgh-reveal-left.pgh-revealed {
  opacity: 1;
  transform: translateX(0);
}

.pgh-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pgh-reveal-right.pgh-revealed {
  opacity: 1;
  transform: translateX(0);
}

.pgh-delay-1 { transition-delay: 0.1s; }
.pgh-delay-2 { transition-delay: 0.2s; }
.pgh-delay-3 { transition-delay: 0.3s; }
.pgh-delay-4 { transition-delay: 0.4s; }
.pgh-delay-5 { transition-delay: 0.5s; }
