/**
 * ProfiHands Styles
 * Colors: #1B573A (green), #2B2D32 (dark), #FFFAF5 (light bg)
 */

:root {
    --ph-green: #1B573A;
    --ph-green-light: #2a7a52;
    --ph-dark: #2B2D32;
    --ph-light: #FFFAF5;
    --ph-white: #ffffff;
    --ph-gray: #6b7280;
    --ph-border: #e5e7eb;
    --ph-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'GothamProLight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ph-dark);
    line-height: 1.6;
    background: var(--ph-white);
}

.ph-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'VetrinoRegular', Georgia, serif; font-weight: normal; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* Buttons */
.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ph-btn-primary {
    background: var(--ph-green);
    color: var(--ph-white);
}
.ph-btn-primary:hover {
    background: var(--ph-green-light);
}

.ph-btn-outline {
    background: transparent;
    border: 2px solid var(--ph-green);
    color: var(--ph-green);
}
.ph-btn-outline:hover {
    background: var(--ph-green);
    color: var(--ph-white);
}

.ph-btn-white {
    background: var(--ph-white);
    color: var(--ph-green);
}

/* Header */
.ph-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ph-white);
}

.ph-header-top {
    background: var(--ph-dark);
    color: var(--ph-white);
    font-size: 13px;
    padding: 8px 0;
}

.ph-header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ph-header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ph-header-contacts a,
.ph-header-contacts span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ph-white);
    text-decoration: none;
    opacity: 0.9;
}
.ph-header-contacts a:hover { opacity: 1; }

.ph-header-social {
    display: flex;
    gap: 12px;
}
.ph-header-social a {
    color: var(--ph-white);
    opacity: 0.8;
}
.ph-header-social a:hover { opacity: 1; }

.ph-header-main {
    padding: 15px 0;
    border-bottom: 1px solid var(--ph-border);
}

.ph-header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ph-logo {
    font-family: 'VetrinoRegular', Georgia, serif;
    font-size: 1.8rem;
    color: var(--ph-green);
    text-decoration: none;
}

.ph-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.ph-nav-list a {
    color: var(--ph-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.ph-nav-list a:hover { color: var(--ph-green); }

.ph-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.ph-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ph-dark);
    transition: 0.3s;
}

/* Hero */
.ph-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: var(--ph-dark);
    color: var(--ph-white);
    overflow: hidden;
}

.ph-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.ph-hero-slide.active { opacity: 1; }

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

.ph-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.ph-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
}

.ph-hero-content h1 { margin-bottom: 15px; }
.ph-hero-content p { margin-bottom: 25px; opacity: 0.9; font-size: 18px; }

.ph-hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.ph-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.ph-hero-dot.active { background: var(--ph-white); }

/* Section */
.ph-section {
    padding: 80px 0;
}

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

.ph-section-header h2 { margin-bottom: 15px; }
.ph-section-header p { color: var(--ph-gray); max-width: 600px; margin: 0 auto; }
.ph-section-subtitle { font-size: 1.25rem; color: var(--ph-green); margin-top: -5px; }

/* Stats Section */
.ph-stats {
    background: var(--ph-light);
    padding: 50px 0;
}

.ph-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.ph-stat-item {
    padding: 20px;
}

.ph-stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ph-green);
    font-family: 'VetrinoRegular', Georgia, serif;
    line-height: 1;
    margin-bottom: 10px;
}

.ph-stat-label {
    font-size: 14px;
    color: var(--ph-gray);
    display: block;
}

/* Service Categories */
.ph-service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.ph-category-card {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: 12px;
    padding: 30px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.ph-category-card:hover {
    box-shadow: var(--ph-shadow);
    transform: translateY(-5px);
}

.ph-category-header h3 {
    color: var(--ph-green);
    margin-bottom: 10px;
}

.ph-category-header p {
    font-size: 14px;
    color: var(--ph-gray);
    margin-bottom: 20px;
}

.ph-category-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.ph-category-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--ph-dark);
}

