/* =====================================================
   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;
}








.z-index-1 {
    position: relative;
    z-index: 1;
            padding: 160px 0 50px;
}

.tp-cc-chose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;

}

.tp-cc-chose-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-relative {
    position: relative;
}

.tp-breadcrumb-list {
    display: block;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(34, 47, 48, 0.15);
}

.tp-breadcrumb-list li:not(:last-child) {
    margin-right: 4px;
}

.tp-breadcrumb-list li {
    line-height: 1;
    display: inline-block;
    color: var(--tp-finance-secondary);
}

.tp-breadcrumb-list li a {
    display: inline-block;
}

.tp-breadcrumb-title {
    font-size: 35px;
    margin-bottom: 10px;
    letter-spacing: -0.48px;
    color: var(--tp-finance-secondary);
}

.tp-breadcrumb-content p {
    color: var(--tp-finance-secondary);
}












/* =========================================================
   SOYLU DÖKÜM - CONTACT
========================================================= */

.soylu-contact-page {
    padding: 90px 0 40px;
    background: #fff;
}


/* =======================
   ÜST İLETİŞİM BİLGİLERİ
======================= */

.soylu-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
   
    margin-bottom: 40px;
}

.soylu-contact-info-item {
    min-height: 150px;
    padding: 48px 38px;
        border-right: 1px solid #e6e6e6;
    display: flex;
    align-items: flex-start;
    gap: 25px;

}

.soylu-contact-info-item:last-child {
    border-right: 0;
}


/* ICON */

.soylu-contact-icon {
    position: relative;
    width: 58px;
    min-width: 58px;
    height: 52px;

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

    font-size: 25px;
    color: #171717;
    z-index: 1;
}


.soylu-contact-icon  img {width: 40px;}



/* İNCE TURUNCU DETAY */
.soylu-contact-icon::after {
    content: "";
    position: absolute;

    width: 22px;
    height: 3px;

    right: -13px;
    bottom: 0px;

    background: #ff7b32;
    border-radius: 20px;

    transform: rotate(-35deg);

    box-shadow:
        8px -5px 0 -1px rgba(255,123,50,.35),
        -7px 5px 0 -1px rgba(255,123,50,.18);

    z-index: -1;
}

 .workingHours span {
    display: block;
    color: #929292;

}

 .workingHours {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}


/* CONTENT */

.soylu-contact-info-content span {
    display: block;

          margin-top: 5px;
    color: #999;
    font-size: 12px;
    font-weight: 500;

    letter-spacing: 1px;
}

.soylu-contact-info-content h3 {
    margin: 0;

    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
}

.soylu-contact-info-content h3 a {
      font-size: 20px;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
}

.soylu-contact-info-content p {
    margin: 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
}


/* =======================
   FORM BAŞLIK
======================= */

.soylu-contact-heading {
    margin-bottom: 38px;
}

.soylu-contact-heading .section-sub-title {
    margin-bottom: 15px;
}

.soylu-contact-heading h2 {

    color: #000;
    font-size: 24px;
    font-weight: 300;
}

.soylu-contact-heading p {
    max-width: 850px;
    margin: 0;

    color: #747474;
    font-size: 15px;
    line-height: 1.8;
}


/* =======================
   FORM
======================= */

.soylu-form-group {
    position: relative;
    margin-bottom: 4px;
}

.soylu-contact-form .form-control {
    width: 100%;

    height: 64px;

    padding: 0 24px;

    background: #f7f7f7;

    border: 1px solid transparent;
    border-radius: 0;

    box-shadow: none;

    color: #171717;

    font-size: 14px;

    transition: all .3s ease;
}

.soylu-contact-form textarea.form-control {
    height: 145px;

    padding-top: 20px;

    resize: none;
}

.soylu-contact-form .form-control::placeholder {
    color: #999;
}

.soylu-contact-form .form-control:focus {
    background: #fff;

    border-color: #ff7b32;

    box-shadow: 0 0 0 3px rgba(255, 123, 50, .07);
}


/* =======================
   KVKK
======================= */

.soylu-contact-check {
    margin: 14px 0 20px;

    display: flex;
    align-items: center;
    gap: 12px;

    cursor: pointer;
}

.soylu-contact-check input {
    display: none;
}

