/* ================================================
   PetHealth Hub — Main Stylesheet
   Theme: Medical / Clinical Light Blue
   Prefix: phh-
   Font: Source Sans 3
   ================================================ */

/* ------------------------------------------------
   CSS Variables
   ------------------------------------------------ */
:root {
    --phh-primary: #2563EB;
    --phh-primary-dark: #1D4ED8;
    --phh-primary-light: #3B82F6;
    --phh-secondary: #0EA5E9;
    --phh-accent: #06B6D4;
    --phh-bg: #EFF6FF;
    --phh-bg-white: #FFFFFF;
    --phh-bg-alt: #F0F9FF;
    --phh-bg-card: #FFFFFF;
    --phh-text: #1E293B;
    --phh-text-light: #475569;
    --phh-text-muted: #94A3B8;
    --phh-border: #CBD5E1;
    --phh-border-light: #E2E8F0;
    --phh-success: #10B981;
    --phh-warning: #F59E0B;
    --phh-danger: #EF4444;
    --phh-star: #F59E0B;
    --phh-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --phh-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --phh-shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --phh-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --phh-radius-sm: 6px;
    --phh-radius: 10px;
    --phh-radius-lg: 16px;
    --phh-radius-xl: 24px;
    --phh-font: 'Source Sans 3', 'Segoe UI', sans-serif;
    --phh-transition: 0.25s ease;
    --phh-container: 1200px;
    --phh-header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--phh-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--phh-text);
    background-color: var(--phh-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--phh-primary);
    text-decoration: none;
    transition: color var(--phh-transition);
}

a:hover {
    color: var(--phh-primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--phh-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* ------------------------------------------------
   Container
   ------------------------------------------------ */
.phh-container {
    max-width: var(--phh-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ------------------------------------------------
   Header
   ------------------------------------------------ */
.phh-header {
    background: var(--phh-bg-white);
    border-bottom: 1px solid var(--phh-border-light);
    height: var(--phh-header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--phh-shadow-sm);
}

.phh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--phh-header-h);
}

.phh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--phh-primary);
    text-decoration: none;
    transition: opacity var(--phh-transition);
}

.phh-logo:hover {
    opacity: 0.85;
    color: var(--phh-primary);
}

.phh-logo iconify-icon {
    color: var(--phh-primary);
}

.phh-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phh-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--phh-text-light);
    border-radius: var(--phh-radius-sm);
    transition: all var(--phh-transition);
    text-decoration: none;
}

.phh-nav-link:hover {
    color: var(--phh-primary);
    background: var(--phh-bg);
}

.phh-nav-active {
    color: var(--phh-primary);
    background: var(--phh-bg);
    font-weight: 600;
}

.phh-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.phh-burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--phh-text);
    border-radius: 2px;
    transition: all var(--phh-transition);
}

.phh-burger.phh-burger-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.phh-burger.phh-burger-active span:nth-child(2) {
    opacity: 0;
}

.phh-burger.phh-burger-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ------------------------------------------------
   Breadcrumbs
   ------------------------------------------------ */
.phh-breadcrumbs {
    background: var(--phh-bg-white);
    border-bottom: 1px solid var(--phh-border-light);
    padding: 12px 0;
}

.phh-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--phh-text-muted);
    flex-wrap: wrap;
}

.phh-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phh-breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--phh-text-muted);
}

.phh-breadcrumb-list a {
    color: var(--phh-text-muted);
    text-decoration: none;
    transition: color var(--phh-transition);
}

.phh-breadcrumb-list a:hover {
    color: var(--phh-primary);
}

.phh-breadcrumb-list li:last-child span {
    color: var(--phh-text-light);
    font-weight: 500;
}

/* ------------------------------------------------
   Main
   ------------------------------------------------ */
.phh-main {
    flex: 1;
}

/* ------------------------------------------------
   Sections
   ------------------------------------------------ */
.phh-section {
    padding: 80px 0;
}

.phh-section-alt {
    background: var(--phh-bg-white);
}

.phh-section-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: 2rem;
    color: var(--phh-text);
}

.phh-section-subtitle {
    text-align: center;
    color: var(--phh-text-muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.phh-page-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--phh-text);
}

