/* ============================================
   PMU PAGE STYLES
   ============================================ */

/* PMU Hero Section */
.pmu-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 100%);
    text-align: center;
}

.pmu-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(225, 48, 108, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.pmu-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pmu-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* PMU Gallery Section */
.pmu-gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.pmu-gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.pmu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pmu-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pmu-gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
}

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

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

/* PMU Pricing Section */
.pmu-pricing-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.pmu-pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.pmu-price-category {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pmu-price-category:last-child {
    margin-bottom: 0;
}

.pmu-price-category h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(225, 48, 108, 0.3);
}

.pmu-price-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pmu-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

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

.pmu-price-item .price-name {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.pmu-price-item .price-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* PMU Contact Section */
.pmu-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 100%);
}

.pmu-contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pmu-contact-card h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.pmu-provider-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.provider-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.provider-detail i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.provider-detail a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.provider-detail a:hover {
    color: #ff3385;
}

/* Responsive Design for PMU Page */
@media (max-width: 768px) {
    .pmu-hero {
        padding: 100px 0 60px;
    }

    .pmu-hero h1 {
        font-size: 2.5rem;
    }

    .pmu-subtitle {
        font-size: 1rem;
    }

    .pmu-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pmu-gallery-section h2,
    .pmu-pricing-section h2 {
        font-size: 2rem;
    }

    .pmu-price-category {
        padding: 1.5rem;
    }

    .pmu-price-category h3 {
        font-size: 1.5rem;
    }

    .pmu-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pmu-contact-card {
        padding: 2rem;
    }
}

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