/* ==========================================
   Pricing Page Styles
   Extracted from cennik.html inline styles
   ========================================== */

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #17A2B8 0%, #FF9B8A 100%);
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
    color: white;
}

.pricing-hero h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Pricing Section */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #2C3E50;
    margin: 0 0 1rem 0;
}

.section-intro p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-section .service-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #17A2B8;
    position: relative;
}

.pricing-section .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pricing-section .service-item.featured {
    border-left-color: #FF9B8A;
    background: linear-gradient(135deg, rgba(23,162,184,0.05) 0%, rgba(255,155,138,0.05) 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: #2C3E50;
    margin: 0;
    flex: 1;
}

.service-price {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #17A2B8;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Duration Toggle */
.duration-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #f0f0f0;
    padding: 0.25rem;
    border-radius: 25px;
    width: fit-content;
}

.duration-option {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: #666;
}

.duration-option:hover {
    background: rgba(23,162,184,0.1);
}

.duration-option.active {
    background: #17A2B8;
    color: white;
}

.service-description {
    color: #555;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

/* Book Now Button */
.btn-book-service {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #17A2B8 0%, #FF9B8A 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(23,162,184,0.3);
    border: none;
    cursor: pointer;
}

.btn-book-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23,162,184,0.4);
}

/* Accessibility & Touch Targets */
.btn-book-service,
.duration-option {
    min-height: 44px;
    min-width: 44px;
}

/* Focus Styles for Accessibility */
.pricing-section a:focus,
.pricing-section button:focus {
    outline: 3px solid #17A2B8;
    outline-offset: 2px;
}

/* Category Divider */
.category-divider {
    text-align: center;
    margin: 4rem 0 2rem 0;
    position: relative;
}

.category-divider::before,
.category-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, #17A2B8, transparent);
}

.category-divider::before {
    left: 0;
}

.category-divider::after {
    right: 0;
}

.category-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #17A2B8;
    display: inline-block;
    padding: 0 2rem;
    background: white;
    position: relative;
}

/* Contact Info */
.pricing-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-radius: 12px;
    text-align: center;
}

.pricing-contact h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #2C3E50;
    margin: 0 0 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.contact-item h4 {
    font-family: 'Lora', serif;
    color: #17A2B8;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #17A2B8;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #FF9B8A;
}

/* CTA Section */
.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #17A2B8 0%, #FF9B8A 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23,162,184,0.3);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23,162,184,0.4);
}

/* ==========================================
   Pricing Page Responsive Styles
   ========================================== */

/* Tablet Optimization */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }

    .pricing-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .pricing-hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section .service-item {
        padding: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

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

    .category-divider::before,
    .category-divider::after {
        width: 25%;
    }

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

    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
    }

    .duration-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 1.75rem;
    }

    .pricing-section .service-item {
        padding: 1.25rem;
    }

    .section-intro h2 {
        font-size: 1.5rem;
    }
}
