/* ========================================
   MODERN PRICING SECTION - CLEAN & MINIMAL
   ======================================== */

/* Pricing Tabs - Clean Chip Design */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 14px 28px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6B7280;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-tab:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.pricing-tab.active {
    background: #667eea;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
}

/* Pricing Card Container */
.pricing-table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #F3F4F6;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid #F3F4F6;
}

.pricing-table th {
    background: linear-gradient(135deg, #F5F7FF 0%, #E8EEFF 100%);
    color: #1F2937;
    font-weight: 700;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.pricing-table tbody tr {
    transition: all 0.2s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background: #FAFBFC;
}

.pricing-table tbody tr:hover {
    background: #F5F7FF;
    transform: translateX(4px);
    box-shadow: inset 4px 0 0 #667eea;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .price-col {
    text-align: right;
    font-weight: 700;
    color: #111827;
    font-size: 1.05rem;
}

.pricing-table th.price-col,
.pricing-table-inner th.price-col {
    color: #1F2937;
}

/* Section Headers */
.pricing-section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.pricing-section-header:first-child {
    margin-top: 0;
    border-radius: 16px 16px 0 0;
}

/* Subcategory Buttons */
.dry-cleaning-subcategories {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

.subcategory-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6B7280;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.subcategory-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.subcategory-btn.active {
    background: #667eea;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
}

#subcategory-content {
    margin-top: 1.5rem;
}

/* Inner Pricing Tables */
.pricing-table-inner {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
}

.pricing-table-inner th,
.pricing-table-inner td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid #F3F4F6;
}

.pricing-table-inner th {
    background: linear-gradient(135deg, #F5F7FF 0%, #E8EEFF 100%);
    color: #1F2937;
    font-weight: 700;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.pricing-table-inner tbody tr {
    transition: all 0.2s ease;
}

.pricing-table-inner tbody tr:nth-child(even) {
    background: #FAFBFC;
}

.pricing-table-inner tbody tr:hover {
    background: #F5F7FF;
    transform: translateX(4px);
    box-shadow: inset 4px 0 0 #667eea;
}

.pricing-table-inner tr:last-child td {
    border-bottom: none;
}

.pricing-table-inner .price-col {
    text-align: right;
    font-weight: 700;
    color: #111827;
    font-size: 1.05rem;
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}