.soylu-contact-check > span {
    position: relative;

    width: 18px;
    min-width: 18px;
    height: 18px;

    border: 1px solid #d7d7d7;

    transition: .3s;
}

.soylu-contact-check input:checked + span {
    background: #ff7b32;
    border-color: #ff7b32;
}

.soylu-contact-check input:checked + span::after {
    content: "✓";

    position: absolute;
    inset: 0;

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

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

.soylu-contact-check p {
    margin: 0;

    color: #777;
    font-size: 12px;
}

.soylu-contact-check p a {
    color: #222;
    text-decoration: underline;
}


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

.soylu-contact-submit {
    min-width: 180px;
    height: 55px;
    padding: 0px 10px 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 4px; */
    background: #ff7b32;
    border: 0;
    border-radius: 0px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .35s ease;
}

.soylu-contact-submit span {
    width: 39px;
    height: 39px;

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

    background: #fff;

    border-radius: 50%;

    color: #ff7b32;

    font-size: 12px;

    transition: .35s ease;
}

.soylu-contact-submit:hover {
    background: #111b25;
}

.soylu-contact-submit:hover span {
    transform: rotate(45deg);
}


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

@media (max-width: 991px) {

    .soylu-contact-info {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .soylu-contact-info-item {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid #ededed;
    }

    .soylu-contact-info-item:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 767px) {

    .soylu-contact-page {
        padding: 60px 0 70px;
    }

    .soylu-contact-info {
        margin-bottom: 50px;
    }

    .soylu-contact-info-item {
        padding: 25px 20px;
    }

    .soylu-contact-heading h2 {
        font-size: 28px;
    }

    .soylu-contact-form .form-control {
        height: 58px;
    }

    .soylu-contact-form textarea.form-control {
        height: 130px;
    }

}























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

.soylu-product-detail {
    padding: 45px 0 110px;
  
}


/* BREADCRUMB */

.soylu-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;

    font-size: 13px;
}

.soylu-product-breadcrumb a {
    color: #9a9a9a;
    transition: .3s;
}

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

.soylu-product-breadcrumb span {
    color: #222;
}

.soylu-product-breadcrumb i {
    color: #c9c9c9;
    font-size: 8px;
}


/* =====================================================
   GALLERY
===================================================== */

.soylu-product-gallery {
    position: relative;

    min-height: 610px;
    height: 100%;

    display: flex;

    padding: 28px;

    background: #fff;

    border: 1px solid #eeeeee;
}


/* THUMBS */

.soylu-product-thumbs {
    width: 90px;
    flex: 0 0 90px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    position: relative;
    z-index: 3;
}

.soylu-thumb {
    width: 82px;
    height: 82px;

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

    padding: 8px;

    background: #fff;

    border: 1px solid #ececec;
    border-radius: 6px;

    cursor: pointer;

    transition: .3s;
}

.soylu-thumb:hover,
.soylu-thumb.active {
    border-color: #ff7b32;
}

.soylu-thumb img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* MAIN IMAGE */

.soylu-product-main-image {
    flex: 1;

    min-width: 0;

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

    padding: 50px;
}

.soylu-product-main-image img {
    width: 100%;
    max-width: 590px;
    max-height: 450px;

    object-fit: contain;

    transition: opacity .18s ease,
                transform .5s ease;
}

.soylu-product-gallery:hover
.soylu-product-main-image img {
    transform: scale(1.025);
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.soylu-product-info {
    height: 100%;

    min-height: 610px;

    background: #fff;

    border: 1px solid #eeeeee;
}


/* TOP */

.soylu-product-info-top {
    min-height: 92px;

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

    padding: 0 32px;

    border-bottom: 1px solid #eeeeee;
}

.soylu-product-sector {
    position: relative;

    padding-left: 15px;

    color: #555;

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

    letter-spacing: .8px;
}

.soylu-product-sector::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    transform: translateY(-50%);

    background: #ff7b32;

    border-radius: 50%;
}


.soylu-product-number {
    color: #999;

    font-size: 11px;
    letter-spacing: .4px;
}

.soylu-product-number strong {
    margin-left: 5px;

    color: #1b1b1b;

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


/* TITLE */

.soylu-product-title {
    padding: 42px 32px 30px;
}

.soylu-product-title .section-sub-title {
    margin-bottom: 15px;
}

.soylu-product-title h1 {
    margin: 0 0 5px;

    color: #171717;

    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
}

.soylu-product-title p {
    max-width: 450px;

    margin: 0;

    color: #777;

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


/* =====================================================
   PROPERTIES
===================================================== */

.soylu-product-properties {
    padding: 0 32px 30px;
}

.soylu-property-row {
    min-height: 48px;

    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: center;

    border-bottom: 1px solid #eeeeee;

    font-size: 13px;
}

.soylu-property-row:first-child {
    border-top: 1px solid #eeeeee;
}

.soylu-property-row span {
    color: #999;
}

.soylu-property-row strong {
    color: #222;

    font-weight: 500;
}


/* =====================================================
   CONTACT
===================================================== */

.soylu-product-contact {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 0 32px 32px;
    padding: 20px 0 0;

    border-top: 1px solid #eeeeee;
}

.soylu-product-contact-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

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

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

    border-radius: 50%;

    color: #ff7b32;

    font-size: 15px;
}

.soylu-product-contact span {
    display: block;

    margin-bottom: 4px;

    color: #888;

    font-size: 12px;
}

.soylu-product-contact a {
    color: #191919;

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

    text-decoration: underline;
    text-underline-offset: 3px;
}

.soylu-product-contact a i {
    margin-left: 6px;

    color: #ff7b32;

    font-size: 10px;

    transition: .3s;
}

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

.soylu-product-contact a:hover i {
    transform: translateX(4px);
}


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

@media (max-width: 1199px) {

    .soylu-product-gallery,
    .soylu-product-info {
        min-height: 550px;
    }

    .soylu-product-main-image {
        padding: 30px;
    }

}


@media (max-width: 991px) {

    .soylu-product-detail {
        padding: 35px 0 80px;
    }

    .soylu-product-gallery,
    .soylu-product-info {
        min-height: auto;
    }

    .soylu-product-gallery {
        height: 500px;
    }

}


@media (max-width: 767px) {

    .soylu-product-detail {
        padding: 25px 0 60px;
    }

    .soylu-product-breadcrumb {
        flex-wrap: wrap;
    }

    .soylu-product-gallery {
        height: auto;

        min-height: 430px;

        padding: 15px;

        flex-direction: column-reverse;
    }

    .soylu-product-thumbs {
        width: 100%;

        flex: none;

        flex-direction: row;

        margin-top: 15px;
    }

    .soylu-thumb {
        width: 65px;
        height: 65px;
    }

    .soylu-product-main-image {
        min-height: 300px;

        padding: 25px;
    }

    .soylu-product-info-top {
        min-height: 75px;

        padding: 0 20px;
    }

    .soylu-product-title {
        padding: 30px 20px 25px;
    }

    .soylu-product-title h1 {
        font-size: 29px;
    }

    .soylu-product-properties {
        padding: 0 20px 25px;
    }

    .soylu-property-row {
        grid-template-columns: 115px 1fr;
    }

    .soylu-product-contact {
        margin: 0 20px 25px;
    }

}









.uretim-gallery-item{
    width:100%;
    height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    overflow:hidden;
}
.uretim-gallery-item img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}











.sayfa-icerik ul{
    max-width: 819px;
    margin: 25px auto 35px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.sayfa-icerik ul li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #777;
}

.sayfa-icerik ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ff7b32;
    border-radius: 50%;
}