.phh-page-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--phh-text-muted);
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.phh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--phh-font);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--phh-radius);
    cursor: pointer;
    transition: all var(--phh-transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.phh-btn-primary {
    background: var(--phh-primary);
    color: #fff;
    border-color: var(--phh-primary);
}

.phh-btn-primary:hover {
    background: var(--phh-primary-dark);
    border-color: var(--phh-primary-dark);
    color: #fff;
    box-shadow: var(--phh-shadow-md);
    transform: translateY(-1px);
}

.phh-btn-outline {
    background: transparent;
    color: var(--phh-primary);
    border-color: var(--phh-primary);
}

.phh-btn-outline:hover {
    background: var(--phh-primary);
    color: #fff;
    transform: translateY(-1px);
}

.phh-btn-white {
    background: #fff;
    color: var(--phh-primary);
    border-color: #fff;
}

.phh-btn-white:hover {
    background: var(--phh-bg);
    border-color: var(--phh-bg);
    color: var(--phh-primary-dark);
    transform: translateY(-1px);
}

.phh-btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.phh-btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.phh-btn-block {
    display: flex;
    width: 100%;
}

.phh-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ------------------------------------------------
   Hero
   ------------------------------------------------ */
.phh-hero {
    background: linear-gradient(135deg, var(--phh-primary) 0%, var(--phh-secondary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.phh-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.phh-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.phh-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.phh-hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.phh-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    line-height: 1.6;
}

.phh-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ------------------------------------------------
   Advantage Cards
   ------------------------------------------------ */
.phh-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.phh-advantage-card {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--phh-shadow);
    transition: all var(--phh-transition);
    border: 1px solid var(--phh-border-light);
}

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

.phh-advantage-icon {
    width: 72px;
    height: 72px;
    background: var(--phh-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--phh-primary);
}

.phh-advantage-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--phh-text);
}

.phh-advantage-card p {
    font-size: 0.95rem;
    color: var(--phh-text-muted);
    margin-bottom: 0;
}

/* ------------------------------------------------
   Services Preview
   ------------------------------------------------ */
.phh-services-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.phh-service-preview-card {
    background: var(--phh-bg);
    border-radius: var(--phh-radius-lg);
    padding: 40px 36px;
    transition: all var(--phh-transition);
    border: 1px solid var(--phh-border-light);
}

.phh-service-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--phh-shadow-md);
    border-color: var(--phh-primary-light);
}

.phh-service-preview-icon {
    width: 80px;
    height: 80px;
    background: var(--phh-bg-white);
    border-radius: var(--phh-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--phh-primary);
    box-shadow: var(--phh-shadow-sm);
}

.phh-service-preview-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--phh-text);
}

.phh-service-preview-card p {
    color: var(--phh-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.phh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--phh-primary);
    transition: gap var(--phh-transition);
}

.phh-link-arrow:hover {
    gap: 10px;
    color: var(--phh-primary-dark);
}

/* ------------------------------------------------
   Reviews
   ------------------------------------------------ */
.phh-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.phh-review-card {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-lg);
    padding: 32px 28px;
    box-shadow: var(--phh-shadow);
    border: 1px solid var(--phh-border-light);
    transition: all var(--phh-transition);
}

.phh-review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--phh-shadow-md);
}

.phh-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--phh-star);
}

.phh-review-text {
    font-size: 0.95rem;
    color: var(--phh-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.phh-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--phh-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.phh-review-author iconify-icon {
    color: var(--phh-primary-light);
}

/* ------------------------------------------------
   CTA Section
   ------------------------------------------------ */
.phh-cta-section {
    padding: 60px 0;
}

.phh-cta-block {
    background: linear-gradient(135deg, var(--phh-primary) 0%, var(--phh-secondary) 100%);
    border-radius: var(--phh-radius-xl);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phh-cta-block::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.phh-cta-block h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.phh-cta-block p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.phh-cta-block .phh-btn {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------
   About Page
   ------------------------------------------------ */
.phh-about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.phh-about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--phh-text-light);
}

.phh-about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.phh-stat-item {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--phh-shadow);
    border: 1px solid var(--phh-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.phh-stat-item iconify-icon {
    color: var(--phh-primary);
}

.phh-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--phh-primary);
    line-height: 1;
}

.phh-stat-label {
    font-size: 0.9rem;
    color: var(--phh-text-muted);
}

/* ------------------------------------------------
   Team
   ------------------------------------------------ */
.phh-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.phh-team-card {
    background: var(--phh-bg);
    border-radius: var(--phh-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--phh-transition);
    border: 1px solid var(--phh-border-light);
}

.phh-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--phh-shadow-md);
}

.phh-team-avatar {
    margin-bottom: 20px;
    color: var(--phh-primary-light);
}

