﻿/* 💈 Book Appointment Section */
.book-section {
    background: linear-gradient(135deg, #000000 60%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.text-gold {
    color: #d4af37;
}

.btn-gold {
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

    .btn-gold:hover {
        background-color: #000;
        color: #d4af37;
        border: 1px solid #d4af37;
        transform: translateY(-3px);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

.book-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.07) 0%, transparent 70%);
    z-index: 0;
    animation: pulseGlow 8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.book-section .container {
    position: relative;
    z-index: 2;
}
