/* CSS */
.gradient-text {
  background: linear-gradient(136deg, #880050 5%, #000000 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.gradient-text-white {
  background: linear-gradient(136deg, #880050 5%, #ffffff 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blur{
    backdrop-filter: blur(5px);
}
.qc-header.scrolling{
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: -3px 2px 2px rgb(0 0 0 / 7%);
}

.qc-menu .elementor-item {
    border-radius: 8px;
}

.qc-menu .elementor-item:hover {
    background-color: #D1D1D180;
}

.qc-menu .elementor-item.elementor-item-active{
    background-color: #D1D1D180;
}

.qc-form textarea,
.qc-form input{
    border: 1px solid #e1e1e1;
}

.qc-form input[type="submit"]{
    background-color: #880050;
    border: 1px solid transparent;
    background: linear-gradient(136deg, #880050 5%, #000000 20%);
    color: white;
}

.qc-form .gfield_required_text{
    display: none!important;
}

.qc-form label{
    color: #1F0011;
}

/* Awards Slider */
 .awards-slider-wrapper{
    display: flex;
    gap: 24px;
    align-items: stretch;
    flex-wrap: nowrap;
}

.content-block{
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 9;
    background-color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}
.content-block-header h2{
    font-size: 2rem;
    color: #1F0011;
    margin: 0;
}

.content-block-header p{
    color: #1F0011;
    font-size: 1.2rem;
    margin: 0;
}

.static-swiper{
    flex: 1;
    position: relative;
    max-width: 500px;
    z-index: 8;
    box-sizing: border-box;
}

.swiper-container, .swiper-wrapper, .swiper-slide {
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.award{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px 1px rgb(0 0 0 / 14%);
    margin: 20px;
    box-sizing: border-box;
    background: white;
    width: calc(100% - 40px);
    max-width: 420px;
    text-align: center;
}
.award svg{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.award h3{
    font-size: 4rem;
    color: #1F0011;
    margin: 8px 0;
    line-height: 1;
}
.award p{
    display: block;
    max-width: 70%;
    margin: 0 auto;
    color: #1F0011;
    font-size: 1.2rem;
    text-align: center;
}

/* default slide scaling (inactive smaller) */
.static-swiper .swiper-slide {
    transform: scale(0.9);
    transition: transform 0.28s ease;
}

.content-block-nav{
    display: flex;
    align-items: center;
    gap: 20px;
}
.content-block-nav .custom-arrow{
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.content-block-nav .custom-arrow svg{
    width: 28px;
    height: 28px;
    fill: #880050;
    stroke: #880050;
}

.content-block-nav .custom-arrow[disabled] svg{
    fill: #1F0011;
    stroke: #1F0011;
    opacity: 0.35;
}

/* responsive tweaks */
@media (max-width: 900px) {
    .awards-slider-wrapper{
        flex-direction: column;
        gap: 18px;
    }
    .content-block{
        padding: 24px;
        max-width: 100%;
    }
    .static-swiper{
        max-width: 100%;
    }
    .award{
        padding: 20px;
        margin: 12px;
        max-width: 420px;
    }
    .award h3{
        font-size: 2.6rem;
    }
    .award p{
        max-width: 100%;
        font-size: 1rem;
    }
    .content-block-header h2{
        font-size: 1.5rem;
    }
    .content-block-header p{
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-block{
        padding: 16px;
    }
    .award{
        padding: 14px;
        margin: 8px;
    }
    .award h3{
        font-size: 2.2rem;
    }
    .content-block-nav {
        justify-content: flex-start;
    }
    /* hide arrows on very small screens (swipe gesture is primary) */
    .content-block-nav .custom-arrow{
        display: none;
    }
    .award p{
        font-size: 0.95rem;
    }
    /* make swiper slide inactive scale almost full size to keep text readable */
    .static-swiper .swiper-slide {
        transform: scale(0.98);
    }
}

/* accessibility focus style */
.custom-arrow:focus {
    outline: 3px solid rgba(136,0,80,0.15);
    outline-offset: 3px;
    border-radius: 6px;
}

/* reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .static-swiper .swiper-slide,
    .award {
        transition: none !important;
    }
}