.theme_btn {
    padding: 2px 15px 2px 2px;
    border: unset;
    border-radius: 45px;
    color: #ffffff;
    z-index: 1;
    background: #8732de;
    position: relative;
    font-size: 15px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #8732de;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #000000;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #8732de;
}

.theme_btn:hover::before {
    width: 100%;
}

.yg_form_actions {
    display: flex;
    justify-content: center;
}

.side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-btn-text {
    background: #0f1017;
    padding: 10px 18px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif !important;
}

.side-btn-text.abot-btn {
    padding: 12px 28px;
    background: #fff;
    color: #000;
}

.theme_btn:hover .side-btn-text {
    background: #fff;
}

section.booking-sec {
    padding: 60px 0;
}

.yg_booking_card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.yg_hero_header {
    padding: 20px 20px 20px;
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.yg_hero_header h1 {
    margin: 0 0 8px;
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8732de;
}

.yg_hero_header p {
    margin: 0;
    font-size: 15px;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.yg_form_content {
    padding: 50px 60px;
}

.yg_form_section {
    margin-bottom: 15px;
}

.yg_section_title {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
}

.yg_section_title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eeeeee;
}

.yg_input,
.yg_textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #000000;
    background: #fcfcfc;
    font-weight: 500;
}

.yg_input:focus,
.yg_textarea:focus {
    outline: none;
    border-color: #8732de;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(135, 50, 222, 0.05);
}

.yg_textarea {
    min-height: 110px;
    resize: vertical;
}

.yg_time_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.yg_time_item {
    padding: 14px 10px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #000000;
}

.yg_time_item:hover {
    border-color: #8732de;
    color: #8732de;
    background: #fdfbff;
}

.yg_time_item.active {
    background: #8732de;
    color: #ffffff;
    border-color: #8732de;
}

.yg_time_item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
    border: 1px dashed #cccccc;
    color: #000 !important;
}

#msg {
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.flatpickr-calendar {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #f0f0f0 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.flatpickr-day.selected {
    background: #8732de !important;
    border-color: #8732de !important;
}

.flatpickr-months .flatpickr-month {
    background: #ffffff !important;
    color: #8732de !important;
    height: 55px !important;
}

.flatpickr-current-month {
    padding-top: 15px !important;
    color: #000000 !important;
}

.flatpickr-monthDropdown-months {
    font-family: 'Anton', sans-serif !important;
    text-transform: uppercase !important;
}

.flatpickr-weekday {
    color: #999 !important;
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .yg_booking_card {
        margin: 30px 15px;
    }

    .yg_form_content {
        padding: 40px 30px;
    }

    .yg_hero_header {
        padding: 40px 20px 30px;
    }

    .yg_hero_header h1 {
        font-size: 32px;
    }
}