.ph-category-benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--ph-green);
}

/* Services CTA Banner */
.ph-services-cta {
    background: linear-gradient(135deg, var(--ph-green) 0%, var(--ph-green-light) 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: var(--ph-white);
    margin-bottom: 60px;
}

.ph-services-cta h2 {
    margin-bottom: 10px;
}

.ph-services-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Special Offers */
.ph-offers {
    background: var(--ph-light);
}

.ph-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ph-offer-card {
    background: var(--ph-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--ph-shadow);
    transition: transform 0.3s;
}

.ph-offer-card:hover {
    transform: translateY(-5px);
}

.ph-offer-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ph-offer-content {
    padding: 25px;
}

.ph-offer-content h3 {
    color: var(--ph-green);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.ph-offer-content p {
    font-size: 14px;
    color: var(--ph-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* About Features */
.ph-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.ph-about-feature {
    padding: 20px;
    background: var(--ph-light);
    border-radius: 8px;
}

.ph-about-feature h3 {
    font-size: 1rem;
    color: var(--ph-green);
    margin-bottom: 10px;
}

.ph-about-feature p {
    font-size: 14px;
    color: var(--ph-gray);
    margin-bottom: 0;
}

.ph-tagline {
    font-size: 1.25rem;
    color: var(--ph-green);
    font-family: 'VetrinoRegular', Georgia, serif;
}

/* Why Choose Us */
.ph-why { background: var(--ph-light); }

.ph-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ph-why-item {
    text-align: center;
    padding: 30px 20px;
}

.ph-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--ph-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ph-white);
}

.ph-why-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
.ph-why-item p { font-size: 14px; color: var(--ph-gray); }

/* Services Grid */
.ph-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ph-service-card {
    background: var(--ph-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--ph-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ph-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.ph-service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.ph-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ph-green);
    color: var(--ph-white);
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 3px;
    text-transform: uppercase;
}

.ph-service-card-content {
    padding: 20px;
}

.ph-service-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}
.ph-service-card h3 a {
    color: var(--ph-dark);
    text-decoration: none;
}
.ph-service-card h3 a:hover { color: var(--ph-green); }

.ph-service-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
}

.ph-service-price {
    display: flex;
    flex-direction: column;
}
.ph-service-price .duration { color: var(--ph-gray); }
.ph-service-price .amount { font-weight: 600; color: var(--ph-green); }

.ph-service-card .ph-btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}

/* Certificates */
.ph-certificates {
    background: var(--ph-light);
}

.ph-certificates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ph-certificates-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--ph-shadow);
}

.ph-certificates-list {
    list-style: none;
    counter-reset: cert;
}

.ph-certificates-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    counter-increment: cert;
}

.ph-certificates-list li::before {
    content: counter(cert);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--ph-green);
    color: var(--ph-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.ph-certificates-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Subscriptions */
.ph-subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ph-sub-card {
    background: var(--ph-white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--ph-shadow);
    position: relative;
    transition: transform 0.3s;
}
.ph-sub-card:hover { transform: translateY(-5px); }

.ph-sub-card.popular {
    border: 2px solid var(--ph-green);
}

.ph-sub-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ph-green);
    color: var(--ph-white);
    padding: 5px 15px;
    font-size: 11px;
    border-radius: 20px;
    text-transform: uppercase;
}

.ph-sub-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.ph-sub-card .visits { font-size: 2.5rem; font-weight: 700; color: var(--ph-green); }
.ph-sub-card .discount { color: var(--ph-gray); margin: 15px 0 25px; }

/* About */
.ph-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ph-about-content p { margin-bottom: 20px; }

.ph-locations-grid {
    display: grid;
    gap: 20px;
}

.ph-location-card {
    display: flex;
    gap: 20px;
    background: var(--ph-light);
    border-radius: 8px;
    overflow: hidden;
}

.ph-location-card img {
    width: 150px;
    height: 120px;
    object-fit: cover;
}

.ph-location-info {
    padding: 15px;
}