@media (max-width: 767px){
    .sayfa-icerik ul{
        max-width: 100%;
        margin: 20px 0 30px;
    }

    .sayfa-icerik ul li{
        font-size: 15px;
        padding-left: 20px;
    }
}















/* =============================================
   SOYLU INNER PAGE HEADER
============================================= */

.soylu-page-head {
position: relative;
    overflow: hidden;
    padding: 150px 0 45px;
    background: linear-gradient(120deg, #0b1e26 0%, #585858 55%, #82888b 100%);
    border-radius: 0 0 0px 0px;
    margin: 0px;
}


/* İNCE TURUNCU DETAY */
.soylu-page-head::before {
    content: "";

    position: absolute;
    top: 116px;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 123, 50, .20) 35%,
        #ff7b32 50%,
        rgba(255, 123, 50, .20) 65%,
        transparent 100%
    );
}


/* ARKA PLAN MİNİMAL DAİRE */
.soylu-page-head::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(25, 30, 34, .045);
    border-radius: 50%;

    box-shadow:
        0 0 0 28px rgba(25, 30, 34, .018),
        0 0 0 56px rgba(25, 30, 34, .009);

    pointer-events: none;
}


/* BAŞLIK */
.soylu-page-head h1 {
    color: #171a1d;
}


/* KÜÇÜK ÜST BAŞLIK */
.soylu-page-label {
    color: #777b7e;
}

