/* Pricing Page Styles */
.pricing-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: #9a9a9a;
}

/* Navigation Logo Positioning */
.nav-logo {
    position: absolute;
    left: 2.5rem;
    top: 0.3rem;
}

.back-button {
    display: inline-block;
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #df9e1e;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.back-button:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.price-category {
    background: #9a9a9a;
    border: 1px solid rgba(223, 158, 30, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.price-category:hover {
    border-color: #df9e1e;
    box-shadow: 0 4px 20px rgba(223, 158, 30, 0.2);
    transform: translateY(-5px);
}

.category-title {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #df9e1e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(223, 158, 30, 0.3);
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-name {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fdfeff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.price-dots {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(223, 158, 30, 0.3) 50%, transparent);
    margin: 0 0.5rem;
}

.service-price {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #df9e1e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #9a9a9a;
    border-radius: 10px;
    border: 1px solid rgba(223, 158, 30, 0.2);
}

.pricing-note p {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fdfeff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-note p:last-child {
    margin-bottom: 0;
    color: #df9e1e;
}

.pricing-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-link.active {
    color: #df9e1e;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-page {
        padding: 6rem 0 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .service-name {
        font-size: 0.8rem;
    }

    .service-price {
        font-size: 1rem;
    }

    .pricing-note p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .price-category {
        padding: 1.5rem;
    }

    .service-name {
        font-size: 0.75rem;
    }

    .pricing-cta {
        flex-direction: column;
        width: 100%;
    }

    .pricing-cta .cta-button {
        width: 100%;
        text-align: center;
    }
}
