/* 
 * Pricing Page Styles
 * Specific styles for pricing.php that extend existing classes
 */

/* Pricing category headers with consistent styling */
.pricing-category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.pricing-category-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid #FF6B35;
}

.pricing-category-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

.pricing-category-header p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

/* Pricing table extends data-table styles */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.pricing-table tr:hover {
    background: #f8f9fa;
}

.price {
    font-weight: bold;
    color: #27ae60;
    font-size: 18px;
}

.service-description {
    color: #555;
    line-height: 1.5;
}

.highlight-row:hover {
    background: #f8f9fa !important;
}

/* Additional info boxes extend existing info styles */
.additional-info {
    background: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #FF6B35;
}

.additional-info h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.additional-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* Pricing notes extend existing note styles */
.pricing-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.pricing-notes h3 {
    margin: 0 0 15px 0;
    color: #856404;
}

.pricing-notes ul {
    margin: 0;
    padding-left: 20px;
}

.pricing-notes li {
    margin-bottom: 8px;
    color: #856404;
}

/* Unified color scheme - remove different section colors */
/* All sections now use consistent styling */

/* Mobile responsive */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }
    
    .pricing-category-header {
        padding: 20px;
    }
    
    .pricing-category-header h2 {
        font-size: 24px;
    }
}
