/* =====================================================
   HEADER SAĞ BUTONLAR
===================================================== */

.header-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 25px;
}


/* =====================================================
   AKILLI POMPA SEÇİCİ
===================================================== */

.smart-pump-btn {
    position: relative;
    height: 55px;
    padding: 0px 9px 0 9px;
    display: flex;
    align-items: center;
    gap: 0px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 57px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #fff;
    font-family: inherit;
    /* font-size: 13px; */
    /* font-weight: 600; */
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}


.smart-pump-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
}


.smart-pump-icon {
    position: relative;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff7b32;

    color: #fff;

    font-size: 14px;

    box-shadow:
        0 0 15px rgba(255, 123, 50, 0.65),
        0 0 30px rgba(255, 123, 50, 0.30);
}


.smart-pump-icon::before {
    content: "";

    position: absolute;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255, 123, 50, 0.15);

    z-index: -1;
}


/* =====================================================
   DİL SEÇİMİ
===================================================== */

.header-language {
    position: relative;
}


.language-current {
    height: 52px;
    min-width: 72px;

    padding: 0 17px;

    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.10);

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}


.language-current:hover {
    background: rgba(255, 255, 255, 0.18);
}


.language-current i {
    font-size: 9px;

    transition: transform 0.3s ease;
}


.header-language.active .language-current i {
    transform: rotate(180deg);
}


/* DİL DROPDOWN */

.language-dropdown {
    position: absolute;

    top: calc(100% + 9px);
    right: 0;

    width: 76px;

    padding: 7px;

    border-radius: 18px;

    background: rgba(20, 25, 30, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.10);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-7px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;

    z-index: 9999;
}


.header-language.active .language-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.language-dropdown a {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}


.language-dropdown a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ff7b32;
}


/* =====================================================
   AKILLI POMPA MODAL
===================================================== */

.smart-pump-modal {
    position: fixed;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 999999;
}


.smart-pump-modal.active {
    opacity: 1;
    visibility: visible;
}


.smart-pump-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(4, 10, 15, 0.68);

    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}


.smart-pump-modal-content {
    position: relative;

    width: 100%;
    max-width: 560px;

    padding: 42px;

    border-radius: 26px;

    background: #fff;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.35s ease;

    z-index: 2;
}


.smart-pump-modal.active .smart-pump-modal-content {
    transform: translateY(0) scale(1);
}


/* KAPAT */

.smart-pump-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #f3f3f3;

    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.25s ease;
}


.smart-pump-close:hover {
    background: #ff7b32;
    color: #fff;

    transform: rotate(90deg);
}


/* MODAL BAŞLIK */

.smart-pump-modal-head {
    display: flex;
    align-items: center;
    gap: 17px;

    padding-right: 40px;

    margin-bottom: 25px;
}


.smart-pump-modal-icon {
    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff7b32;

    color: #fff;

    font-size: 18px;

    box-shadow: 0 8px 25px rgba(255, 123, 50, 0.35);
}


.smart-pump-small-title {
    display: block;

    margin-bottom: 3px;

    color: #ff7b32;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.smart-pump-modal-head h3 {
    margin: 0;

    color: #111;

    font-size: 26px;
    font-weight: 600;
}


.smart-pump-modal-body p {
    margin: 0 0 25px;

    color: #666;

    font-size: 14px;
    line-height: 1.8;
}


/* BAŞLA BUTONU */

