:root {
    --bg-bordeaux: #320202;
    --text-white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.4);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.services {
    background-color: #650000;
    color: var(--text-white);
    padding: 100px 88px;
    box-sizing: border-box;
    font-family: sans-serif;
}

@media (max-width: 1023px) {
    .services {
        padding: 60px 24px;
    }
}

.services__container {
    max-width: 119.375rem;
    margin: 0 auto;
}

.services__top-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.services__super-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0.8;
}

.services__title-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
}

.services__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .services__grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .services__menu {
        flex: 0 0 65%;
    }

    .services__preview {
        flex: 0 0 28%;
    }
}

.services__item {
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services__header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

.services__header h5 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dim);
    transition: var(--transition);
    line-height: 1.2;
}

.services__icon {
    width: clamp(1.5rem, 3vw, 2.8rem);
    height: auto;
    color: var(--text-white);
    opacity: 0;
    transform: translate(-15px, 15px);
    transition: var(--transition);
}

.services__item.active .services__header h5 {
    color: var(--text-white);
}

.services__item.active .services__icon {
    opacity: 1;
    transform: translate(0, 0);
}

.services__img-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.services__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services__description {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    animation: fadeInDesc 0.6s ease forwards;
}

.services__display {
    display: none;
}

.services__display.active {
    display: block;
}

.services__content-mobile {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
}

@media (max-width: 1023px) {
    .services__item.active .services__content-mobile {
        height: auto;
        opacity: 1;
        padding-bottom: 30px;
    }

    .services__preview {
        display: none;
    }

    .services__header h5 {
        font-size: 2rem;
    }
}

@keyframes fadeInDesc {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*scroll*/

.discover-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 40px 80px;
    margin-bottom: 80px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 20px;
}

.discover-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.discover-link:hover {
    opacity: 0.7;
}

.arrow {
    margin-left: 10px;
    color: #dedede;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.discover-link:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .discover-container {
        flex-direction: column-reverse;
        align-items: flex-end;
        padding: 20px;
        margin-bottom: 30px;
    }

    .line {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
    }
}

/*swiper*/
.client-section {
    display: flex;
    background: #f0f0ed;
    border: 1px solid #e0e0e0;
    align-items: stretch;
    overflow: hidden;
}

.client-title {
    background: #e2e2de;
    padding: 50px 70px;
    display: flex;
    align-items: center;
    min-width: 250px;
}

.client-title h6 {
    margin: 0;
    font-size: 26px;
    color: #708090;
    font-weight: 400;
}

.client-carousel {
    flex-grow: 1;
    background: #fafafa;
}

.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 120px;
    border-right: 1px solid #e0e0e0;
    padding: 10px;
}

.swiper-slide img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .client-section {
        flex-direction: column;
    }

    .client-title {
        min-width: auto;
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    .swiper-slide {
        height: 100px;
    }

    .Footer_quickLinks {
        min-width: 100%;
    }
}