.phh-team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.phh-team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--phh-primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.phh-team-card p {
    font-size: 0.9rem;
    color: var(--phh-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ------------------------------------------------
   Values
   ------------------------------------------------ */
.phh-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 36px;
}

.phh-value-item {
    text-align: center;
    padding: 24px;
}

.phh-value-item iconify-icon {
    color: var(--phh-primary);
    margin-bottom: 14px;
}

.phh-value-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.phh-value-item p {
    font-size: 0.95rem;
    color: var(--phh-text-muted);
    margin-bottom: 0;
}

/* ------------------------------------------------
   Care & Training Features
   ------------------------------------------------ */
.phh-care-features,
.phh-training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.phh-care-feature {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-lg);
    padding: 28px;
    border: 1px solid var(--phh-border-light);
    box-shadow: var(--phh-shadow-sm);
    transition: all var(--phh-transition);
}

.phh-care-feature:hover {
    box-shadow: var(--phh-shadow);
    border-color: var(--phh-primary-light);
}

.phh-care-feature iconify-icon {
    color: var(--phh-primary);
    margin-bottom: 14px;
}

.phh-care-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.phh-care-feature p {
    font-size: 0.9rem;
    color: var(--phh-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ------------------------------------------------
   Pricing
   ------------------------------------------------ */
.phh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.phh-pricing-card {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-xl);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--phh-shadow);
    border: 2px solid var(--phh-border-light);
    transition: all var(--phh-transition);
    position: relative;
}

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

.phh-pricing-popular {
    border-color: var(--phh-primary);
    transform: scale(1.03);
    box-shadow: var(--phh-shadow-md);
}

.phh-pricing-popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.phh-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--phh-primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.phh-pricing-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--phh-border-light);
    margin-bottom: 24px;
}

.phh-pricing-header iconify-icon {
    color: var(--phh-primary);
    margin-bottom: 12px;
}

.phh-pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.phh-pricing-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--phh-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.phh-pricing-period {
    font-size: 0.9rem;
    color: var(--phh-text-muted);
}

.phh-pricing-features {
    text-align: left;
    margin-bottom: 28px;
}

.phh-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--phh-text-light);
    border-bottom: 1px solid var(--phh-border-light);
}

.phh-pricing-features li:last-child {
    border-bottom: none;
}

.phh-pricing-features li iconify-icon {
    color: var(--phh-success);
    flex-shrink: 0;
}

.phh-pricing-disabled {
    opacity: 0.45;
}

.phh-pricing-disabled iconify-icon {
    color: var(--phh-text-muted) !important;
}

/* ------------------------------------------------
   FAQ
   ------------------------------------------------ */
.phh-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.phh-faq-item {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius);
    margin-bottom: 12px;
    border: 1px solid var(--phh-border-light);
    overflow: hidden;
    transition: all var(--phh-transition);
}

.phh-faq-item:hover {
    border-color: var(--phh-primary-light);
}

.phh-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--phh-font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--phh-text);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color var(--phh-transition);
}

.phh-faq-question:hover {
    color: var(--phh-primary);
}

.phh-faq-arrow {
    transition: transform var(--phh-transition);
    flex-shrink: 0;
    color: var(--phh-text-muted);
}

.phh-faq-item.phh-faq-open .phh-faq-arrow {
    transform: rotate(180deg);
    color: var(--phh-primary);
}

.phh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.phh-faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--phh-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.phh-faq-item.phh-faq-open .phh-faq-answer {
    max-height: 300px;
}

/* ------------------------------------------------
   Contact Page
   ------------------------------------------------ */
.phh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.phh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phh-contact-card {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius);
    padding: 24px;
    border: 1px solid var(--phh-border-light);
    box-shadow: var(--phh-shadow-sm);
    transition: all var(--phh-transition);
}

.phh-contact-card:hover {
    box-shadow: var(--phh-shadow);
    border-color: var(--phh-primary-light);
}

.phh-contact-card iconify-icon {
    color: var(--phh-primary);
    margin-bottom: 10px;
}

.phh-contact-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.phh-contact-card p {
    font-size: 0.95rem;
    color: var(--phh-text-light);
    margin-bottom: 0;
}

.phh-contact-card a {
    color: var(--phh-primary);
}

/* ------------------------------------------------
   Form
   ------------------------------------------------ */
.phh-contact-form-wrap {
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-xl);
    padding: 40px;
    box-shadow: var(--phh-shadow);
    border: 1px solid var(--phh-border-light);
}

.phh-contact-form-wrap h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--phh-text);
}

.phh-form-group {
    margin-bottom: 20px;
}

.phh-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--phh-text);
    margin-bottom: 6px;
}

.phh-required {
    color: var(--phh-danger);
}

.phh-form-input,
.phh-form-select,
.phh-form-textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--phh-font);
    font-size: 0.95rem;
    color: var(--phh-text);
    background: var(--phh-bg);
    border: 1px solid var(--phh-border);
    border-radius: var(--phh-radius);
    transition: all var(--phh-transition);
    outline: none;
}