.ph-location-info h4 { margin-bottom: 5px; }
.ph-location-info p { font-size: 14px; color: var(--ph-gray); }

/* Team */
.ph-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ph-team-card {
    text-align: center;
}

.ph-team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--ph-green);
}

.ph-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-team-card h3 { margin-bottom: 5px; font-size: 1.1rem; }
.ph-team-card .position { color: var(--ph-gray); font-size: 14px; margin-bottom: 15px; }

/* SEO Text */
.ph-seo {
    background: var(--ph-dark);
    color: var(--ph-white);
    padding: 80px 0;
}

.ph-seo h2 { margin-bottom: 20px; }
.ph-seo p { margin-bottom: 20px; opacity: 0.9; }
.ph-seo ul { margin: 20px 0 20px 20px; }
.ph-seo li { margin-bottom: 10px; opacity: 0.9; }

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

.ph-faq-item {
    border-bottom: 1px solid var(--ph-border);
}

.ph-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ph-faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--ph-green);
    transition: transform 0.3s;
}

.ph-faq-item.active .ph-faq-question::after {
    transform: rotate(45deg);
}

.ph-faq-answer {
    display: none;
    padding-bottom: 20px;
    color: var(--ph-gray);
}

.ph-faq-item.active .ph-faq-answer { display: block; }

/* Footer */
.ph-footer {
    background: var(--ph-dark);
    color: var(--ph-white);
    padding: 60px 0 20px;
}

.ph-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.ph-footer-logo {
    font-family: 'VetrinoRegular', Georgia, serif;
    font-size: 1.5rem;
    color: var(--ph-white);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.ph-footer-desc { opacity: 0.8; margin-bottom: 20px; }

.ph-footer-social { display: flex; gap: 15px; }
.ph-footer-social a { color: var(--ph-white); opacity: 0.7; }
.ph-footer-social a:hover { opacity: 1; }

.ph-footer h4 { margin-bottom: 20px; font-size: 1rem; }

.ph-footer-links {
    list-style: none;
}

.ph-footer-links li { margin-bottom: 12px; }
.ph-footer-links a {
    color: var(--ph-white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
}
.ph-footer-links a:hover { opacity: 1; }

.ph-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

/* Mobile Booking Bar */
.ph-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ph-white);
    padding: 10px 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.ph-mobile-bar-inner {
    display: flex;
    gap: 10px;
}

.ph-mobile-bar .ph-btn { flex: 1; padding: 12px; }

/* Responsive */
@media (max-width: 1024px) {
    .ph-services-grid { grid-template-columns: repeat(3, 1fr); }
    .ph-team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ph-header-top { display: none; }
    
    .ph-nav { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ph-white);
        padding: 20px;
        box-shadow: var(--ph-shadow);
    }
    .ph-nav.active { display: block; }
    .ph-nav-list { flex-direction: column; gap: 15px; }
    
    .ph-mobile-toggle { display: flex; }
    .ph-header-cta { display: none; }
    
    .ph-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .ph-stat-number { font-size: 2.5rem; }
    
    .ph-service-categories { grid-template-columns: 1fr; }
    
    .ph-why-grid { grid-template-columns: repeat(2, 1fr); }
    .ph-services-grid { grid-template-columns: repeat(2, 1fr); }
    .ph-offers-grid { grid-template-columns: 1fr; }
    .ph-certificates-grid { grid-template-columns: 1fr; }
    .ph-about-grid { grid-template-columns: 1fr; }
    .ph-about-features { grid-template-columns: 1fr; }
    .ph-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ph-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .ph-services-cta { padding: 40px 25px; }
    
    .ph-mobile-bar { display: block; }
    .ph-footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .ph-why-grid { grid-template-columns: 1fr; }
    .ph-services-grid { grid-template-columns: 1fr; }
    .ph-team-grid { grid-template-columns: 1fr; }
    
    .ph-section { padding: 50px 0; }
}