.smart-pump-start-btn {
    min-height: 52px;

    padding: 0 22px;

    border-radius: 14px;

    background: #111;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


.smart-pump-start-btn:hover {
    background: #ff7b32;
    color: #fff;
}


.smart-pump-start-btn i {
    transition: transform 0.3s ease;
}


.smart-pump-start-btn:hover i {
    transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media only screen and (max-width: 1199px) {

    .smart-pump-btn {
        padding-right: 15px;
    }

    .smart-pump-btn > span:last-child {
        display: none;
    }

}


@media only screen and (max-width: 991px) {

    .header-btn {
        margin-left: auto;
        margin-right: 15px;
    }

    .smart-pump-btn {
        width: 46px;
        height: 46px;
        padding: 5px;
    }

    .smart-pump-icon {
        width: 34px;
        height: 34px;
    }

    .language-current {
        height: 46px;
        min-width: 62px;
    }

}


@media only screen and (max-width: 575px) {

    .smart-pump-modal-content {
        padding: 35px 25px 25px;
        border-radius: 20px;
    }

    .smart-pump-modal-head h3 {
        font-size: 21px;
    }

}




































/* =====================================================
   SEARCH POPUP
===================================================== */

.search-modal-content {
    max-width: 720px;
    padding: 55px 55px 45px;
}


/* BAŞLIK */

.search-modal-head {
    margin-bottom: 30px;
}

.search-small-title {
    display: block;
    margin-bottom: 8px;

    color: #ff7b32;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.search-modal-head h3 {
    margin: 0 0 10px;

    color: #111;

    font-size: 36px;
    font-weight: 600;

    letter-spacing: -1px;
}

.search-modal-head p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   INPUT
===================================================== */

.search-input-wrapper {
    position: relative;

    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;

    background: #f5f5f5;

    border: 1px solid #eeeeee;
    border-radius: 18px;

    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    background: #fff;

    border-color: rgba(255, 123, 50, 0.5);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06),
        0 0 0 4px rgba(255, 123, 50, 0.08);
}


/* SEARCH ICON */

.search-input-icon {
    position: absolute;

    left: 24px;

    color: #ff7b32;

    font-size: 18px;

    pointer-events: none;
}


/* INPUT */

.search-input-wrapper input {
    width: 100%;
    height: 100%;

    padding: 0 85px 0 58px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #111;

    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
}

.search-input-wrapper input::placeholder {
    color: #999;
}


/* =====================================================
   SEARCH BUTTON
===================================================== */

.search-submit-btn {
    position: absolute;

    right: 9px;

    width: 54px;
    height: 54px;

    border: 0;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff7b32;

    color: #fff;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background: #111;

    transform: translateX(2px);
}


/* =====================================================
   POPÜLER ARAMALAR
===================================================== */

.search-suggestions {
    margin-top: 20px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}

.search-suggestions > span {
    margin-right: 4px;

    color: #999;

    font-size: 12px;
    font-weight: 500;
}

.search-suggestions a {
    padding: 7px 13px;

    background: #f4f4f4;

    border-radius: 20px;

    color: #555;

    font-size: 11px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.25s ease;
}

.search-suggestions a:hover {
    background: #111;
    color: #fff;
}


/* =====================================================
   MOBILE
===================================================== */

@media only screen and (max-width: 575px) {

    .search-modal-content {
        padding: 45px 22px 28px;
    }

    .search-modal-head h3 {
        font-size: 27px;
    }

    .search-modal-head p {
        font-size: 13px;
    }

    .search-input-wrapper {
        height: 62px;
        border-radius: 15px;
    }

    .search-input-icon {
        left: 19px;
        font-size: 16px;
    }

    .search-input-wrapper input {
        padding-left: 48px;
        padding-right: 70px;
        font-size: 14px;
    }

    .search-submit-btn {
        width: 46px;
        height: 46px;
        right: 8px;
        border-radius: 11px;
    }

}








/* SEARCH MODAL KONUM FIX */
.smart-pump-modal {
    position: fixed !important;
    inset: 0 !important;
        background: #000000db;
    width: 100% !important;
    height: 100vh !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px !important;

    z-index: 9999999 !important;

    overflow-y: auto;
}


/* POPUP KUTUSU */
.smart-pump-modal-content {
    position: relative !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    margin: auto !important;

    transform: translateY(25px) scale(0.97) !important;
}


/* AÇILDIĞINDA */
.smart-pump-modal.active .smart-pump-modal-content {
    transform: translateY(0) scale(1) !important;
}


/* OVERLAY */
.smart-pump-modal-overlay {
    position: fixed !important;
    inset: 0 !important;

    width: 100%;
    height: 100%;

    background: rgba(4, 10, 15, 0.72);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    z-index: 1;
}


/* İÇERİK OVERLAY ÜSTÜNDE */
.search-modal-content {
    position: relative !important;
    z-index: 2 !important;

    width: 100%;
    max-width: 720px;

    max-height: calc(100vh - 60px);
}








.header-search-btn {
    width: 48px;
    height: 48px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #fff;
    font-size: 15px;

    cursor: pointer;
    transition: all 0.3s ease;
}

.header-search-btn:hover {
    background: #ff7b32;
    border-color: #ff7b32;
    color: #fff;
    transform: translateY(-2px);
}

.header-search-btn i {
    transition: transform 0.3s ease;
}

.header-search-btn:hover i {
    transform: scale(1.08);
}















/* =====================================================
   HERO ALT KURUMSAL BANT
===================================================== */

.soylu-hero-strip {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 34px 0;
    z-index: 5;
}

.soylu-hero-strip-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 55px;
}


