/* Pricing/Rates Page Styles */

.rates-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.rates-header {
    text-align: center;
    margin-bottom: 50px;
}

.rates-header .prices-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

/* Pricing Toggle Switch */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    background: #f1f3f5;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 15px;
}

.toggle-btn.active {
    color: #000;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Pricing Cards */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border-color: #007bff;
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #e7f1ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #007bff;
}

.card-icon i {
    font-size: 24px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-card .tagline {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
}

.days-selector {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.days-selector label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.day-select {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.day-select:focus {
    border-color: #007bff;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #495057;
}

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

.card-features li i {
    margin-right: 15px;
    width: 20px;
    color: #007bff;
    font-size: 14px;
}

.btn-book {
    display: block;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    color: #333;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-card.popular .btn-book {
    background: #007bff;
    color: #fff;
}

.pricing-card.popular .btn-book:hover {
    background: #0056b3;
}

.btn-book:hover {
    background: #e9ecef;
}

/* What's Included Section */
.included-section {
    padding: 80px 0;
    background: #fff;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #e7f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #007bff;
}

.feature-icon i {
    font-size: 26px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    text-align: center;
}

.rating {
    color: #ffc107;
    margin-bottom: 25px;
    font-size: 20px;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d4a373;
    /* Fallback for the image color in screenshot */
    margin-right: 15px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
}

.author-location {
    font-size: 13px;
    color: #6c757d;
}

/* Inquiry Form Section */
.inquiry-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 0;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.form-group label span {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.radio-container input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-send {
    background-color: #337ab7;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-send:hover {
    background-color: #28608f;
}

/* Responsiveness */
@media (max-width: 991px) {
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .form-title {
        font-size: 28px;
    }
}