.soylu-page-label i {
    background: #ff7b32;
}


/* BREADCRUMB */
.soylu-page-head .breadcrumb-item,
.soylu-page-head .breadcrumb-item a {
    color: #929598;
}

.soylu-page-head .breadcrumb-item.active {
    color: #35393c;
}

.soylu-page-head
.breadcrumb-item + .breadcrumb-item::before {
    color: #b8bbbd;
}

/* LAYOUT */

.soylu-page-head .page-header-box {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    text-align: left;
}


/* LABEL */

.soylu-page-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 3px;
    color: rgb(255 255 255);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.soylu-page-label i {
    width: 6px;
    height: 6px;

    display: block;

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


/* TITLE */

.soylu-page-head h1 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.3px;
}


/* BREADCRUMB */

.soylu-page-head .breadcrumb {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;

    background: transparent;
}

.soylu-page-head .breadcrumb-item,
.soylu-page-head .breadcrumb-item a {
    color: rgba(255,255,255,.48);

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

.soylu-page-head .breadcrumb-item a {
    transition: .3s;
}

.soylu-page-head .breadcrumb-item a:hover {
    color: #ff7b32;
}

.soylu-page-head
.breadcrumb-item + .breadcrumb-item::before {
    content: "→";

    padding: 0 11px;

    color: rgba(255,255,255,.25);
}

.soylu-page-head .breadcrumb-item.active {
    color: rgba(255,255,255,.8);
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .soylu-page-head {
        padding: 110px 0 35px;
        border-radius: 0 0 15px 15px;
    }

    .soylu-page-head .page-header-box {
        display: block;
    }

    .soylu-page-head h1 {
        font-size: 29px;
    }

    .soylu-page-head nav {
        margin-top: 25px;
    }

    .soylu-page-head::after {
        right: -120px;
    }

}





























/* =========================================
   SOYLU CORPORATE STORY
========================================= */

.soylu-story {
    padding: 40px 0 130px;
    background: #f5f6f6;
}


/* HEAD */

.soylu-story-head {
   
    margin: 0 auto 10px;
    text-align: center;
}

.soylu-story-pill {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;
    margin-bottom: 32px;

    background: #fff;

    color: #969a9d;

    font-size: 11px;

    border: 1px solid #eeeeec;
    border-radius: 50px;
}

.soylu-story-pill::before {
    content: "";

    width: 5px;
    height: 5px;

    margin-right: 9px;

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


.soylu-story-head h1 {
    margin: 0;

    color: #1a2025;

    font-size: 34px;
    font-weight: 400;
    line-height: 1.08;

    letter-spacing: -2px;
}


.soylu-story-head > p {
 

    margin: 27px auto 0;

    color: #8b9094;

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


.soylu-story-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 9px;

    margin-top: 23px;

    font-size: 10px;
}

.soylu-story-breadcrumb a,
.soylu-story-breadcrumb span {
    color: #a4a8ab;
}

.soylu-story-breadcrumb strong {
    color: #343a3e;
    font-weight: 500;
}


/* =========================================
   GRID
========================================= */

.soylu-story-grid {
    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1fr;

    gap: 14px;

    height: 440px;
    margin-top: 30px;
}


/* FOTOĞRAFLAR */

.soylu-story-photo {
    position: relative;

    overflow: hidden;

    border-radius: 17px;
}

.soylu-story-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.soylu-story-photo:hover img {
    transform: scale(1.035);
}


/* GENEL CARD */

.soylu-story-card {
    position: relative;

    overflow: hidden;

    padding: 30px;

    border-radius: 17px;
}

.soylu-card-index {
    position: absolute;

    top: 25px;
    right: 25px;

    font-size: 9px;
    letter-spacing: 1px;
}


/* DARK */

.soylu-story-card-dark {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #24292d;

    color: #fff;
}

.soylu-story-card-dark .soylu-card-index {
    color: rgba(255,255,255,.35);
}


.soylu-card-icon {
    width: 48px;
    height: 48px;

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

    color: #ff7b32;

    font-size: 24px;
}


.soylu-card-bottom strong {
    display: block;

    margin-bottom: 14px;

    font-size: 40px;
    font-weight: 400;

    letter-spacing: -1px;
}

.soylu-card-bottom strong small {
    color: #ff7b32;

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


.soylu-card-bottom h3 {
    margin-bottom: 11px;

    color: #fff;

    font-size: 18px;
    font-weight: 400;
}


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

    color: rgba(255,255,255,.58);

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


/* =========================================
   ORTA KOLON
========================================= */

.soylu-story-middle {
    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 14px;
}


/* LIGHT */

.soylu-story-card-light {
    background: #fff;

    border: 1px solid #eceeed;
}

.soylu-story-card-light .soylu-card-index {
    color: #bbbfc1;
}

.soylu-story-card-light strong {
    display: block;

    margin-bottom: 7px;

    color: #20262a;

    font-size: 28px;
    font-weight: 400;
}

.soylu-story-card-light strong small {
    color: #ff7b32;

    font-size: 14px;
}

.soylu-story-card-light h3 {
    margin-bottom: 10px;

    color: #252a2e;

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

.soylu-story-card-light p {
    margin: 0;

    color: #929699;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================
   ORANGE
========================================= */

.soylu-story-card-orange {
    background:
        linear-gradient(
            135deg,
            #f36f2a 0%,
            #ff843e 100%
        );

    color: #fff;
}

.soylu-story-card-orange::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -45px;
    bottom: -50px;

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

    box-shadow:
        0 0 0 20px rgba(255,255,255,.06),
        0 0 0 40px rgba(255,255,255,.03);
}

.soylu-story-card-orange .soylu-card-index {
    color: rgba(255,255,255,.55);
}

.soylu-story-card-orange strong {
    display: block;

    margin-bottom: 4px;

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

.soylu-story-card-orange h3 {
    margin-bottom: 9px;

    color: #fff;

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

.soylu-story-card-orange p {
    max-width: 190px;

    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 10px;
    line-height: 1.6;
}


/* KONYA WORLD */

.soylu-world-line {
    position: absolute;

    left: 30px;
    bottom: 24px;

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

    color: rgba(255,255,255,.65);

    font-size: 8px;
    letter-spacing: 1px;
}

.soylu-world-line span {
    width: 30px;
    height: 1px;

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


/* =========================================
   ALT HİKAYE
========================================= */

.soylu-story-bottom {
    max-width: 900px;

    margin: 75px auto 0;

    text-align: center;
}

.soylu-story-bottom > span {
    display: inline-block;

    padding: 9px 18px;
    margin-bottom: 27px;

    background: #fff;

    color: #999da0;

    font-size: 10px;

    border: 1px solid #eeeeec;
    border-radius: 50px;
}

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

    color: #9a9ea1;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;

    letter-spacing: -.4px;
}

.soylu-story-bottom strong {
    color: #29343b;
    font-weight: 400;
}


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

@media (max-width: 991px) {

    .soylu-story-grid {
        grid-template-columns: repeat(2, 1fr);

        height: auto;
    }

    .soylu-story-photo,
    .soylu-story-card-dark {
        min-height: 400px;
    }

    .soylu-story-middle {
        min-height: 400px;
    }

}


@media (max-width: 767px) {

    .soylu-story {
        padding: 70px 0 80px;
    }

    .soylu-story-head {
        margin-bottom: 50px;
    }

    .soylu-story-head h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }

    .soylu-story-grid {
        grid-template-columns: 1fr;
    }

    .soylu-story-photo {
        min-height: 360px;
    }

    .soylu-story-card-dark {
        min-height: 340px;
    }

    .soylu-story-middle {
        min-height: 430px;
    }

    .soylu-story-bottom {
        margin-top: 55px;
    }

    .soylu-story-bottom p {
        font-size: 17px;
    }

}
























/* =========================================
   SOYLU DÖKÜM - KALİTE BELGELERİ
========================================= */

.soylu-certificates {
    padding: 100px 0 120px;
    background: #f7f8f8;
}


/* BAŞLIK */

.soylu-certificates-head {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.soylu-certificates-head .section-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #60666a;
}

.soylu-certificates-head .section-sub-title::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff7b32;
    border-radius: 50%;
}

.soylu-certificates-head h2 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
    color: #202529;
}

.soylu-certificates-head p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #8b9094;
}


/* KART */

.soylu-certificate-item {
    height: 100%;
}


/* BELGE GÖRSELİ */

.soylu-certificate-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 390px;
    padding: 35px;

    background: #fff;
    border: 1px solid #eceeef;
    border-radius: 18px;

    overflow: hidden;

    transition: all .4s ease;
}

.soylu-certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: transform .5s ease;
}