/* =========================
   SOL İSTATİSTİK
========================= */

.soylu-strip-stat {
    display: flex;
    align-items: center;

    min-height: 62px;

    border: 1px solid #202020;
}

.soylu-strip-number {
    height: 60px;
    min-width: 100px;

    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #202020;

    color: #161616;

    font-size: 35px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.soylu-strip-number span {
    margin-left: 2px;
}

.soylu-strip-text {
    padding: 0 22px;

    color: #202020;

    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}


/* =========================
   SAĞ LOGO / SLOGAN
========================= */

.soylu-strip-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.soylu-strip-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soylu-strip-logo img {
    display: block;

    width: auto;
    max-width: 85px;
    height: 58px;

    object-fit: contain;
}


/* DİKEY ÇİZGİ */

.soylu-strip-line {
    width: 1px;
    height: 48px;

    background: #d8d8d8;
}


/* SLOGAN */

.soylu-strip-slogan {
    display: flex;
    flex-direction: column;

    color: #161616;
}

.soylu-strip-slogan strong {
    margin-bottom: 2px;

    font-size: 15px;
    line-height: 1.15;
    font-weight: 700;
}

.soylu-strip-slogan span {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 500;

    letter-spacing: 0.2px;
}


/* =========================
   RESPONSIVE
========================= */

@media only screen and (max-width: 991px) {

    .soylu-hero-strip {
        padding: 25px 0;
    }

    .soylu-hero-strip-inner {
        justify-content: center;
        gap: 35px;
    }

}


@media only screen and (max-width: 767px) {

    .soylu-hero-strip-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;
    }

    .soylu-strip-stat {
        width: 100%;
    }

    .soylu-strip-brand {
        width: 100%;
    }

}


@media only screen and (max-width: 480px) {

    .soylu-strip-number {
        min-width: 82px;
        font-size: 29px;
    }

    .soylu-strip-text {
        padding: 0 15px;
        font-size: 11px;
    }

    .soylu-strip-logo img {
        max-width: 65px;
        height: 48px;
    }

    .soylu-strip-slogan strong {
        font-size: 13px;
    }

    .soylu-strip-slogan span {
        font-size: 10px;
    }

}


/* =====================================================
   HERO ÜZERİ SAĞ ALT KURUMSAL BİLGİ
===================================================== */

.hero {
    position: relative;
}


/* ANA ALAN */