.phh-form-input:focus,
.phh-form-select:focus,
.phh-form-textarea:focus {
    border-color: var(--phh-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    background: var(--phh-bg-white);
}

.phh-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.phh-form-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='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.phh-form-consent {
    margin-top: 8px;
}

.phh-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--phh-text-light);
    cursor: pointer;
    line-height: 1.5;
}

.phh-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--phh-primary);
    cursor: pointer;
}

.phh-checkbox-label a {
    color: var(--phh-primary);
    text-decoration: underline;
}

/* ------------------------------------------------
   Legal Pages
   ------------------------------------------------ */
.phh-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--phh-bg-card);
    border-radius: var(--phh-radius-xl);
    padding: 48px;
    box-shadow: var(--phh-shadow);
    border: 1px solid var(--phh-border-light);
}

.phh-legal-date {
    font-size: 0.9rem;
    color: var(--phh-text-muted);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--phh-border-light);
}

.phh-legal-content h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--phh-text);
}

.phh-legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--phh-text-light);
}

.phh-legal-content ul,
.phh-legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.phh-legal-content ul {
    list-style: disc;
}

.phh-legal-content ol {
    list-style: decimal;
}

.phh-legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--phh-text-light);
    margin-bottom: 6px;
}

/* ------------------------------------------------
   Thank You Page
   ------------------------------------------------ */
.phh-thankyou-section {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.phh-thankyou-block {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.phh-thankyou-icon {
    color: var(--phh-success);
    margin-bottom: 24px;
}

.phh-thankyou-text {
    font-size: 1.1rem;
    color: var(--phh-text-light);
    margin-bottom: 28px;
}

.phh-thankyou-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.phh-thankyou-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--phh-text-light);
}

.phh-thankyou-info-item iconify-icon {
    color: var(--phh-primary);
}

/* ------------------------------------------------
   404 Page
   ------------------------------------------------ */
.phh-error-section {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.phh-error-block {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.phh-error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--phh-primary);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.2;
}

.phh-error-text {
    font-size: 1.05rem;
    color: var(--phh-text-light);
    margin-bottom: 32px;
}

.phh-error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ------------------------------------------------
   Cookie Banner
   ------------------------------------------------ */
.phh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--phh-bg-white);
    border-top: 1px solid var(--phh-border-light);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 16px 0;
}

.phh-cookie-inner {
    max-width: var(--phh-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.phh-cookie-inner p {
    font-size: 0.875rem;
    color: var(--phh-text-light);
    margin-bottom: 0;
}

.phh-cookie-inner a {
    color: var(--phh-primary);
    text-decoration: underline;
}

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.phh-footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 64px 0 0;
}

.phh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.phh-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
}

.phh-footer-logo iconify-icon {
    color: var(--phh-primary-light);
}

.phh-footer-desc {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 0;
}

.phh-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.phh-footer-links li {
    margin-bottom: 10px;
}

.phh-footer-links a {
    font-size: 0.9rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color var(--phh-transition);
}

.phh-footer-links a:hover {
    color: #fff;
}

.phh-footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #94A3B8;
}