/* Category Cards with Images (ProfiHands Style) */
.ph-service-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.ph-category-card {
    display: flex;
    gap: 30px;
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.ph-category-card:hover {
    box-shadow: var(--ph-shadow);
    transform: translateY(-3px);
}

.ph-category-image {
    flex-shrink: 0;
    width: 280px;
    min-height: 200px;
}

.ph-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-category-content {
    flex: 1;
    padding: 30px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Breadcrumbs */
.ph-breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: var(--ph-gray);
}

.ph-breadcrumbs a {
    color: var(--ph-green);
    text-decoration: none;
}

.ph-breadcrumbs span {
    margin: 0 8px;
}

.ph-breadcrumbs-light {
    color: rgba(255,255,255,0.8);
}

.ph-breadcrumbs-light a {
    color: var(--ph-white);
}

/* Service Hero */
.ph-service-hero {
    padding: 60px 0;
    background: var(--ph-light);
}

.ph-service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ph-service-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.ph-service-hero-image img {
    width: 100%;
    display: block;
}

.ph-service-hero-content h1 {
    margin-bottom: 20px;
    color: var(--ph-dark);
}

.ph-service-excerpt {
    font-size: 18px;
    color: var(--ph-gray);
    margin-bottom: 30px;
}

/* Price Table */
.ph-service-price-table {
    background: var(--ph-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.ph-service-price-table h3 {
    margin-bottom: 15px;
    color: var(--ph-green);
}

.ph-service-price-table table {
    width: 100%;
    border-collapse: collapse;
}

.ph-service-price-table th,
.ph-service-price-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--ph-border);
}

.ph-service-price-table th {
    font-weight: 600;
    color: var(--ph-dark);
}

.ph-service-price-table .old-price {
    text-decoration: line-through;
    color: var(--ph-gray);
    margin-right: 10px;
    font-size: 14px;
}

.ph-service-price-table .price {
    color: var(--ph-green);
    font-weight: 600;
    font-size: 18px;
}

.ph-btn-lg {
    padding: 18px 35px;
    font-size: 16px;
}

/* Service Content */
.ph-service-description {
    max-width: 800px;
    margin: 0 auto;
}

.ph-service-description h2,
.ph-service-description h3 {
    margin: 30px 0 15px;
    color: var(--ph-green);
}

.ph-service-description p {
    margin-bottom: 15px;
}

.ph-service-description ul {
    margin: 15px 0;
    padding-left: 25px;
}

.ph-service-description li {
    margin-bottom: 8px;
}

/* Category Hero (Archive) */
.ph-category-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    background: var(--ph-dark);
    background-size: cover;
    background-position: center;
    color: var(--ph-white);
    padding: 60px 0;
}

.ph-category-hero h1 {
    margin-bottom: 15px;
}

.ph-category-hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
}

.ph-category-hero-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ph-category-hero-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.ph-category-hero-benefits svg {
    color: var(--ph-green-light);
}

/* Archive Grid */
.ph-services-grid-archive {
    grid-template-columns: repeat(3, 1fr);
}

.ph-service-card-desc {
    font-size: 14px;
    color: var(--ph-gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ph-service-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.ph-service-card-actions .ph-btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
}

/* Pagination */
.ph-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.ph-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ph-border);
    border-radius: 8px;
    color: var(--ph-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.ph-pagination .page-numbers.current,
.ph-pagination .page-numbers:hover {
    background: var(--ph-green);
    border-color: var(--ph-green);
    color: var(--ph-white);
}

.ph-pagination .prev,
.ph-pagination .next {
    width: auto;
    padding: 0 15px;
}

.ph-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--ph-gray);
}

/* Related Services */
.ph-related-services {
    background: var(--ph-light);
}

.ph-related-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* CTA Section */
.ph-cta-section {
    padding-bottom: 80px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ph-category-card {
        flex-direction: column;
    }
    
    .ph-category-image {
        width: 100%;
        height: 200px;
    }
    
    .ph-category-content {
        padding: 25px;
    }
    
    .ph-service-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ph-services-grid-archive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ph-services-grid,
    .ph-services-grid-archive {
        grid-template-columns: 1fr;
    }
    
    .ph-category-hero-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .ph-service-card-actions {
        flex-direction: column;
    }
}

