/* FAQ Page Specific Styles - Booking & Legal */
.faq-section-modern {
    padding-bottom: 10px !important;
}

.faq-section {
    padding-bottom: 20px !important;
}

.booking-widget-section {
    padding-top: 10px !important;
}

/* Legal Documents Section Styles */
.legal-doc-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.legal-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(211,23,137,0.2);
    background: linear-gradient(135deg, #fff 0%, rgba(211,23,137,0.02) 100%);
}
.legal-doc-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #D31789 0%, #ff6b9d 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}
.legal-doc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211,23,137,0.3);
}

/* Still Have Questions Section */
.faq-cta-section {
    margin-top: 10px;
    padding: 60px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}
.cta-hub-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(211, 23, 137, 0.1);
    color: #D31789;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.faq-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.phone-btn {
    background: #D31789;
    color: white;
}
.phone-btn:hover {
    background: #b91570;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 23, 137, 0.2);
}
.email-btn {
    background: white;
    color: #D31789;
    border: 2px solid #D31789;
}
.email-btn:hover {
    background: rgba(211, 23, 137, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
