/* Prices Page Styles */

.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.pricing-description {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card-popular {
    border: 2px solid #e67e22;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e22;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #e67e22;
}

.pricing-currency {
    font-size: 24px;
    color: #6c757d;
}

.pricing-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2c3e50;
}

.pricing-feature-icon {
    color: #e67e22;
    flex-shrink: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.services-description {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #e67e22;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    margin: 0 0 12px 0;
}

.service-description {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white !important;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: white !important;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 40px 0;
    color: white !important;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-title,
    .services-title,
    .cta-title {
        font-size: 32px;
    }
    
    .pricing-description,
    .services-description,
    .cta-description {
        font-size: 16px;
    }
    
    .pricing-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-amount {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