.hero-corporate-badge {
    position: absolute !important;
    left: auto !important;
   /* right: 1% !important;*/
    top: 77% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

/* =====================================================
   30+ BÖLÜMÜ
===================================================== */

.hero-corporate-stat {
    height: 62px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(10, 15, 20, 0.25);

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


.hero-corporate-number {
    height: 100%;

    min-width: 88px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255, 255, 255, 0.35);

    color: #fff;

    font-size: 31px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -1px;
}


.hero-corporate-number span {
    margin-left: 10px;

    color: #ff7b32;
}


.hero-corporate-text {
    padding: 0 18px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 11px;
    line-height: 1.35;
    font-weight: 500;

    letter-spacing: 0.3px;
}


/* =====================================================
   LOGO + SLOGAN
===================================================== */

.hero-corporate-brand {
    height: 62px;

    display: flex;
    align-items: center;

    padding: 0 17px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(10, 15, 20, 0.25);

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


.hero-corporate-logo {
    padding-right: 15px;
    margin-right: 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}


.hero-corporate-logo img {
    display: block;

    width: auto;
    height: 40px;

    object-fit: contain;

    /* SVG siyahsa beyaz yapmak için */
    /* filter: brightness(0) invert(1); */
}


.hero-corporate-slogan {
    display: flex;
    flex-direction: column;

    min-width: 130px;
}


.hero-corporate-slogan strong {
    margin-bottom: 2px;

    color: #fff;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.5px;
}


.hero-corporate-slogan span {
    color: rgba(255, 255, 255, 0.7);

    font-size: 9px;
    line-height: 1.3;
    font-weight: 500;

    letter-spacing: 0.4px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media only screen and (max-width: 1399px) {

    .hero-corporate-badge {
        right: 30px;
        bottom: 100px;
    }

}


@media only screen and (max-width: 1199px) {

    .hero-corporate-badge {
        right: 25px;
    }

    .hero-corporate-brand {
        display: none;
    }

}


@media only screen and (max-width: 767px) {

    .hero-corporate-badge {
        display: none;
    }

}




















/* =====================================================
   SOYLU DÖKÜM - NEDEN BİZ
===================================================== */

.soylu-benefits {
    position: relative;
    overflow: hidden;

    padding: 110px 0 0;
}


/* -----------------------------------------------------
   SOL İÇERİK
----------------------------------------------------- */

.soylu-benefits .our-benefits-content {
    position: relative;
    z-index: 5;
    padding-bottom: 85px;
}


/* küçük başlık */

.soylu-benefits .section-title h3 {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 7px 15px;

    border: 1px solid rgba(15, 35, 50, 0.08);
    border-radius: 30px;

    color: #142b3c;
    font-size: 12px;
    font-weight: 500;

    background: rgba(255,255,255,.45);
}

.soylu-benefits .section-title h3:before {
    content: "";
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #ff7b32;
}


/* ana başlık */

.soylu-benefits .section-title h2 {
    margin-bottom: 17px;
    color: #102a3d;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -1.7px;
}


/* açıklama */

.soylu-benefits .section-title > p {
    max-width: 610px;
    margin: 0;

    color: #68747d;

    font-size: 15px;
    line-height: 1.75;
}


/* -----------------------------------------------------
   ORTA ALAN
----------------------------------------------------- */

.soylu-benefits .benefits-content-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;

    margin-top: 38px;
}


/* -----------------------------------------------------
   SOL KART
----------------------------------------------------- */

.soylu-benefits .benefits-award-box {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;




}


.soylu-benefits .benefit-award-image {

}


.soylu-benefits .benefit-award-content span {
    display: block;

    margin-bottom: 5px;

    color: #ff7b32;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


.soylu-benefits .benefit-award-content h3 {
    margin: 0;

    color: #102a3d;

    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
}


/* -----------------------------------------------------
   SAĞ MADDELER
----------------------------------------------------- */

.soylu-benefits .benefits-body-item-list {
    display: flex;
    flex-direction: column;
}


.soylu-benefits .benefits-body-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;

    padding: 4px 0 24px;
}


.soylu-benefits .benefits-body-item + .benefits-body-item {
    padding-top: 24px;

    border-top: 1px solid rgba(15, 35, 50, .10);
}


.soylu-benefits .benefits-body-item .icon-box {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #ff7b32;

    color: #fff;
    font-size: 17px;
}


.soylu-benefits .benefits-body-item-content h3 {
    margin: 0 0 7px;

    color: #102a3d;

    font-size: 17px;
    font-weight: 600;
}


.soylu-benefits .benefits-body-item-content p {
    max-width: 270px;
    margin: 0;

    color: #707b83;

    font-size: 13px;
    line-height: 1.55;
}


/* -----------------------------------------------------
   ALT İLETİŞİM
----------------------------------------------------- */

.soylu-benefits .benefits-content-footer {
    display: flex;
    align-items: center;
    gap: 38px;

    margin-top: 38px;
    padding-top: 35px;

    border-top: 1px solid rgba(15, 35, 50, .09);
}


.soylu-benefits .about-contact-box {
    display: flex;
    align-items: center;
    gap: 13px;
}


.soylu-benefits .about-contact-box .icon-box {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: rgba(255, 123, 50, .12);

    color: #ff7b32;
    font-size: 17px;
}


.soylu-benefits .about-contact-box-content p {
    margin: 0 0 2px;

    color: #78828a;

    font-size: 11px;
}


.soylu-benefits .about-contact-box-content h3 {
    margin: 0;

    font-size: 15px;
    font-weight: 600;
}


.soylu-benefits .about-contact-box-content h3 a {
    color: #102a3d;
    text-decoration: none;
}


/* -----------------------------------------------------
   SAĞ GÖRSEL
----------------------------------------------------- */

.soylu-benefits-image {
    position: relative;

    height: 685px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* görsel */

.soylu-benefits-image figure {
    position: relative;

    z-index: 5;

    margin: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.soylu-benefits-image figure img {
    position: relative;

    z-index: 5;

    display: block;

    width: auto;
    max-width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;
}


/* =====================================================
   ARKADAKİ OVAL HALKALAR
===================================================== */

.benefit-rings {
    position: absolute;

    left: 50%;
    bottom: -130px;

    width: 610px;
    height: 610px;

    transform: translateX(-50%);

    z-index: 1;

    pointer-events: none;
}


.benefit-rings .ring {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border-style: solid;

    pointer-events: none;
}


/* dış halka */

.benefit-rings .ring-1 {
    width: 610px;
    height: 610px;

    border-width: 48px;
    border-color: rgba(16, 42, 61, .035);
}


/* 2 */

.benefit-rings .ring-2 {
    width: 490px;
    height: 490px;

    border-width: 40px;
    border-color: rgba(16, 42, 61, .045);
}


/* 3 */

.benefit-rings .ring-3 {
    width: 380px;
    height: 380px;

    border-width: 32px;
    border-color: rgba(16, 42, 61, .055);
}


/* iç */

.benefit-rings .ring-4 {
    width: 280px;
    height: 280px;

    border-width: 26px;
    border-color: rgba(255, 123, 50, .055);
}


/* -----------------------------------------------------
   DEKORATİF NOKTA
----------------------------------------------------- */



/* =====================================================
   TABLET
===================================================== */

@media only screen and (max-width: 1199px) {

    .soylu-benefits {
        padding-top: 80px;
    }

    .soylu-benefits .section-title h2 {
        font-size: 40px;
    }

    .soylu-benefits .our-benefits-content {
        padding-bottom: 60px;
    }

    .soylu-benefits-image {
        height: 560px;
    }

    .benefit-rings {
        width: 520px;
        height: 520px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media only screen and (max-width: 991px) {

    .soylu-benefits {
        padding: 70px 0 0;
    }

    .soylu-benefits .our-benefits-content {
        padding-bottom: 45px;
    }

    .soylu-benefits .benefits-content-body {
        grid-template-columns: 1fr;
    }

    .soylu-benefits .benefits-award-box {
        min-height: 170px;
    }

    .soylu-benefits-image {
        height: 520px;
    }

    .benefit-rings {
        width: 500px;
        height: 500px;
        bottom: -100px;
    }

}


@media only screen and (max-width: 767px) {

    .soylu-benefits .benefit-award-image {width: 200px;}

    .soylu-benefits {
        padding-top: 55px;
    }

    .soylu-benefits .section-title h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .soylu-benefits .section-title h2 br {
        display: none;
    }

    .soylu-benefits .section-title > p {
        font-size: 14px;
    }

    .soylu-benefits .benefits-content-footer {
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;
    }

    .soylu-benefits-image {
        height: 440px;
    }

    .benefit-rings {
        width: 430px;
        height: 430px;
        bottom: -70px;
    }

    .benefit-rings .ring-1 {
        width: 430px;
        height: 430px;
        border-width: 35px;
    }

    .benefit-rings .ring-2 {
        width: 345px;
        height: 345px;
        border-width: 30px;
    }

    .benefit-rings .ring-3 {
        width: 265px;
        height: 265px;
        border-width: 25px;
    }

    .benefit-rings .ring-4 {
        width: 190px;
        height: 190px;
        border-width: 20px;
    }

}


@media only screen and (max-width: 480px) {

    .soylu-benefits-image {
        height: 390px;
    }

    .benefit-rings {
        width: 380px;
        height: 380px;
    }

}



























/* =============================================
   SOYLU ÜRETİM SLIDER
============================================= */

.soylu-service-slider {
    position: relative;
    width: 100%;
}

.soylu-service-slider .swiper {
    overflow: hidden;
    padding: 5px 2px 25px;
}

.soylu-service-slider .swiper-slide {
    height: auto;
}

.soylu-service-slider .service-item-gold {
    height: 100%;
    min-height: 365px;
}


/* NAVIGATION */

.soylu-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    margin-top: 25px;
}

.soylu-service-prev,
.soylu-service-next {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #e7e7e7;
    border-radius: 50%;

    background: #fff;
    color: #102a3d;

    font-size: 13px;

    cursor: pointer;

    transition: all .3s ease;
}

.soylu-service-prev:hover,
.soylu-service-next:hover {
    background: #ff7625;
    border-color: #ff7625;
    color: #fff;
}


/* PASİF OK */

.soylu-service-prev.swiper-button-disabled,
.soylu-service-next.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}


/* MOBILE */

@media only screen and (max-width: 767px) {

    .soylu-service-slider .service-item-gold {
        min-height: 330px;
    }

    .soylu-slider-navigation {
        justify-content: center;
        margin-top: 15px;
    }

}

/* ÜRETİM SLIDER NOKTALARI */

.soylu-service-slider .swiper {
    padding-bottom: 60px;
}

.soylu-service-pagination {
    position: absolute !important;
    left: 50% !important;
    bottom: 5px !important;

    width: auto !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transform: translateX(-50%);
}

.soylu-service-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    background: #c9cdd1;
    opacity: 1;

    border-radius: 50%;

    transition: all .3s ease;
}

.soylu-service-pagination .swiper-pagination-bullet-active {
    width: 24px;

    background: #ff7625;

    border-radius: 20px;
}












/* ==================================================
   SOYLU DÖKÜM - PRODUCT SLIDER
================================================== */

.soylu-products-section {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
        background: #f7f7f8;
}


/* Slider alanı */
.soylu-product-slider {
    width: 100%;
    margin-top: 60px;
    padding-left: max(30px, calc((100vw - 1320px) / 2));
}


/* Swiper */
.soyluProductSwiper {
    width: 100%;
    overflow: visible;
}

.soyluProductSwiper .swiper-wrapper {
    align-items: stretch;
}

.soyluProductSwiper .swiper-slide {
    height: auto;
}


/* ==================================================
   PRODUCT CARD
================================================== */

.soylu-product-card {
    position: relative;
    height: 100%;
    min-height: 430px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border: 1px solid rgba(15, 29, 39, 0.06);
    border-radius: 4px;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.soylu-product-card:hover {
transform: translateY(-7px);
    border-color: rgb(235 235 235 / 22%);
    box-shadow: 0 22px 50px rgb(15 29 39 / 5%);
}


/* ==================================================
   PRODUCT IMAGE
================================================== */

.soylu-product-image {
    position: relative;


    display: flex;
    align-items: center;
    justify-content: center;

    padding: 28px;

    background: #fff;

    overflow: hidden;
}





.soylu-product-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .5s ease;
}


.soylu-product-card:hover .soylu-product-image img {
    transform: scale(1.06);
}


/* ==================================================
   PRODUCT CONTENT
================================================== */

.soylu-product-content {
    position: relative;

    flex: 1;

    padding: 25px 25px 27px;

    border-top: 1px solid #f0f0f0;
}


/* kategori */
.soylu-product-category {
    display: block;
    margin-bottom: 0px;
    color: #94A3A8;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.3px;
}


/* ürün başlığı */
.soylu-product-content h3 {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}


.soylu-product-content h3 a {
       color: #1e1e1e;

    text-decoration: none;

    transition: color .3s ease;
}


.soylu-product-content h3 a:hover {
    color: #ff7b32;
}


/* ürün kodu */
.soylu-product-code {
    position: absolute;

    left: 25px;
    bottom: 22px;

    color: #8b9399;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .5px;
}


/* turuncu çizgi */
.soylu-product-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #ff7b32;

    transition: width .45s ease;
}


.soylu-product-card:hover::after {
    width: 100%;
}


/* ==================================================
   ALT ALAN
================================================== */

.soylu-products-bottom {
    margin-top: 55px;

    padding-top: 30px;

    border-top: 1px solid rgba(15, 29, 39, .10);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.soylu-products-bottom p {
    margin: 0;

    color: #6e7478;

    font-size: 15px;
}


.soylu-products-bottom p strong {
    color: #17212a;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199px) {

    .soylu-products-section {
        padding: 90px 0 75px;
    }

    .soylu-product-slider {
        padding-left: 30px;
    }

}


@media (max-width: 767px) {

    .soylu-products-section {
        padding: 70px 0 60px;
    }

    .soylu-product-slider {
        margin-top: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .soylu-product-card {
        min-height: 390px;
    }

    .soylu-product-image {
        height: 230px;
    }

    .soylu-products-bottom {
        margin-top: 40px;

        flex-direction: column;

        align-items: flex-start;
    }

}








.world-map-card-btn{
    position: relative;
    z-index: 5;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 50%;
    overflow: visible !important;
}

/* LOGO */
.world-map-card-btn img{
    position: relative;
    z-index: 3;
    display: block;
    width: 60px;
    height: 60px;
    border: 2px solid #ff7b32;
    border-radius: 50%;
}


/* DALGA 1 + DALGA 2 */
.world-map-card-btn::before,
.world-map-card-btn::after{
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 60px;
    height: 60px;

    border: 2px solid #ff7b32;
    border-radius: 50%;

    transform: translate(-50%, -50%) scale(1);

    z-index: 1;
    pointer-events: none;

    animation: soylu-map-pulse 2.5s ease-out infinite;
}

.world-map-card-btn::after{
    animation-delay: 1.25s;
}


@keyframes soylu-map-pulse{

    0%{
        transform: translate(-50%, -50%) scale(1);
        opacity: .75;
    }

    60%{
        opacity: .30;
    }

    100%{
        transform: translate(-50%, -50%) scale(2.3);
        opacity: 0;
    }

}


.world-map-card-btn img{
    width: 100%;
    max-width: 60px;
    border: 2px solid #ff7b32;
    border-radius: 50%;
    position: relative;
    z-index: 3;
}