/* =====================================================
   HelpStar — Book Online Page Styles
   ===================================================== */

.book-online-wrapper {
    background-color: #0d4a45; /* Dark green from screenshot */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.book-online-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.book-online-heading {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.book-online-subheading-1 {
    color: #f59e0b; /* Orange/Gold from screenshot */
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.book-online-subheading-2 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.book-online-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.book-online-btn-primary {
    background-color: #10b981; /* Bright green */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.book-online-btn-primary:hover {
    background-color: #059669;
    color: #ffffff;
    transform: translateY(-2px);
}

.book-online-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: 2px solid #ffffff;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.book-online-btn-secondary:hover {
    background-color: #ffffff;
    color: #0d4a45;
}