/* NUMARA */

.certificate-no {
    position: absolute;
    top: 20px;
    left: 22px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #b5b9bc;
}


/* SAĞ ALT BUTON */

.certificate-view {
    position: absolute;
    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

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

    border-radius: 50%;

    background: #202529;
    color: #fff;

    font-size: 13px;

    transform: translateY(10px);
    opacity: 0;

    transition: all .35s ease;
}


/* HOVER */

.soylu-certificate-item:hover .soylu-certificate-image {
    border-color: rgba(255, 123, 50, .35);
    box-shadow: 0 20px 50px rgba(24, 30, 34, .07);
}

.soylu-certificate-item:hover .soylu-certificate-image img {
    transform: scale(1.025);
}

.soylu-certificate-item:hover .certificate-view {
    opacity: 1;
    transform: translateY(0);
    background: #ff7b32;
}


/* ALT İÇERİK */

.soylu-certificate-content {
    padding: 22px 5px 0;
}

.soylu-certificate-content > span {
    display: block;

    margin-bottom: 7px;

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

    letter-spacing: 1.4px;

    color: #ff7b32;
}

.soylu-certificate-content h3 {
    margin: 0 0 13px;

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

    color: #202529;
}

.soylu-certificate-content > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

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

    color: #858a8e;

    transition: .3s ease;
}

