/* Konaklama Sayfası - Fiyat Tabloları */

/* === Pricing Section === */
.pricing-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.pricing-tables {
    margin-top: 3rem;
}

.pricing-table-wrapper {
    margin-bottom: 3rem;
}

.table-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.table-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pricing-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Fee Table === */
.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table thead {
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
}

.fee-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.fee-table th:first-child {
    text-align: left;
    padding-left: 2rem;
}

/* Price Badges */
.price-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.regular-badge {
    background: rgba(255, 255, 255, 0.15);
}

/* Table Body */
.fee-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}

.fee-table tbody tr:last-child {
    border-bottom: none;
}

.fee-table tbody tr:hover {
    background: #f8fafc;
}

.fee-table td {
    padding: 1.25rem 1rem;
    text-align: center;
}

.category-name {
    text-align: left !important;
    padding-left: 2rem !important;
    font-weight: 500;
    color: #1e293b;
    font-size: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.early-bird {
    background: rgba(22, 163, 74, 0.05);
}

/* Pricing Notes */
.pricing-notes {
    margin-top: 3rem;
}

.note-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1.5rem;
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.note-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.note-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #64748b;
    line-height: 1.6;
}

.note-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.1rem;
}

.note-content ul li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .fee-table th,
    .fee-table td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2.5rem 0;
    }
    
    .fee-table th,
    .fee-table td {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .category-name {
        padding-left: 1rem !important;
        font-size: 0.875rem;
    }
    
    .fee-table th:first-child {
        padding-left: 1rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .price-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    .note-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .note-icon {
        font-size: 2rem;
    }
    
    .table-title {
        font-size: 1.5rem;
    }
    
    .table-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 0;
    }
    
    .fee-table {
        font-size: 0.75rem;
    }
    
    .fee-table th,
    .fee-table td {
        padding: 0.75rem 0.25rem;
    }
    
    .category-name {
        font-size: 0.75rem;
        padding-left: 0.75rem !important;
    }
    
    .fee-table th:first-child {
        padding-left: 0.75rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .note-card {
        padding: 1.25rem;
    }
    
    .note-content h4 {
        font-size: 1.1rem;
    }
    
    .note-content ul li {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .pricing-section {
        background: white;
    }
    
    .fee-table thead {
        background: #3b82f6 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .note-card {
        border: 1px solid #e2e8f0;
        page-break-inside: avoid;
    }
}