/* Booking System Custom Styles */

/* Base Typography for Sections */
.demo-plugin, .demo-theme-option, .other-feature {
    padding: 100px 0;
    background-color: var(--espartyox-white, #fff);
}

.demo-plugin h3, .other-feature h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--espartyox-black, #001A3D);
    font-family: var(--espartyox-font2, "Jost", sans-serif);
    position: relative;
}

.demo-plugin h3::after, .other-feature h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--espartyox-base, #212ED0);
}

/* Exclusive Features (.demo-plugin-content) */
.demo-plugin-content .row {
    row-gap: 40px;
}

.demo-plugin-content .item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--espartyox-white, #fff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--espartyox-border-color, #d9d9d9);
}

.demo-plugin-content .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 46, 208, 0.1);
    border-color: var(--espartyox-base, #212ED0);
}

.demo-plugin-content .item img {
    max-width: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.demo-plugin-content .plugin-info h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--espartyox-black, #001A3D);
    font-family: var(--espartyox-font2, "Jost", sans-serif);
}

.demo-plugin-content .plugin-info .desc {
    color: var(--espartyox-text, #737373);
    font-size: 16px;
    line-height: 1.6;
}

/* Feature Services (.feature-services) */
.feature-services {
    padding: 80px 0;
    border-top: 1px solid var(--espartyox-gray, #DDDDDD);
}

.feature-services:nth-child(even) {
    background-color: var(--espartyox-gray3, #F0F7F3);
}

.feature-services .row {
    align-items: center;
}

.feature-services .col-left h3, .feature-services .col-right h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--espartyox-black, #001A3D);
    margin-bottom: 20px;
    font-family: var(--espartyox-font2, "Jost", sans-serif);
}

.feature-services .col-left h3 span, .feature-services .col-right h3 span {
    color: var(--espartyox-base, #212ED0);
}

.feature-services .desc {
    color: var(--espartyox-text, #737373);
    font-size: 18px;
    line-height: 1.8;
}

.feature-services img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-services .col-pull-right img {
    margin-left: auto;
    display: block;
}

/* Other Features (.other-content) */
.other-feature {
    background-color: var(--espartyox-black2, #030A15);
}

.other-feature h3 {
    color: var(--espartyox-white, #fff);
}

.other-feature h3::after {
    background-color: var(--espartyox-base, #212ED0);
}

.other-content .row {
    row-gap: 30px;
}

.other-content .item {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.other-content .item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--espartyox-base, #212ED0);
}

.other-content .item img {
    max-width: 60px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* Add filter for icons that are not naturally white in dark mode */
.other-content .item:not(.more) img {
    filter: brightness(0) invert(1);
}

.other-content .item:hover img {
    transform: scale(1.1);
}

.other-content .item h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--espartyox-white, #fff);
    margin-bottom: 15px;
    font-family: var(--espartyox-font2, "Jost", sans-serif);
}

.other-content .item .desc {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
}

.other-content .item.more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--espartyox-base, #212ED0);
    border: none;
}

.other-content .item.more h5 {
    margin-bottom: 0;
}
