/* Rate Page Styles */
:root {
    --primary-color: #0a5c75;
    --secondary-color: #f8f9fa;
    --accent-color: #17a2b8;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #f5f7f9;
}

.navbar {
    background-color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(rgba(10, 92, 117, 0.8), rgba(10, 92, 117, 0.8)), url('https://images.unsplash.com/photo-1590065480004-477ef6d4d5e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    margin-bottom: 2rem;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0 !important;
}

.price-highlight {
    color: var(--accent-color);
    font-weight: bold;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
}

.faq-item {
    margin-bottom: 15px;
}


.table-custom {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-custom thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #084154;
    border-color: #084154;
}

.note-box {
    background-color: #e8f4f8;
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.duration-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Special styling for non-price text in table */
.table-custom td:contains("Upon Request") {
    color: #6c757d;
    font-style: italic;
}

.table-custom td:contains("Nil") {
    color: #dc3545;
    font-weight: bold;
}