#contact-us-tab, #workshop-tab {
    position: fixed;
    right: 0;
    font-weight: 700;
    color: white;
    padding: 20px 15px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

#contact-us-tab {
    top: 50%;
    transform: translateY(-50%);
    background-color: #c30017;
    z-index: 10006;
}

#workshop-tab {
    top: 60%;
    background-color: #1F1F1F;
    z-index: 10007;
}

#contact-us-tab-arrow, #workshop-tab-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

#contact-us-tab-arrow.active, #workshop-tab-arrow.active {
    transform: rotate(180deg) !important;
}

#contact-us-sidebar, #workshop-sidebar {
    position: fixed;
    /* height: 100%; */
    background-color: #fff;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease, top 0.3s ease, z-index 0.3s ease;
    display: flex;
    flex-direction: column;
}

#contact-us-sidebar {
    top: 14%;
    right: -450px;
    width: 450px;
    z-index: 1003;
}

#workshop-sidebar {
    top: 14%;
    right: -600px;
    width: 600px;
    z-index: 1002;
}

#contact-us-sidebar.active {
    z-index: 10005;
}

#workshop-sidebar.active {
    z-index: 10006;
}

#contact-us-sidebar.active, #workshop-sidebar.active {
    right: 0;
}

.contact-us-header, .workshop-header {
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-us-header {
    background: #c30017;
}

.workshop-header {
    background: #1F1F1F;
}

.contact-us-title-wrapper, .workshop-title-wrapper {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-us-content {
    padding: 30px 50px 30px 30px;
}

.workshop-content {
    padding: 30px;
    overflow-y: scroll;
    max-height: 700px;
}

.contact-us-content__heading, .workshop-content__heading {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-us-content__heading-highlight, .workshop-content__heading-highlight {
    color: #c30017;
}

.contact-us-content__button-wrapper, .workshop-content__button-wrapper {
    margin-top: 20px;
}

.contact-us-content__button, .workshop-content__button {
    display: inline-block;
    color: #ffffff;
    background-color: #c30017;
    font-weight: 700;
    padding: 10px 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-content__button {
    margin-top: 10px;
}

.contact-us-content__button:hover, .workshop-content__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color:#ffffff;
    text-decoration: none;
}

.contact-us-content__phone, .workshop-content__phone {
    white-space: nowrap;
}

.contact-us-content__details-list, .workshop-content__details-list {
    margin: 0;
}

.contact-us-content__details-item, .workshop-content__details-item {
    margin: 0;
    list-style: none;
}

.contact-us-icon, .workshop-icon {
    margin-right: 0.5em;
}

.contact-us-content__details-item-icon, .workshop-content__details-item-icon {
    margin-right: 0.5em;
    display: inline-block;
    width: 16px;
}

.contact-us-title, .workshop-title {
    font-weight: 700;
}

#close-contact-us, #close-workshop {
    cursor: pointer;
    font-size: 28px;
}

/* Workshop Cards Styles */

.workshop-content__card-link {
    display: block;
    text-decoration: none;
}

.workshop-content__cards .workshop-content__card {
    position: relative;
    color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    .workshop-content__card-heading {
        font-size: 16px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .workshop-content__card-description {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.workshop-content__card-link:hover .workshop-content__card,
.workshop-content__card-link:focus .workshop-content__card {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.workshop-content__card::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
    background-color: rgba(0, 0, 0, 0.4); /* 40% black */
    z-index: 1;
}

.workshop-content__card > * {
    position: relative;
    z-index: 2;
}

.workshop-content__card-find-out-more {
    position: absolute;
    right: 15px;
    bottom: 0;
    font-weight: 600;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.workshop-content__card-arrow {
    font-size: 1.2em;
    display: inline-block;
    transition: transform 0.2s;
}

.workshop-content__card-link:hover .workshop-content__card-find-out-more .workshop-content__card-arrow {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    #contact-us-tab {
        top: 55%;
    }
    #workshop-tab {
        top: 65%;
    }
    #contact-us-tab, #workshop-tab {
        padding: 15px 10px;
    }
    #contact-us-sidebar {
        top: 18%;
        width: 100%;
        right: -100%;
    }
    #workshop-sidebar {
        top: 12%;
        width: 100%;
        right: -100%;
    }
    #contact-us-sidebar.active, #workshop-sidebar.active {
        width: 100%;
    }

    /* #contact-us-tab { */
        /* transform: translateY(10%); */
        /* top: auto;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        writing-mode: horizontal-tb;
        border-radius: 8px 8px 0 0; */
    /* }

    #workshop-tab {
        transform: translateY(-20%);
    } */

}