/* ================================================================
   ????? ? ???????? ????? (v2)
================================================================ */

/* ?????? ??? ????????? ?????????? */
.ph-header-info       { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ph-header-info-item  { display: flex; align-items: center; gap: 6px; color: var(--ph-white); text-decoration: none; opacity: .9; font-size: 13px; }
.ph-header-info-item:hover { opacity: 1; }

.ph-social-link { color: var(--ph-white); opacity: .8; display: flex; align-items: center; }
.ph-social-link:hover { opacity: 1; }
.ph-social-link svg { width: 16px; height: 16px; }

/* ??????? ? ????????? */
.ph-logo-img  { height: 44px; width: auto; display: block; }
.ph-logo-text { font-family: "VetrinoRegular", Georgia, serif; font-size: 1.8rem; color: var(--ph-green); }

/* ?????? */
.ph-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.ph-burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ph-dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.ph-burger.active .ph-burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ph-burger.active .ph-burger-line:nth-child(2) { opacity: 0; }
.ph-burger.active .ph-burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header scroll + hide */
.ph-header { transition: transform .3s ease, box-shadow .3s ease; }
.ph-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.ph-header.header-hidden { transform: translateY(-100%); }

/* ================================================================
   ????? ? ???????? ????? (v2)
================================================================ */
.ph-footer-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; color: var(--ph-white); }
.ph-footer-slogan  { color: rgba(255,255,255,.7); font-size: 14px; margin: 10px 0 16px; }
.ph-footer-logo    { display: inline-block; margin-bottom: 12px; }

.ph-footer-contact-list li { margin-bottom: 10px; line-height: 1.5; }
.ph-footer-contact-list a  { color: rgba(255,255,255,.8); text-decoration: none; }
.ph-footer-contact-list a:hover { color: #fff; }

.ph-footer-insta { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; }
.ph-footer-insta:hover { color: #fff; }

/* ================================================================
   MOBILE BAR ? sticky CTA
================================================================ */
.ph-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ph-white);
    border-top: 1px solid var(--ph-border);
    padding: 10px 16px;
    gap: 10px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform .3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.ph-mobile-bar.visible { transform: translateY(0); }

/* ================================================================
   ???????? ????? ??????
================================================================ */
.ph-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
.ph-animate.ph-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   ???????? ????????? (<=768px)
================================================================ */
@media (max-width: 768px) {
    .ph-header-top { display: none; }

    .ph-burger { display: flex; }
    .ph-mobile-toggle { display: flex; } /* backward compat */

    .ph-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--ph-white);
        box-shadow: -4px 0 20px rgba(0,0,0,.15);
        padding: 80px 24px 24px;
        transition: right .3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .ph-nav.active { right: 0; }

    .ph-nav-list {
        flex-direction: column;
        gap: 0;
    }
    .ph-nav-list li { border-bottom: 1px solid var(--ph-border); }
    .ph-nav-list a  { display: block; padding: 14px 0; font-size: 16px; }

    .ph-header-cta { display: none; }

    .ph-mobile-bar { display: flex; }

    body.ph-menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.4);
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .ph-mobile-bar .ph-btn { flex: 1; text-align: center; font-size: 13px; padding: 12px 10px; }
}

