.booking-wrapper {
    padding: 50px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
}

.booking-header {
    color: #000;
    font-family: Oswald;
    font-size: 70.773px;
    font-style: normal;
    font-weight: 600;
    line-height: 86.5px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 50px;
}

.back-button {
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    color: #333;
    text-decoration: none;
}

.service-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Amelia Roboto, sans-serif;
}

.meta-info {
    font-size: 18px;
    color: #444;
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.meta-info i {
    margin-right: 5px;
}

.price-book {
    text-align: right;
    min-width: 150px;
}

.price-book .price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1246d6;
    font-family: Amelia Roboto, sans-serif;
}

.price-book .btn {
    background: #1a5cff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 35px;
}

.tab-nav {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #eee;
    margin: 30px 0 15px;
}

.tab-nav a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.tab-nav a.active {
    color: #1a5cff;
    border-color: #1a5cff;
}

.tab-content {
    display: none;
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-top: 10px;
}

.tab-content.active {
    display: block;
    text-align: center;
}

.tab-content.active.active1 {
    display: block;
    text-align: justify;
}



input,
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button[type="submit"] {
    background: #1a5cff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.employee-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 20px;
}

.emp-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.emp-card input[type="radio"] {
    display: none;
}

.emp-avatar {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emp-name {
    font-weight: 600;
    color: #222;
}

.emp-card:hover {
    background: #f9f9f9;
}

.emp-card input[type="radio"]:checked+.emp-avatar {
    outline: 3px solid #1a5cff;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    width: 900px;
    max-width: 95%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeInUp 0.3s ease-in-out;
    margin: 10% auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-sidebar {
    width: 240px;
    background: #132b50;
    color: white;
    padding: 25px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-sidebar .step {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    transition: 0.3s ease;
}

.modal-sidebar .step.current {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.modal-sidebar .step.completed {
    color: #a5ffb1;
}

.modal-content-steps {
    flex: 1;
    padding: 40px;
    background: #f8f9fc;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.modal-step h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #132b50;
}

.modal-step select,
.modal-step input[type="text"],
.modal-step input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 15px;
}

.modal-step button {
    background: #1a5cff;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-step button:hover {
    background: #104de0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.grid input[type="radio"] {
    display: none;
}

.grid label {
    display: block;
    background: #e4e9f0;
    text-align: center;
    padding: 12px 10px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.grid input[type="radio"]:checked+label {
    background: #1a5cff;
    color: white;
}

.close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #aaa;
    transition: 0.3s ease;
}

a.btn-back {
    background: #1a5cff;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.emp-card {
    display: flex;
    border: 1px solid #bfbfbf;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-100px);
    animation: empBounceIn 0.6s ease forwards;
}

@keyframes empBounceIn {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.8);
    }

    60% {
        transform: translateX(15px) scale(1.05);
    }

    80% {
        transform: translateX(-5px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.fc-event {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: normal !important;
    font-size: 13px;
    line-height: 1.3;
}

.fc-event-title {
    white-space: normal !important;
}