:root {
    --brand-primary: #007bff; /* A vibrant blue for primary actions */
    --brand-secondary: #00BFFF; /* A vibrant, energetic light blue */
    --brand-accent: #FFD700; /* A touch of gold for luxury */
    --text-light: #f8f9fa; /* A clean, bright white */
    --text-muted: #adb5bd; /* For secondary text */
    --bg-dark-primary: #0d1117; /* GitHub's dark background */
    --bg-dark-secondary: #161b22; /* GitHub's slightly lighter dark */
    --border-color: #30363d; /* GitHub's border color */
    --shadow-color: rgba(0, 0, 0, 0.4);
}

.rates-page {
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
}

.rates-page .section-header .subtitle {
    color: var(--brand-secondary);
}

.rates-page .section-header p {
    color: var(--text-muted);
}

.rate-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.rate-card {
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-secondary);
    box-shadow: 0 12px 35px var(--shadow-color);
}

.rate-card-header {
    background-color: var(--bg-dark-primary);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
}

.rate-card-header .boat-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    color: var(--brand-secondary);
}

.rate-card-header .boat-capacity {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.rate-card-body {
    padding: 25px;
    flex-grow: 1;
}

.rate-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rate-card-body li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.rate-card-body li:last-child {
    border-bottom: none;
}

.rate-card-body .day {
    font-weight: 700;
    color: var(--text-light);
}

.rate-card-body .price {
    font-weight: 700;
    color: var(--brand-accent);
}

.rate-card-footer {
    padding: 25px;
    background-color: var(--bg-dark-primary);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.btn-view-boat {
    background-color: var(--brand-primary);
    color: var(--text-light);
    border: 1px solid var(--brand-primary);
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn-view-boat:hover {
    background-color: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: var(--bg-dark-primary);
    transform: scale(1.05);
}

/* Pricing Notes Section */
.pricing-notes {
    background-color: var(--bg-dark-secondary);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid var(--border-color);
}

.pricing-notes h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--brand-secondary);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.pricing-notes li {
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.pricing-notes .fa-check-circle {
    color: var(--brand-accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing-notes p {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.pricing-notes p strong {
    color: var(--text-light);
}