/* ================================================================
   ??????? ?????? (/poslugy/)
================================================================ */
.ph-page-hero {
    background: var(--ph-dark);
    color: #fff;
    padding: 60px 0 50px;
}
.ph-page-hero.ph-page-hero-img {
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) center/cover no-repeat;
    background-image: var(--hero-bg, none);
}
.ph-page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin: 12px 0; }
.ph-page-hero-desc { opacity:.85; max-width:600px; }
.ph-hero-benefits { list-style:none; display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.ph-hero-benefits li { display:flex; align-items:center; gap:6px; font-size:14px; }

.ph-filter-bar { background:#f7f7f5; border-bottom:1px solid var(--ph-border); padding:14px 0; position:sticky; top:0; z-index:99; }
.ph-filter-tabs { display:flex; gap:8px; flex-wrap:wrap; }
.ph-filter-btn { padding:7px 16px; border:1px solid var(--ph-border); background:#fff; border-radius:50px; font-size:13px; cursor:pointer; transition:.2s; }
.ph-filter-btn.active, .ph-filter-btn:hover { background:var(--ph-green); color:#fff; border-color:var(--ph-green); }
.ph-filter-count { font-size:11px; opacity:.7; }

.ph-services-grid-archive { grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }

.ph-service-card-img-wrap { display:block; position:relative; aspect-ratio:4/3; overflow:hidden; border-radius:8px 8px 0 0; background:var(--ph-light); }
.ph-service-card-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.ph-service-card:hover .ph-service-card-img-wrap img { transform:scale(1.04); }
.ph-service-card-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--ph-light); color:var(--ph-border); }

.ph-service-card-body { padding:20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.ph-service-card-title a { color:var(--ph-dark); text-decoration:none; }
.ph-service-card-title a:hover { color:var(--ph-green); }
.ph-service-card-desc { font-size:13px; color:var(--ph-gray); }

.ph-service-price-item { display:flex; justify-content:space-between; padding:4px 0; border-bottom:1px dashed var(--ph-border); font-size:13px; }
.ph-price-dur { color:var(--ph-gray); }
.ph-price-val { font-weight:600; color:var(--ph-green); }
.ph-price-val s { color:var(--ph-gray); font-weight:400; margin-right:4px; }

.ph-service-card-actions { display:flex; gap:8px; margin-top:auto; }
.ph-btn-sm { padding:8px 14px; font-size:12px; }

.ph-no-results { text-align:center; padding:60px 20px; }
.ph-cta-banner { background:var(--ph-green); color:#fff; border-radius:16px; padding:50px 40px; text-align:center; }
.ph-cta-banner h2 { color:#fff; margin-bottom:12px; }
.ph-cta-banner p { opacity:.9; margin-bottom:24px; }

.ph-pagination { display:flex; justify-content:center; gap:8px; margin-top:40px; flex-wrap:wrap; }
.ph-pagination .page-numbers { padding:8px 14px; border:1px solid var(--ph-border); border-radius:6px; color:var(--ph-dark); text-decoration:none; }
.ph-pagination .page-numbers.current { background:var(--ph-green); color:#fff; border-color:var(--ph-green); }

/* ================================================================
   ???????? ???????
================================================================ */
.ph-breadcrumbs-bar { background:#f7f7f5; padding:12px 0; border-bottom:1px solid var(--ph-border); }
.ph-breadcrumbs { display:flex; align-items:center; gap:8px; font-size:13px; flex-wrap:wrap; }
.ph-breadcrumbs a { color:var(--ph-green); text-decoration:none; }
.ph-breadcrumbs a:hover { text-decoration:underline; }
.ph-breadcrumbs span[aria-hidden] { color:var(--ph-gray); }

.ph-service-hero { padding:60px 0; }
.ph-service-hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
.ph-service-hero-img { position:relative; border-radius:12px; overflow:hidden; }
.ph-service-hero-img img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.ph-service-hero-img-placeholder { aspect-ratio:4/3; background:var(--ph-light); border-radius:12px; }

.ph-service-hero-info h1 { font-size:clamp(1.6rem,3.5vw,2.4rem); margin-bottom:12px; }
.ph-service-excerpt { color:var(--ph-gray); font-size:1.05rem; margin-bottom:24px; }

.ph-price-table { margin:20px 0; }
.ph-price-table h3 { font-size:14px; text-transform:uppercase; letter-spacing:.05em; color:var(--ph-gray); margin-bottom:10px; }
.ph-price-table table { width:100%; border-collapse:collapse; }
.ph-price-table td { padding:10px 12px; border-bottom:1px solid var(--ph-border); font-size:14px; }
.ph-price-table td:last-child { text-align:right; font-weight:600; color:var(--ph-green); }
.ph-old-price { color:var(--ph-gray); font-weight:400; text-decoration:line-through; margin-right:6px; }

.ph-service-phone { display:inline-flex; align-items:center; gap:6px; margin-top:14px; color:var(--ph-gray); font-size:14px; text-decoration:none; }
.ph-service-phone:hover { color:var(--ph-green); }

/* ???????? */
.ph-benefits-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:14px; margin-top:24px; }
.ph-benefits-grid li { display:flex; align-items:flex-start; gap:10px; background:var(--ph-light); padding:14px 16px; border-radius:8px; font-size:14px; list-style:none; }
.ph-benefits-grid li svg { flex-shrink:0; color:var(--ph-green); margin-top:2px; }

/* ?? ??????? */
.ph-includes-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px; margin-top:24px; }
.ph-include-item { display:flex; align-items:center; gap:12px; padding:16px; background:#fff; border-radius:10px; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.ph-include-icon { font-size:1.6rem; flex-shrink:0; }

/* ?????????? */
.ph-results-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; margin-top:24px; }
.ph-result-item { text-align:center; padding:24px 16px; background:var(--ph-light); border-radius:10px; }
.ph-result-icon { font-size:2rem; margin-bottom:10px; }
.ph-result-item p { font-size:14px; }

/* ????? */
.ph-bg-dark { background:var(--ph-dark); color:#fff; }
.ph-bg-dark h2 { color:#fff; }
.ph-steps-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:20px; margin-top:30px; }
.ph-step-item { display:flex; gap:16px; align-items:flex-start; }
.ph-step-num { background:var(--ph-green); color:#fff; min-width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.ph-step-content h3 { font-size:15px; margin-bottom:4px; color:#fff; }
.ph-step-content p { font-size:13px; color:rgba(255,255,255,.75); }

/* ??????? */
.ph-gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:12px; margin-top:24px; }
.ph-gallery-item { border-radius:8px; overflow:hidden; aspect-ratio:1; display:block; }
.ph-gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.ph-gallery-item:hover img { transform:scale(1.05); }

/* CTA ????????? */
.ph-service-cta-mid { padding:0; }
.ph-service-cta-mid .ph-cta-banner { border-radius:0; padding:50px 20px; }
.ph-bg-green { background:var(--ph-green); }
.ph-service-cta-final { padding:60px 0; }
.ph-service-cta-final h2, .ph-service-cta-final p { color:#fff; }
.ph-text-center { text-align:center; }
.ph-cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:24px; }
.ph-btn-outline-white { border:2px solid rgba(255,255,255,.5); color:#fff; background:transparent; }
.ph-btn-outline-white:hover { background:rgba(255,255,255,.15); }
.ph-btn-lg { padding:16px 32px; font-size:16px; }

/* Prose (WP editor content) */
.ph-prose { max-width:720px; margin:0 auto; line-height:1.8; font-size:1rem; }
.ph-prose h2, .ph-prose h3 { margin-top:1.6em; }
.ph-prose p { margin-bottom:1em; }
.ph-prose ul, .ph-prose ol { padding-left:1.5em; margin-bottom:1em; }
.ph-prose img { max-width:100%; border-radius:8px; }

/* ?????? ????????? */
.ph-contacts-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:30px; }
.ph-contact-studio h3 { margin-bottom:14px; }
.ph-contact-info { list-style:none; display:flex; flex-direction:column; gap:8px; font-size:14px; }
.ph-contact-info a { color:var(--ph-dark); text-decoration:none; }
.ph-contact-info a:hover { color:var(--ph-green); }
.ph-map-embed { margin-top:16px; border-radius:10px; overflow:hidden; }

/* ????? */
.ph-simple-form .ph-form-group { margin-bottom:12px; }
.ph-simple-form input, .ph-simple-form textarea { width:100%; padding:12px 14px; border:1px solid var(--ph-border); border-radius:8px; font-size:14px; font-family:inherit; }
.ph-simple-form input:focus, .ph-simple-form textarea:focus { outline:none; border-color:var(--ph-green); }
.ph-simple-form button { width:100%; }

/* ?????????? */
.ph-memberships-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; margin-top:30px; }
.ph-membership-card { border:2px solid var(--ph-border); border-radius:16px; padding:30px 24px; display:flex; flex-direction:column; gap:16px; position:relative; transition:box-shadow .3s; }
.ph-membership-card:hover { box-shadow:0 8px 30px rgba(0,0,0,.1); }
.ph-membership-popular { border-color:var(--ph-green); box-shadow:0 4px 20px rgba(27,87,58,.15); }
.ph-membership-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--ph-green); color:#fff; padding:4px 16px; border-radius:50px; font-size:12px; font-weight:600; white-space:nowrap; }
.ph-membership-header h3 { font-size:1.2rem; }
.ph-membership-sessions { color:var(--ph-gray); font-size:14px; }
.ph-membership-price { display:flex; align-items:baseline; gap:4px; }
.ph-price-amount { font-size:2rem; font-weight:700; color:var(--ph-green); }
.ph-price-currency { font-size:14px; color:var(--ph-gray); }
.ph-membership-features { list-style:none; font-size:14px; display:flex; flex-direction:column; gap:6px; }
.ph-membership-features li::before { content:"? "; color:var(--ph-green); font-weight:700; }

/* ????? */
.ph-promotions-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; }
.ph-promo-card { border-radius:12px; overflow:hidden; background:#fff; box-shadow:0 2px 16px rgba(0,0,0,.07); display:flex; flex-direction:column; }
.ph-promo-img { position:relative; aspect-ratio:16/9; overflow:hidden; }
.ph-promo-img img { width:100%; height:100%; object-fit:cover; }
.ph-promo-badge { position:absolute; top:12px; left:12px; background:var(--ph-green); color:#fff; padding:4px 12px; border-radius:50px; font-size:12px; font-weight:700; }
.ph-promo-content { padding:20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.ph-promo-content h3 { font-size:1rem; }
.ph-promo-content p { font-size:13px; color:var(--ph-gray); flex:1; }
.ph-promo-date { font-size:12px; color:var(--ph-gray); }
.ph-section-more { text-align:center; margin-top:32px; }

/* ??????????? */
.ph-cert-placeholder { background:linear-gradient(135deg,var(--ph-green) 0%,#2d7a50 100%); border-radius:12px; aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; text-align:center; }
.ph-cert-placeholder span { font-size:3rem; }
.ph-cert-placeholder p { font-size:1.2rem; margin-top:12px; }
.ph-cert-nominations { display:flex; flex-wrap:wrap; gap:8px; margin:16px 0; }
.ph-cert-nom { background:var(--ph-light); padding:6px 14px; border-radius:50px; font-size:13px; }
.ph-certificates-steps { display:flex; flex-direction:column; gap:10px; margin:16px 0; padding-left:16px; }
.ph-certificates-steps li { font-size:14px; }
.ph-step-icon { margin-right:6px; }

/* ?????? ??????-?????? */
.ph-booking-cta { text-align:center; padding:20px 0; }
.ph-alteg-widget { margin-top:20px; }

/* Responsive */
@media (max-width:768px) {
    .ph-service-hero-grid { grid-template-columns:1fr; }
    .ph-steps-grid { grid-template-columns:1fr; }
    .ph-cta-actions { flex-direction:column; align-items:center; }
    .ph-cta-banner { padding:36px 20px; }
    .ph-btn-lg { padding:14px 24px; font-size:15px; }
    .ph-memberships-grid { grid-template-columns:1fr; }
    .ph-contacts-grid { grid-template-columns:1fr; }
}
