.pageBannerArea {
    width: 100%;
}
.pageBanner {
    max-width: 1200px;
    height: 170px;
    border-radius: 15px;
    background-image: url('/img/slider/roma-main-banner-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0 30px 0 50px;
    color: #fff;
    flex-direction: column;
}

.bannerT1 {
    font-family: Ubuntu;
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
}

.bannerT2 {
    font-family: Ubuntu;
    font-size: 18px;
    font-weight: 400;
}

.shortcutBtnArea{

}

.pageConArea {
    margin: 30px 0 15px 0;
}

.shortcutBtn{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.shortcutBtn a{
    position: relative;
    overflow: hidden;
    display: block;
    color: white;
    background: linear-gradient(90deg, rgb(30 30 30) 0%, rgba(105, 105, 105, 1) 100%);
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 6px;
    z-index: 1;
    isolation: isolate;
    transition: all 0.3s ease;
}

.shortcutBtn a::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(30 30 30) 0%, rgba(145, 145, 145) 50%);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.contactSubmitBtn {
    background: linear-gradient(90deg, #1e1e1e 0%, #7a0000 100%);
    color: white;
    transition: 0.5s ease;
    border: none;
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 500;
}

.contactSubmitBtn:hover {
    background: #ff0000;
    color: white;
    transition: 0.5s ease;
}

.contactSubmitBtn:disabled{
    opacity: 0.8;
    cursor: not-allowed;
}

.contactFormBox .alert{
    border-radius: 8px;
    font-size: 14px;
}

.contactSuccessModalContent{
    background: linear-gradient(135deg, #1e1e1e 0%, #4a0000 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
}

.contactSuccessModalContent .modal-title{
    font-weight: 600;
}

.contactSuccessModalContent .modal-body{
    color: rgba(255,255,255,0.88);
}

.contactFormBox .form-control,
.contactFormBox textarea{
    min-height: 46px;
}

.contactFormBox textarea{
    min-height: 140px;
    resize: vertical;
}

.shortcutBtn a:hover::before{
    opacity: 1;
}
.shortcutBtn a:hover span{
    transform: translateX(6px);
}
.shortcutBtn a span{
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.shortcutBtn a.shortActive{
    background: linear-gradient(90deg, #ff0000 0%, #7a0000 100%);
}

.contactArea {
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    min-height: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #ffffff;
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #ff0000 0%, rgb(30 30 30) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.pageConArea > .row,
.pageConArea > .row > .col-9,
.pageConArea > .row > .col-9 > .row,
.pageConArea > .row > .col-9 > .row > .col-4{
}

.pageConArea > .row > .col-9 > .row{
    width: 100%;
    align-items: stretch;
}

.pageConArea > .row > .col-9 > .row > .col-4{
    display: flex;
}

.ca_top {
    font-weight: 700;
    padding: 10px 0;
    font-size: 16px;
}


.ca_mid{
    flex-grow: 1;
}

.ca_mid_contact{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ca_bot{
    font-size: 13px;
    padding: 10px 0;
}

.ca_midElement {
    margin-bottom: 15px;
}

.ca_midBtn1 {
    padding: 8px 12px;
    width: 100%;
    background: #0a66c2;
    color: white;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    transition: 0.5s ease;
}
.ca_midBtn1:hover {
    background: #2281dc;
}

.ca_midBtn2 {
    padding: 8px;
    width: 100%;
    background: #e12121;
    color: white;
    border-radius: 50px;
    font-weight: 400;
    font-size: 15px;
    transition: 0.5s ease;
}

.ca_midBtn2:hover {
    background: #e03f3f;
}

.ca_bot a{
    display: inline-block;
    background: rgb(30 30 30);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 10px;
    transition: 0.5s ease;
}

.ca_bot a:hover{
    background: #ff0000;
}

@media (max-width: 768px){
    .pageConArea > .row,
    .pageConArea > .row > .col-9,
    .pageConArea > .row > .col-9 > .row,
    .pageConArea > .row > .col-9 > .row > .col-4{
        display: block;
    }

    .pageConArea > .row > .col-9 > .row > .col-4,
    .pageConArea > .row > .col-3{
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .contactArea{
        height: auto;
        min-height: auto;
        margin-bottom: 15px;
    }

    .pageBanner {
        padding: 30px;
    }
}
/* Misyon sayfası için madde işaretli liste stilleri */
.pageConArea ul{
    padding-left: 20px;
}

.pageConArea ul li{
    list-style-type: disc;
    margin-bottom: 6px;
}

.ordyFeatureGrid{
    margin-top: 25px;
    row-gap: 20px;
}

.ordyFeatureGrid > .col-6{
    display: flex;
}

.ordyFeatureCard{
    position: relative;
    width: 100%;
    min-height: 180px;
    padding: 20px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 40%, #fafafa 100%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

.ordyFeatureCard::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.ordyFeatureHead,
.ordyFeatureBody{
    position: relative;
    z-index: 1;
}

.ordyFeatureHead{
    display: flex;
    align-items: center;
    gap: 14px;
}

.ordyFeatureIcon{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(44 49 138 / 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.ordyFeatureIcon img{
    width: 35px;
    height: 35px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(46%) saturate(4464%) hue-rotate(336deg) brightness(103%) contrast(89%);
}

.ordyFeatureTitle{
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #2c318a;
}

.ordyFeatureBody{
    min-height: 80px;
    font-size: 15px;
    line-height: 1.7;
    color: #adadad;
    margin-top: 15px;
}

.ordyIntroMedia img{
    border-radius: 15px;
}

@media (max-width: 768px){
    .ordyFeatureGrid > .col-6{
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .ordyFeatureCard{
        min-height: 220px;
        border-radius: 18px;
        padding: 18px;
    }

    .ordyFeatureHead{
        min-height: 64px;
        gap: 12px;
    }

    .ordyFeatureIcon{
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .ordyFeatureTitle{
        font-size: 18px;
    }

    .ordyFeatureBody{
        min-height: auto;
        font-size: 14px;
        line-height: 1.6;
    }

    .ordyIntroMedia img{
        margin-bottom: 30px;
    }
}

.ordyBannerFlex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.ordyBannerText{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.ordyBannerLogo{
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 180px;

    /* glass effect */
    padding: 30px;
    border-radius: 15px;
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ordyBannerLogo img{
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
}

@media (max-width: 768px){
    .ordyBannerFlex{

    }
    .ordyBannerLogo{
        display: none;
    }
    .ordyBannerLogo img{
        display: none;
    }
    .ordyBannerText{
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .bannerT1 {
        font-family: Ubuntu;
        font-size: 30px;
        line-height: 40px;
        font-weight: 600;
    }

    .bannerT2 {
        font-family: Ubuntu;
        font-size: 15px;
        font-weight: 400;
    }
}
.sliderArea .carousel-item a{
    position: relative;
    overflow: hidden;
}

.sliderArea .carousel-item a::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(255, 0, 0, 0.30) 0%, rgba(255, 0, 0, 0.14) 38%, rgba(255, 0, 0, 0.06) 68%, rgba(255, 0, 0, 0) 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.sliderArea .carousel-item a .sliderHoverBtn{
    position: absolute;
    left: 50%;
    bottom: 75px;
    transform: translateX(-50%) translateY(18px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff0000 0%, #b30000 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 20px rgba(179, 0, 0, 0.25);
    pointer-events: none;
}

.sliderArea .carousel-item a:hover .sliderHoverBtn,
.sliderArea .carousel-item a:focus-visible .sliderHoverBtn,
.sliderArea .carousel-item a:active .sliderHoverBtn{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.sliderArea .carousel-item a:hover::after,
.sliderArea .carousel-item a:focus-visible::after,
.sliderArea .carousel-item a:active::after{
    transform: translateY(0);
    opacity: 1;
}