.btn-primary-custom {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
    display: inline-block;
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 77, 140, 0.2);
    color: var(--white);
}

.card-specialty {
    border: none;
    padding: 0;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-base);
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.card-specialty .card-img-top {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.card-specialty .card-body-custom {
    padding: 30px;
}

.card-specialty:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: var(--primary-blue);
    color: var(--white);
}

.card-specialty:hover .card-img-top {
    transform: scale(1.1);
}

.card-specialty i {
    font-size: 2rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    transition: color var(--transition-base);
}

.card-specialty:hover i,
.card-specialty:hover h3,
.card-specialty:hover p {
    color: var(--white);
}

.full-services-list h4 {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.full-services-list ul {
    list-style: none;
    padding-left: 0;
}

.full-services-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
}

.full-services-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-blue);
    margin-right: 12px;
}

.contact-info-box {
    background: var(--accent-cyan);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    height: 100%;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.booking-side-card,
.booking-review-card,
.booking-note,
.booking-shell,
.calendar-panel,
.slots-panel {
    border-radius: var(--radius-lg);
}

.booking-side-card,
.booking-review-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-soft);
}

.booking-note {
    background: rgba(10, 77, 140, 0.08);
    color: var(--text-dark);
    padding: 16px 18px;
}

.booking-step-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 20px;
        bottom: 20px;
    }

    .booking-step-actions > * {
        width: 100%;
    }
}
