/* Rates & Reservations Page Styles */

/* Hero Section */
.rates-hero {
    background: linear-gradient(135deg, rgb(63, 31, 8) 0%, rgb(101, 67, 33) 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.rates-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.rates-hero p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 20px;
}

/* Main Content */
.rates-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Pricing Tables */
.pricing-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgb(63, 31, 8) 0%, rgb(101, 67, 33) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Pricing Table */
.pricing-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table thead th {
    background: linear-gradient(135deg, rgb(63, 31, 8) 0%, rgb(101, 67, 33) 100%);
    color: white;
    padding: 18px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

.pricing-table thead th:first-child {
    border-top-left-radius: 10px;
    text-align: left;
}

.pricing-table thead th:last-child {
    border-top-right-radius: 10px;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f0f4ff;
    transform: scale(1.01);
}

.pricing-table tbody td {
    padding: 20px 15px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    font-size: 1.05rem;
}

.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

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

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgb(101, 67, 33);
}

.camping-row {
    background: #fff9e6;
}

.camping-row td {
    font-style: italic;
    color: #856404;
}

/* Note Box */
.note-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.note-box strong {
    color: #856404;
    font-size: 1.1rem;
}

.note-box p {
    margin: 10px 0 0 0;
    color: #664d03;
}

/* Policies Section */
.policy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid rgb(101, 67, 33);
}

.policy-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-card h3 i {
    color: rgb(101, 67, 33);
    font-size: 24px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.policy-card li i {
    color: rgb(101, 67, 33);
    margin-top: 3px;
    font-size: 18px;
}

/* Cancellation Table */
.cancellation-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.cancellation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #e5e7eb;
}

.cancellation-row:last-child {
    border-bottom: none;
}

.cancellation-row:nth-child(odd) {
    background: #f9fafb;
}

.cancellation-time {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.cancellation-penalty {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc3545;
    padding: 8px 20px;
    background: #ffe6e6;
    border-radius: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgb(63, 31, 8) 0%, rgb(101, 67, 33) 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-top: 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    background: white;
    color: rgb(63, 31, 8);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: rgb(63, 31, 8);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: rgb(63, 31, 8);
}

/* Signature */
.signature-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.signature-section p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.signature-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.signature-section span {
    color: rgb(101, 67, 33);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .rates-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
    }
    
    .pricing-section {
        padding: 25px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .cancellation-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .rates-hero h1 {
        font-size: 2rem;
    }
    
    .rates-hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .policy-card {
        padding: 20px;
    }
}