#loader {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background: #9e0800;
    top: 0;
    left: 0;
    z-index: 9999;
}
.Footer_quickLinks ul{
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 6px 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.Footer_quickLinks a{
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    transition: color .2s ease;
}

.Footer_quickLinks a:hover{
    color: #000;
}

.Footer_quickLinks {
    min-width: 300px;
}

.color-title {
    color: #000;
}

.css-1pbbmvp-control {
    -webkit-box-align: center;
    align-items: center;
    cursor: default;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    min-height: 38px;
    outline: none;
    position: relative;
    transition: 100ms;
    border-color: rgb(127, 146, 158);
    border-radius: 40px;
    border-style: solid;
    border-width: 1px;
    box-shadow: none;
    box-sizing: border-box;
    padding-inline: 32px;
    padding-block: 4px;
    background: transparent;
}

.css-1wxwmex {
    -webkit-box-align: center;
    align-items: center;
    display: grid;
    flex: 1 1 0%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    padding: 2px 8px;
    box-sizing: border-box;
    padding-inline: 0px;
    padding-block: 0px;
}

.css-1o7tcmr-placeholder {
    grid-area: 1 / 1 / 2 / 3;
    color: rgb(85, 110, 126);
    margin-left: 2px;
    margin-right: 2px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: var(--manrope);
    font-weight: 400;
}

.css-19bb58m {
    visibility: visible;
    flex: 1 1 auto;
    display: inline-grid;
    grid-area: 1 / 1 / 2 / 3;
    grid-template-columns: 0px min-content;
    margin: 2px;
    padding-bottom: 2px;
    padding-top: 2px;
    color: rgb(51, 51, 51);
    box-sizing: border-box;
}

.css-19bb58m::after {
    content: attr(data-value) " ";
    visibility: hidden;
    white-space: pre;
    grid-area: 1 / 2;
    font: inherit;
    min-width: 2px;
    border: 0px;
    margin: 0px;
    outline: 0px;
    padding: 0px;
}

.css-1wy0on6 {
    -webkit-box-align: center;
    align-items: center;
    align-self: stretch;
    display: flex;
    flex-shrink: 0;
    box-sizing: border-box;
}

.css-1uei4ir-indicatorSeparator {
    align-self: stretch;
    width: 1px;
    background-color: rgb(204, 204, 204);
    margin-bottom: 8px;
    margin-top: 8px;
    box-sizing: border-box;
    display: none;
}

.css-1xc3v61-indicatorContainer {
    display: flex;
    transition: color 150ms;
    color: rgb(204, 204, 204);
    padding: 8px;
    box-sizing: border-box;
}

.css-8mmkcg {
    display: inline-block;
    fill: currentcolor;
    line-height: 1;
    stroke: currentcolor;
    stroke-width: 0;
}

.AddressBlock_textResolver__u_PIa {
    margin-top: 20px;
}

.AddressBlock_iconItem__D9Q23 {
    display: flex;
    align-items: end;
    gap: 1rem;
}

.AddressBlock_iconItem__D9Q23 .AddressBlock_iconWrapper__jZd2I {
    display: flex;
    padding: .5rem;
    align-items: center;
    justify-content: center;
    background-color: #9e0800;
    border-radius: 50%;
}

.AddressBlock_iconWrapper__jZd2I .AddressBlock_icon__8KIqO {
    width: 1rem;
    height: 1rem;
    color: #00263e;
}

.Icon_icon__1WKUD {
    color: currentColor;
    display: inline-block;
    height: 1.5rem;
    box-sizing: border-box;
    width: 1.5rem;
}

.AddressBlock_contentContainer__xjQo7 {
    display: inline-block;
    width: 100%;
}

.about .ArticleContent_section__gyz55 {
    padding-block: 4.75rem;
}

.about .line {
    transform: translateX(6.25rem);
    color: #2a4a5e;
    font-size: 30px;
}

.about .CTA_container__ZPcv7 {
    border-top: .0625rem solid #cac9c4;
}

.about .about-title{
    font: var(--font-h6-light);
    color: #2a4a5e;
}

.about .CTA_container__ZPcv7 {
    align-items: flex-start;
}

.banner-title {
    font-size: 40px;
    line-height: 48px;
}

.title-umut {
    color: #2a4a5e !important;
    margin-bottom: 10px;
    width: 100%;
    display: inline-block;
}

.Input_Input__gbbYg::placeholder {
    color: #9a9a9a;
}

.ArticleContent_info__Bmf5X h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2a4a5e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ArticleContent_info__Bmf5X ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.ArticleContent_info__Bmf5X ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
}

.quote-icon {
    width: 1.5rem;
    height: 2rem !important;
}

.quote-title {
    color: #a80001;
    font-size: 20px;
    display: inline-block
}

.Application_section__umut {
    padding: 100px 0;
    background-color: #ffffff;
}

.Application_container__umut {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Application_grid__umut {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.Application_title__umut {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.Application_subtitle__umut {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.Application_form__umut {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.Form_fieldGroup__umut {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.Form_field__umut {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.Form_field__umut label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Form_field__umut input, 
.Form_field__umut select, 
.Form_field__umut textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.Form_field__umut input:focus, 
.Form_field__umut select:focus, 
.Form_field__umut textarea:focus {
    outline: none;
    border-color: #a80001; /* İstediğin renk */
    background: #fff;
}

.File_label__umut {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px dashed #e0e0e0;
    cursor: pointer;
    justify-content: center;
    transition: 0.3s;
}

.File_label__umut:hover {
    background: #f0f0f0;
    border-color: #333;
}

input[type="file"] {
    display: none;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .Application_grid__umut {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .Form_fieldGroup__umut {
        grid-template-columns: 1fr;
    }
    .Application_title__umut {
        font-size: 2.2rem;
    }
}