.soylu-certificate-content > a i {
    font-size: 10px;
    transition: transform .3s ease;
}

.soylu-certificate-content > a:hover {
    color: #ff7b32;
}

.soylu-certificate-content > a:hover i {
    transform: translateX(4px);
}


/* RESPONSIVE */

@media (max-width: 1199px) {

    .soylu-certificate-image {
        height: 360px;
    }

}

@media (max-width: 767px) {

    .soylu-certificates {
        padding: 70px 0 80px;
    }

    .soylu-certificates-head {
        margin-bottom: 40px;
    }

    .soylu-certificates-head h2 {
        font-size: 32px;
    }

    .soylu-certificate-image {
        height: 400px;
    }

}











.page-galleryy{
    padding: 20px 0 70px;
}

.soylu-production-gallery{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f3;
}

.soylu-production-gallery a{
    position: relative;
    display: block;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.soylu-production-gallery img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.soylu-production-gallery a::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 35, .15);
    opacity: 0;
    transition: opacity .35s ease;
}

.soylu-production-gallery:hover img{
    transform: scale(1.06);
}

.soylu-production-gallery:hover a::after{
    opacity: 1;
}

.gallery-icon{
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #222;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

.soylu-production-gallery:hover .gallery-icon{
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px){

    .soylu-production-gallery a{
        height: 280px;
    }

}

@media (max-width: 575px){

    .page-galleryy{
        padding: 10px 0 40px;
    }

    .gallery-items{
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .soylu-production-gallery{
        border-radius: 8px;
    }

    .soylu-production-gallery a{
        height: 210px;
    }

    .gallery-icon{
        width: 38px;
        height: 38px;
        right: 10px;
        bottom: 10px;
        opacity: 1;
        transform: none;
    }

}










.hero-single-image{
    width:100%;
    height:calc(90vh - 90px);
    overflow:hidden;
}
.hero-single-image img{
    width:100%;
    object-fit:cover;
    display:block;
}
@media (max-width:991px){
    .hero-single-image{
        height:auto;
    }
    .hero-single-image img{
        width:100%;
        height:auto;
        object-fit:contain;
    }
}