.phh-footer-contacts iconify-icon {
    color: var(--phh-primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.phh-footer-contacts a {
    color: #94A3B8;
    transition: color var(--phh-transition);
}

.phh-footer-contacts a:hover {
    color: #fff;
}

.phh-footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.phh-footer-bottom p {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 0;
}

/* ------------------------------------------------
   Responsive: Tablet
   ------------------------------------------------ */
@media (max-width: 1024px) {
    .phh-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phh-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phh-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phh-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phh-pricing-popular {
        transform: none;
    }

    .phh-pricing-popular:hover {
        transform: translateY(-4px);
    }

    .phh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phh-about-intro {
        grid-template-columns: 1fr;
    }

    .phh-about-stats {
        flex-direction: row;
    }

    .phh-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phh-contact-grid {
        grid-template-columns: 1fr;
    }

    .phh-hero-title {
        font-size: 2.25rem;
    }
}

/* ------------------------------------------------
   Responsive: Mobile
   ------------------------------------------------ */
@media (max-width: 768px) {
    :root {
        --phh-header-h: 64px;
    }

    .phh-burger {
        display: flex;
    }

    .phh-nav {
        position: fixed;
        top: var(--phh-header-h);
        left: 0;
        right: 0;
        background: var(--phh-bg-white);
        border-bottom: 1px solid var(--phh-border-light);
        padding: 16px 24px;
        box-shadow: var(--phh-shadow-md);
        transform: translateY(-120%);
        transition: transform var(--phh-transition);
        z-index: 999;
    }

    .phh-nav.phh-nav-open {
        transform: translateY(0);
    }

    .phh-nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .phh-nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .phh-section {
        padding: 48px 0;
    }

    .phh-hero {
        padding: 60px 0;
    }

    .phh-hero-title {
        font-size: 1.75rem;
    }

    .phh-hero-subtitle {
        font-size: 1rem;
    }

    h1, .phh-page-title {
        font-size: 1.75rem;
    }

    h2, .phh-section-title {
        font-size: 1.5rem;
    }

    .phh-advantages-grid {
        grid-template-columns: 1fr;
    }

    .phh-services-preview {
        grid-template-columns: 1fr;
    }

    .phh-reviews-grid {
        grid-template-columns: 1fr;
    }

    .phh-team-grid {
        grid-template-columns: 1fr;
    }

    .phh-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .phh-values-grid {
        grid-template-columns: 1fr;
    }

    .phh-care-features,
    .phh-training-features {
        grid-template-columns: 1fr;
    }

    .phh-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .phh-about-stats {
        flex-direction: column;
    }

    .phh-legal-content {
        padding: 28px 20px;
    }

    .phh-contact-form-wrap {
        padding: 28px 20px;
    }

    .phh-cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .phh-cta-block {
        padding: 40px 24px;
    }

    .phh-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .phh-error-code {
        font-size: 5rem;
    }

    .phh-error-actions {
        flex-direction: column;
    }

    .phh-btn-block {
        justify-content: center;
    }
}

/* ------------------------------------------------
   Responsive: Small Mobile
   ------------------------------------------------ */
@media (max-width: 480px) {
    .phh-container {
        padding: 0 16px;
    }

    .phh-hero-title {
        font-size: 1.5rem;
    }

    .phh-page-title {
        font-size: 1.5rem;
    }

    .phh-section-title {
        font-size: 1.3rem;
    }

    .phh-btn-lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .phh-pricing-price {
        font-size: 1.75rem;
    }

    .phh-stat-number {
        font-size: 1.5rem;
    }
}

/* ------------------------------------------------
   Print Styles
   ------------------------------------------------ */
@media print {
    .phh-header,
    .phh-cookie-banner,
    .phh-burger,
    .phh-cta-section,
    .phh-footer {
        display: none !important;
    }

    .phh-main {
        padding: 0;
    }

    .phh-section {
        padding: 20px 0;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ------------------------------------------------
   Animations
   ------------------------------------------------ */
@keyframes phh-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phh-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phh-animate-in {
    animation: phh-fade-in 0.5s ease forwards;
}

.phh-hero-content {
    animation: phh-slide-up 0.6s ease forwards;
}

/* ------------------------------------------------
   Utility Classes
   ------------------------------------------------ */
.phh-text-center {
    text-align: center;
}

.phh-text-left {
    text-align: left;
}

.phh-text-right {
    text-align: right;
}

.phh-mt-0 { margin-top: 0; }
.phh-mt-1 { margin-top: 8px; }
.phh-mt-2 { margin-top: 16px; }
.phh-mt-3 { margin-top: 24px; }
.phh-mt-4 { margin-top: 32px; }
.phh-mb-0 { margin-bottom: 0; }
.phh-mb-1 { margin-bottom: 8px; }
.phh-mb-2 { margin-bottom: 16px; }
.phh-mb-3 { margin-bottom: 24px; }
.phh-mb-4 { margin-bottom: 32px; }

.phh-hidden {
    display: none !important;
}

.phh-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === PetHealthHub Team === */
.phh-team-section{background:#0F172A}
.phh-team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.phh-team-card{background:#1E293B;border-radius:12px;padding:2rem;text-align:center;border:1px solid #334155}
.phh-team-initials{width:72px;height:72px;border-radius:50%;background:#06B6D4;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:700;margin:0 auto 1rem}
.phh-team-card h3{color:#fff;margin-bottom:.25rem}
.phh-team-role{color:#06B6D4;font-size:.9rem;margin-bottom:.75rem}
.phh-team-card p{color:#94A3B8;font-size:.9rem}
@media(max-width:768px){.phh-team-grid{grid-template-columns:1fr}}
/* === PetHealthHub Gallery === */
.phh-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:220px;gap:1rem;margin-top:2rem}
.phh-gallery-item{border-radius:12px;overflow:hidden}
.phh-gallery-item--wide{grid-column:span 2}
.phh-gallery-item img{width:100%;height:100%;object-fit:cover}
@media(max-width:768px){.phh-gallery-grid{grid-template-columns:1fr}.phh-gallery-item--wide{grid-column:span 1}}
