/* Button Styles */
.btn-call, .btn-appointment {
    padding: 5px 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
}

.btn-call {
    background: transparent;
    color: #2d2d2d;
    border: 1px solid #FDC935;
}

.btn-call:hover {
    background: #FDC935;
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 201, 53, 0.3);
}

.btn-appointment {
    background: #FDC935;
    color: #2d2d2d;
    border: 2px solid #FDC935;
}

.btn-appointment:hover {
    background: #FED866;
    border-color: #FED866;
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 201, 53, 0.3);
}

/* Mobile Button Styles */
@media screen and (max-width: 768px) {
    .mobile-right .btn-call,
    .mobile-right .btn-appointment,
    .mobile-right .call-to-book-btn {
        padding: 3px 6px;
        font-size: 0.65rem;
        border-width: 1px;
        font-weight: 400;
        min-width: 60px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-right {
        flex-direction: row;
        gap: 4px;
        align-items: center;
    }
    
    .mobile-right .btn-call,
    .mobile-right .btn-appointment,
    .mobile-right .call-to-book-btn {
        padding: 3px 6px;
        font-size: 0.65rem;
        min-width: 60px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 0.5px;
    }
}

/* Add this new button style */
.btn-visit {
    padding: 6px 12px;
    background: transparent;
    color: white;
    border: 1px solid #FDC935;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 90px;
    text-align: center;
    display: inline-block;
}

.btn-visit:hover {
    background: #FDC935;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 201, 53, 0.3);
}