:root {
    --white-color: #ffffff;
    --primary-text: #202124;
    --secondary-text: #5f6368;
    --background: #ffffff;
    --accent: #1a73e8;
    --surface: #f8f9fa;
    --theme-color: #F1562C;
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
    --angle: 45deg;
    --opacity: 0.5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--primary-text);
    background-color: var(--background);
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

/* Paragraf stilleri - Yüksek kontrast */
p {
    color: var(--primary-text);
    margin-bottom: 16px;
}

h1 {
    font-size: 2rem;
    /* ~45px */
    color: #000000;
    font-weight: 800;
    margin: 1rem 0;
}

/* H2: Ana Bölüm Başlıkları */
h2 {
    font-size: 1.5rem;
    /* ~34px */
    color: #1a1a1a;
    font-weight: 700;
    margin: 1.8rem 0 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.25rem;
}

/* H3: Alt Bölüm Başlıkları */
h3 {
    font-size: 1.2rem;
    /* ~26px */
    color: #333333;
    font-weight: 600;
    margin: 1.5rem 0 0.6rem 0;
}

/* ------------------ */
/* DETAY BAŞLIKLARI (H4, H5, H6) - Detaylandırma Amaçlı */
/* ------------------ */

/* H4: H3'ün Alt Detay Başlıkları */
h4 {
    font-size: 1rem;
    /* ~21px */
    color: #444444;
    font-weight: 600;
    margin: 1rem 0 0.4rem 0;
}

/* H5: H4'ün Alt Başlıkları */
h5 {
    font-size: 0.8rem;
    /* ~18px */
    color: #555555;
    font-weight: 500;
    margin: 0.8rem 0 0.3rem 0;
    /* H5 ve H6, paragraf metnine daha yakındır */
}

/* H6: En Düşük Seviye Başlık */
h6 {
    font-size: 0.6rem;
    /* ~16px (Paragraf boyutu) */
    color: #666666;
    font-weight: 500;
    margin: 0.6rem 0 0.2rem 0;
    text-transform: uppercase;
    /* Vurgu için büyük harf */
    letter-spacing: 0.5px;
}

/* ------------------ */
/* MOBİL UYUMLULUK İÇİN ÖLÇEKLEME */
/* ------------------ */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 1rem;
    }

    /* H5 ve H6 mobil cihazlarda genellikle paragraf boyutunda kalır. */
}

/* Başlık stilleri - Google'ın Material Design yaklaşımı */
.display-large {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 57px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.25px;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.display-medium {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.16;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.headline-large {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.headline-medium {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.29;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.headline-small {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.title-large {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.27;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.title-medium {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15px;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.title-small {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    letter-spacing: 0.1px;
    color: var(--primary-text);
    margin-bottom: 8px;
}

/* Body text stilleri */
.body-large {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.body-medium {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.25px;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.body-small {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: 0.4px;
    color: var(--secondary-text);
    margin-bottom: 8px;
}

/* Label stilleri */
.label-large {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    letter-spacing: 0.1px;
    color: var(--primary-text);
}

.label-medium {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.5px;
    color: var(--primary-text);
}

.label-small {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.5px;
    color: var(--secondary-text);
}


/* Kart stili - Google Material Design */
.card {
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    padding: 24px;
    margin: 16px 0;
}

.surface {
    background-color: var(--surface);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

/* Responsive H tagları */
@media (max-width: 768px) {
    .display-large {
        font-size: 36px;
    }

    .display-medium {
        font-size: 32px;
    }

    .headline-large {
        font-size: 28px;
    }

}

/* Kontrast gösterimi */
.contrast-demo {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.contrast-box {
    padding: 16px;
    border-radius: 8px;
    min-width: 200px;
    text-align: center;
}

.high-contrast {
    background-color: var(--background);
    color: var(--primary-text);
    border: 1px solid #e0e0e0;
}

.medium-contrast {
    background-color: var(--surface);
    color: var(--secondary-text);
    border: 1px solid #e0e0e0;
}

/*------------------- 2.4. Nice Select -------------------*/

.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
    padding-bottom: 10px;
    padding-top: 10px;
    display: block;
    text-align: center;
    background-color: rgba(200, 147, 28, 0.1);
}

.th-menu-wrapper .mobile-logo img {
    max-width: 120px;
}

.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -17px;
    top: 17px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 32px;
    font-size: 18px;
    z-index: 1;
    color: #1B1B1B;
    background-color: var(--theme-color);
    border-radius: 50%;
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}

.th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    color: #1B1B1B;
}

.th-mobile-menu ul li a:before {
    content: "";
    filter: invert(61%) sepia(84%) saturate(5547%) hue-rotate(346deg) brightness(99%) contrast(90%);
    background: url('../icons/ok-right.svg') no-repeat;
    width: 16px;
    height: 12px;
    position: relative;
    left: 0;
    top: 0;
    margin-right: 3px;
    display: inline-block;
}

.th-mobile-menu ul li ul li {
    padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.th-mobile-menu ul .th-item-has-children>a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: #1B1B1B;
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.th-mobile-menu ul .th-item-has-children>a .th-mean-expand:before {
    content: "";
    filter: invert(61%) sepia(84%) saturate(5547%) hue-rotate(346deg) brightness(99%) contrast(90%);
    background: url('../icons/plus.svg') no-repeat;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.th-mobile-menu>ul {
    padding: 0 40px;
}

.th-mobile-menu>ul>li:last-child {
    border-bottom: none;
}

.th-menu-toggle {
    width: 30px;
    height: 40px;
    padding: 0;
    font-size: 24px;
    border: none;
    background-color: var(--theme-color);
    color: #ffffff;
    display: inline-block;
    border-radius: 0;
}

.header-layout8 .header-top {
    background-color: #1B1B1B;
    --main-container: 1470px;
    position: relative;
    padding: 7px 0;
    z-index: 4;
    /* Large devices */
}

.header-layout8 .header-top .header-social {
    position: relative;
}

.header-layout8 .header-top .header-social .social-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0;
    /* Extra small devices */
}

.header-layout8 .header-top .header-social a {
    height: 14px;
    display: inline;
    color: #FFFFFF;
    margin: 0 0px 0 15px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header-layout8 .header-top .header-social a:hover {
    color: var(--theme-color);
}


.header-layout8 .menu-area {
    border-bottom: 4px solid var(--theme-color);
    box-shadow: 0 0 8px 0 rgba(0, 49, 80, .25);
    --main-container: 1470px;
    padding: 0;
    margin-left: 0;
    position: relative;
    z-index: 3;
    /* Medium devices */
}

.header-layout8 .menu-area .header-logo {
    padding-bottom: 0;

}

.header-layout8 .menu-area .header-logo img {
    width: 120px;
}

.header-layout8 .main-menu {
    padding-left: 130px;
}

.header-layout8 .header-links {
    /* Large devices */
}

.header-layout8 .header-links ul li {
    padding: 0;
    margin-right: 20px;
}

.header-layout8 .header-links ul li:before {
    background-color: transparent;
}

.header-layout8 .header-links ul li a {
    color: #FFFFFF;
}

.header-layout8 .header-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-layout8 .header-right .langauge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border-left: 1px solid var(--body-color);
    margin-left: 0px;
    /* Large devices */
    /* Small devices */
}

.header-layout8 .header-right .langauge i {
    color: #FFFFFF;
    margin-right: 5px;
}

.header-layout8 .header-right .langauge button {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    padding: 5px 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header-layout8 .header-button .icon-btn {
    border: 1px solid #E7E7E7;
}

.header-layout8 .sticky-wrapper {
    margin: 0px auto 0 auto;
}

.header-layout8 .logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    z-index: 0;

}

.header-layout8 .logo-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--smoke-color);
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 48px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 48px) 100%, 0% 100%);
    z-index: -1;
    border-radius: 0 0 10px 10px;
}

.header-absolute {
    top: 0;
    left: 0;
    width: 100%;
}

.th-header {
    position: relative;
    z-index: 41;
}

.th-header .icon-btn {
    --btn-size: 40px;
    line-height: 40px;
}

.icon-btn {
    display: inline-block;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    font-size: var(--btn-font-size, 16px);
    background-color: #ffffff;
    text-align: center;
    border-radius: 50%;
    border: none;
}

.icon-btn:hover {
    background-color: var(--theme-color);
    color: #FFFFFF;
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 20px;
    width: 20px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.sticky-wrapper {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: #FFFFFF;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}

.th-header .sticky-wrapper {
    position: relative;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.main-menu a {
    display: block;
    position: relative;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1B1B1B;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.main-menu a:hover {
    color: var(--theme-color);
}

.main-menu>ul>li {
    margin: 0 14px;
}

.main-menu>ul>li>a {
    padding: 27px 0;
}

.main-menu>ul>li>a:hover {
    color: var(--theme-color);
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children>a:after {
    content: "";
    filter: invert(61%) sepia(84%) saturate(5547%) hue-rotate(346deg) brightness(99%) contrast(90%);
    background: url('../icons/plus.svg') no-repeat;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left: 4px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.main-menu ul li.menu-item-has-children>a:hover:after {
    content: "";
    filter: invert(61%) sepia(84%) saturate(5547%) hue-rotate(346deg) brightness(99%) contrast(90%);
    background: url('../icons/minus.svg') no-repeat;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left: 4px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-menu ul li:last-child {
    margin-right: 0 !important;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    visibility: hidden;
    min-width: 230px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    border: 0;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    border-bottom: 2px solid var(--theme-color);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    font-weight: 400;
}

.main-menu ul.sub-menu {
    padding: 18px 20px 18px 18px;
    left: -27px;
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0px 9px;
}


.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
}



.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul.sub-menu {
    left: 40px;
}

.header-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-links i {
    margin-right: 7px;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

.header-links li:not(:last-child) {
    padding: 0 20px 0 0;
    margin: 0 15px 0 0;
}

.header-links li:not(:last-child):before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background-color: var(--theme-color);
    width: 1px;
    height: 20px;
    margin: -10px 0 0 0;
}

.header-social .social-title {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin: 0 10px 0 0;
}

.header-social a {
    height: 14px;
    display: inline-block;
    margin: 0 15px 0 0;
}

.header-social a img {
    height: 14px;
}

img:not([draggable]),
embed,
object,
video {
    max-width: 100%;
    height: auto;
}

.fill_white,
.popup-search-box button.searchClose:hover img {
    filter: brightness(0) invert(1);
}

@media only screen and (min-width: 1300px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2);
    }
}

@media (min-width: 1199px) {
    .row:not([class*="gx-"]) {
        --bs-gutter-x: 30px;
    }
}

.breadcumb-wrapper {
    width: 100%;
    background: #F1F5F8;
}

.breadcrumbs {
    font-size: 14px;
}

.breadcrumbs {
    list-style: none;
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.breadcrumb {
    margin-bottom: 0;
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    list-style: none;
    background-color: #f5f5f5;
    padding: 0;
}

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.breadcrumb>li {
    display: inline-block;
    float: left;
}

.breadcrumb>li a {
    color: #222;
    text-decoration: none;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

.fastbutton::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 100px;
    background: linear-gradient(to left, #fff, rgba(0, 0, 0, 0));
    left: -150px;
    top: -20px;
    display: block;
    transform: rotate(15deg);
    animation: marquiz 5s;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
}

.fastbutton {
    border: 0;
    position: relative;
    overflow: hidden;
    line-height: 30px;
    text-align: center;
}

@keyframes marquiz {
    from {
        left: -150px;
    }

    to {
        left: 600px;
    }
}

.button-container {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fastbutton {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    min-width: 150px;
}

.fastbutton:hover {
    color: white;
}

.fastbutton.email {
    background-color: #f15a24;
}

.fastbutton.whatsapp {
    background-color: #25D366;
}

/* Mobilde alt alta gelsin */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
    }

    .fastbutton {
        width: 100%;
    }
}


.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--theme-color, #F1562C);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 21px 31px;
    border-radius: 0;
    border: none;
    transition: 0.4s;
}

.th-btn.fw-btn {
    width: 100%;
}

.th-btn:before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 200%;
    background-color: #1B1B1B;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
    transition: 0.5s ease;
}

.th-btn:hover {
    color: #FFFFFF;
}

.th-btn:hover:before {
    transform-origin: center center;
    transform: scale(1);
}

.th-btn.item_wp {
    background-color: #25D366;
    color: #fff;
    width: 100%;
}

.th-btn.item_wp:before {
    background-color: #128c7e;
}

.th-btn.btn-phone {
    background-color: #007bff;
    color: #fff;
    width: 100%;
    text-transform: capitalize;
    font-size: 16px;
    padding: 21px 10px;
}

.th-btn.btn-phone:before {
    background-color: #0056b3;
}

/* Premium Hollow Buttons matching main site style */
.cButton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid var(--theme-color, #f1562c);
    color: var(--theme-color, #f1562c) !important;
    background-color: #fff;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0;
    width: 100%;
}

.cButton:hover {
    background: var(--theme-color, #f1562c);
    color: #fff !important;
    border: 1px solid var(--theme-color, #f1562c);
}

.cButton i,
.cButton img,
.cButton svg {
    margin-top: -2px;
    transition: all 0.3s;
}

.cButton:hover i,
.cButton:hover img,
.cButton:hover svg {
    color: #fff !important;
}

.cButton:hover img {
    filter: brightness(0) invert(1);
}


/* --- Gallery Sidebar Form (Orange Premium Design) --- */
.col-md-4 .booking-form-area {
    background-color: var(--theme-color, #F1562C) !important;
    padding: 10px 15px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(241, 86, 44, 0.2) !important;
    margin-bottom: 30px;
}

.col-md-4 .booking-form-area .booking-title {
    color: #FFFFFF !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-align: left;
}

.col-md-4 .booking-form-area .booking-desc {
    color: #FFFFFF !important;
    font-size: 14px !important;
    margin-bottom: 15px !important;
    opacity: 0.9;
    text-align: left;
    line-height: 1.4;
}

.col-md-4 .booking-form-area .form-control {
    background-color: #F4F5F7 !important;
    border: none !important;
    border-radius: 0 !important;
    color: #333 !important;
    padding: 5px 10px !important;
    height: auto !important;
    box-shadow: none !important;
    font-size: 14px;
}

.col-md-4 .booking-form-area .form-control::placeholder {
    color: #555 !important;
    font-weight: 400;
}


.col-md-4 .booking-form-area .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
    margin-top: 5px;
}

.col-md-4 .booking-form-area .form-check-input {
    float: none;
    margin-left: 0;
    margin-top: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px !important;
    border: 1px solid #FFF !important;
    background-color: #FFF !important;
    cursor: pointer;
    margin-bottom: 0px;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
}

.col-md-4 .booking-form-area .form-check-input:checked {
    background-color: #FFF !important;
    border-color: #FFF !important;
}

.col-md-4 .booking-form-area .form-check-input:checked::after {
    content: '\2713';
    font-size: 16px;
    color: var(--theme-color, #f1562c);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.col-md-4 .booking-form-area .form-check-label {
    color: #FFFFFF !important;
    font-size: 13px !important;
    cursor: pointer;
}

.col-md-4 .booking-form-area .form-check-label a {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}

.col-md-4 .booking-form-area .th-btn {
    background-color: #FFFFFF !important;
    color: var(--theme-color, #F1562C) !important;
    width: 100% !important;
    text-align: center !important;
    font-weight: 600 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
    border-radius: 0 !important;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.col-md-4 .booking-form-area .th-btn:hover {
    background-color: #f9f9f9 !important;
    color: var(--theme-color, #F1562C) !important;
}

.col-md-4 .booking-form-area .th-btn:before {
    display: none !important;
}

.col-md-4 .booking-form-area .th-btn img {
    margin-left: 8px !important;
    filter: invert(47%) sepia(85%) saturate(2469%) hue-rotate(345deg) brightness(98%) contrast(92%) !important;
}


/* --- References Page Premium Cards --- */
.ref-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #ebebeb;
}

.ref-card:hover {
    box-shadow: 0 10px 30px rgba(241, 86, 44, 0.15);
    transform: translateY(-5px);
    border-color: var(--theme-color, #f1562c);
}

.ref-img-wrapper {
    width: 100%;
    height: 180px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.ref-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ref-card:hover .ref-img-wrapper img {
    transform: scale(1.05);
}

.ref-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ref-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ref-subtitle {
    font-size: 14px;
    color: var(--theme-color, #f1562c);
    font-weight: 600;
    margin-bottom: 8px;
}

.ref-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.ref-addon {
    font-size: 12px;
    color: #999;
    margin-top: auto;
    font-style: italic;
    padding-top: 10px;
}


.footer-layout9 {
    position: relative;
    z-index: 2;
    background-color: #1B1B1B
}

.footer-layout9 .copyright-wrap {
    position: relative;
    z-index: 2;
    background-color: #0B0B0B;
}

.footer-layout9 .copyright-wrap.style2 {
    text-align: left;
}

.footer-layout9 .copyright-wrap .footer-links {
    text-align: right;
    /* Medium devices */
}

.footer-layout9 .copyright-wrap .footer-links ul {
    margin: 0;
    padding: 0;
}

.footer-layout9 .copyright-wrap .footer-links ul li {
    display: inline-block;
    padding-right: 10px;
    margin-right: 10px;
}

.footer-layout9 .copyright-wrap .footer-links ul li a {
    color: #FFFFFF;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-layout9 .copyright-text {
    color: #BDBDBD;
    text-transform: capitalize;
    /* Medium devices */
}

.footer-layout9 .footer-text {
    color: #ADADAD;
}

.footer-layout9 .widget_nav_menu a,
.footer-layout9 .widget_meta a,
.footer-layout9 .widget_pages a,
.footer-layout9 .widget_archive a,
.footer-layout9 .widget_categories a {
    color: #ADADAD;
}

.footer-layout9 .footer-info {
    margin-bottom: 28px;
}

.footer-layout9 .footer-info i {
    color: #FFFFFF;
}

p.footer-info {
    color: #adadad;
}

.footer-layout9 .footer-social a {
    display: inline-block;
    width: var(--icon-size, 46px);
    height: var(--icon-size, 46px);
    line-height: var(--icon-size, 48px);
    background-color: #3D4250;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    margin-right: 5px;
    border-radius: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-layout9 .footer-social a:hover {
    background-color: var(--theme-color);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.footer-layout9 .footer-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 73px;
    background-color: var(--theme-color);
    z-index: -1;
    -webkit-clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
    /* Large devices */
    /* Medium devices */
}

.footer-layout9 .copyright-wrap.style2 {
    position: relative;
}

.footer-layout9 .copyright-wrap.style2:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 73px;
    background-color: var(--theme-color);
    z-index: -1;
    -webkit-clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
    /* Large devices */
    /* Medium devices */
}

.widget-area {
    padding-top: 100px;
    padding-bottom: 60px;
}

.widget {
    padding: 0px;
    position: relative
}

.widget_title {
    margin: -.12em 0 30px;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    padding-bottom: 17px
}

.widget_title:after,
.widget_title:before {
    content: '';
    height: 3px;
    width: 100%;
    background-color: #e0e0e0;
    position: absolute;
    bottom: 0;
    left: 0
}

.widget_title:after {
    background-color: var(--theme-color);
    width: 30px
}

.footer-widget,
.mb-40 {
    margin-bottom: 40px
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    background-color: transparent
}

.footer-widget .widget_title {
    position: relative;
    border: none;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1;
    border-bottom: 0;
    padding: 0 0 15px;
    margin: 0 0 35px;
    max-width: 275px
}

.footer-widget .widget_title:after,
.footer-widget .widget_title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background-color: var(--theme-color)
}

.footer-widget .widget_title:after {
    width: 16px;
    border: 3px solid var(--title-color);
    height: 10px;
    background-color: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: 7s linear infinite footerLine;
    animation: 7s linear infinite footerLine
}

.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_meta ul,
.footer-widget.widget_nav_menu ul,
.footer-widget.widget_pages ul {
    margin-top: -4px
}

.footer-widget.widget_archive .menu,
.footer-widget.widget_archive>ul,
.footer-widget.widget_categories .menu,
.footer-widget.widget_categories>ul,
.footer-widget.widget_meta .menu,
.footer-widget.widget_meta>ul,
.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu>ul,
.footer-widget.widget_pages .menu,
.footer-widget.widget_pages>ul {
    margin-bottom: -4px
}

.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_meta a,
.footer-widget.widget_nav_menu a,
.footer-widget.widget_pages a {
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 28px;
    margin-bottom: 22px;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
    position: relative;
    border-bottom: none
}

.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_meta a:before,
.footer-widget.widget_nav_menu a:before,
.footer-widget.widget_pages a:before {
    content: "";
    filter: invert(61%) sepia(84%) saturate(5547%) hue-rotate(346deg) brightness(99%) contrast(90%);
    background: url(../icons/arrow-right-solid.svg) no-repeat;
    width: 14px;
    height: 26px;
    left: 0;
    top: 5px;
}

.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_meta a:hover,
.footer-widget.widget_nav_menu a:hover,
.footer-widget.widget_pages a:hover {
    background-color: transparent;
    color: var(--theme-color)
}

.footer-info:last-child,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_nav_menu li:last-child a,
.footer-widget.widget_pages li:last-child a {
    margin-bottom: 0
}

.th-widget-about {
    max-width: 290px;
}

.footer-text {
    margin-bottom: 30px;
    margin-top: -0.5em;
}

.footer-info-title {
    font-size: 14px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 7px;
    margin-top: -0.2em;
}

.footer-info {
    position: relative;
    margin: 0 0 25px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0 0 0px;
    max-width: 300px;
}

.footer-info:last-child {
    margin-bottom: 0;
}

.footer-info:nth-child(2) i {
    background-color: var(--theme-color);
}

.footer-widget {
    margin-bottom: 40px;
}

.copyright-wrap {
    padding: 15px 0;
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
}

.blog-title a,
.service-card_title a,
.text-inherit {
    color: inherit;
}

.footer-widget .widget_title {
    position: relative;
    border: none;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    border-bottom: 0;
    padding: 0 0 15px 0;
    margin: 0 0 35px 0;
    max-width: 275px;
}

.footer-widget .widget_title:before,
.footer-widget .widget_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background-color: var(--theme-color);
}

.footer-widget .widget_title:after {
    width: 16px;
    border: 3px solid #1B1B1B;
    height: 10px;
    background-color: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite;
}

.footer-widget.widget_meta ul,
.footer-widget.widget_pages ul,
.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_nav_menu ul {
    margin-top: -4px;
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta>ul,
.footer-widget.widget_pages .menu,
.footer-widget.widget_pages>ul,
.footer-widget.widget_archive .menu,
.footer-widget.widget_archive>ul,
.footer-widget.widget_categories .menu,
.footer-widget.widget_categories>ul,
.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu>ul {
    margin-bottom: -4px;
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 28px;
    margin-bottom: 22px;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    position: relative;
    border-bottom: none;
}

.footer-widget.widget_meta a:before,
.footer-widget.widget_pages a:before,
.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_nav_menu a:before {
    content: "";
    filter: invert(61%) sepia(84%) saturate(5547%) hue-rotate(346deg) brightness(99%) contrast(90%);
    background: url(../icons/arrow-right-solid.svg) no-repeat;
    width: 14px;
    height: 26px;
    left: 0;
    top: 5px;
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.footer-widget.widget_meta a:hover:before,
.footer-widget.widget_pages a:hover:before,
.footer-widget.widget_archive a:hover:before,
.footer-widget.widget_categories a:hover:before,
.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color);
}

.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_pages li:last-child a,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0;
}

.footer-text {
    margin-bottom: 30px;
    margin-top: -0.5em;
}

.footer-info-title {
    font-size: 14px;
    font-family: var(--title-font);
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 7px;
    margin-top: -0.2em;
}

.footer-info {
    position: relative;
    margin: 0 0 25px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0 0 0px;
    max-width: 300px;
}

.footer-info:last-child {
    margin-bottom: 0;
}

.footer-info:nth-child(2) i {
    background-color: var(--theme-color);
}

.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li {
    display: block;
    position: relative;
}

.copyright-wrap {
    padding: 22px 0
}

.footer-layout9 .copyright-text p {
    margin: 0;
}

.copyright-text {
    margin: 0;
    /* font-weight:400; */
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* Form stilleri */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #f15a24;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.form-check-label {
    padding: 2px 5px;
    font-size: 14px;
}

.booking-title {
    font-size: 18px;
    font-weight: 600;
    padding-right: 10px;
}

.box-area {
    padding: 20px 0px 40px 0px;
}

.ref_block {
    text-align: center;
    border: 1px solid #f2f2f2;
    padding: 10px;
    height: 300px;
    margin-bottom: 10px;

}

.ref_block:hover {
    border: 1px solid #f1562c;

}

.ref_block .ref_title {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

.ref_block .ref_desc {
    text-align: left;

    font-size: 14px;
}

@media (max-width: 570px) {

    .footer-layout9 .copyright-wrap .footer-links,
    .footer-layout9 .copyright-wrap.style2:before,
    .header-layout8 .header-links,
    .header-layout8 .header-top .header-social .social-title {
        display: none;
    }

    .header-layout8 .menu-area {
        padding: 3px 0;
    }

    .btn-request {
        margin-bottom: 15px;
        width: 100%;
        font-size: 16px;
    }

    .btn-whatsapp {
        margin-bottom: 15px;
        width: 100%;
        font-size: 16px;
    }

    .widget-area {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .th-widget-about {
        max-width: 100%;
    }

    p {
        margin-bottom: 8px;
    }

    .footer-layout9 .footer-info {
        margin-bottom: 16px;
    }


}

@media (min-width: 992px) {

    /* Main Menu Container - relative positioning needed for dropdown width constraints */
    .th-header .menu-area {
        position: relative;
    }

    /* Reset main menu behavior for Products */
    .main-menu>ul>li:has(> a[href*="products"]),
    .main-menu>ul>li:has(> a[href*="urunler"]),
    .main-menu>ul>li:nth-child(3) {
        position: static !important;
    }

    /* LEVEL 1: Left Sidebar / Main Mega Box */
    .main-menu>ul>li:has(> a[href*="products"]) .level-1,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1,
    .main-menu>ul>li:nth-child(3) .level-1 {
        width: 1000px !important;
        max-width: 100vw;
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100%;
        background: #fff !important;
        display: none !important;
        /* Temporarily stay open */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 5px !important;
        margin: 0 auto !important;
        border-radius: 0 0 8px 8px;
        z-index: 999;
        border: 1px solid #eee;
        min-height: 480px;
    }

    /* Open Mega Menu on Hover */
    .main-menu>ul>li:has(> a[href*="products"]):hover .level-1,
    .main-menu>ul>li:has(> a[href*="urunler"]):hover .level-1,
    .main-menu>ul>li:nth-child(3):hover .level-1 {
        display: block !important;
    }

    /* Sidebar Tabs Container (Level 1 List Items) */
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li,
    .main-menu>ul>li:nth-child(3) .level-1>li {
        width: 250px !important;
        background: #fff !important;
        border-right: 1px solid #eee !important;
        border-bottom: none !important;
        position: static !important;
        /* To allow Level 2 absolute positioning relative to Level 1 */
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    /* Sidebar Links */
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li>a,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li>a,
    .main-menu>ul>li:nth-child(3) .level-1>li>a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px !important;
        color: #333 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: capitalize !important;
        border: none !important;
        background: transparent !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        margin-bottom: 0px !important;
    }

    /* Sidebar Tab Active State (Hover or via JS .active-pane) */
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li:hover>a,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li:hover>a,
    .main-menu>ul>li:nth-child(3) .level-1>li:hover>a,
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li.active-pane>a,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li.active-pane>a,
    .main-menu>ul>li:nth-child(3) .level-1>li.active-pane>a {
        background: #fff4ee !important;
        /* Light orange background */
        color: #F1562C !important;
        /* Orange text */
    }

    /* Sidebar Tab Active Arrow Color */
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li:hover>a::after,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li:hover>a::after,
    .main-menu>ul>li:nth-child(3) .level-1>li:hover>a::after,
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li.active-pane>a::after,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li.active-pane>a::after,
    .main-menu>ul>li:nth-child(3) .level-1>li.active-pane>a::after {
        color: #F1562C !important;
    }

    /* LEVEL 2: The Right Pane Container */
    .main-menu>ul>li:has(> a[href*="products"]) .level-2,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-2,
    .main-menu>ul>li:nth-child(3) .level-2 {
        position: absolute !important;
        top: 0 !important;
        left: 250px !important;
        /* Starts right after the 250px sidebar */
        width: calc(100% - 250px) !important;
        height: 100% !important;
        background: #fff !important;
        padding: 8px 15px 15px 15px !important;
        display: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        border: none !important;
        column-count: 2;
        column-gap: 20px;
        border-radius: 0 0 8px 0;
        overflow-y: auto;
    }

    /* Show Right Pane on Hover or .active-pane */
    .col-md-4 .booking-form-area .form-groupmain-menu>ul>li:has(> a[href*="products"]) .level-1>li:hover>.level-2,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li:hover>.level-2,
    .main-menu>ul>li:nth-child(3) .level-1>li:hover>.level-2,
    .main-menu>ul>li:has(> a[href*="products"]) .level-1>li.active-pane>.level-2,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-1>li.active-pane>.level-2,
    .main-menu>ul>li:nth-child(3) .level-1>li.active-pane>.level-2 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
    }

    /* LEVEL 3 Container (Holds Group titles) */
    .main-menu>ul>li:has(> a[href*="products"]) .level-2>li,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-2>li,
    .main-menu>ul>li:nth-child(3) .level-2>li {
        display: inline-block !important;
        /* Keep group together in column layout */
        width: 100% !important;
        margin-bottom: 10px !important;
        page-break-inside: avoid;
        break-inside: avoid;
        padding: 0 !important;
        border: none !important;
    }

    /* Group Title Links ("Giyim >") */
    .main-menu>ul>li:has(> a[href*="products"]) .level-2>li>a,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-2>li>a,
    .main-menu>ul>li:nth-child(3) .level-2>li>a {
        font-size: 16px !important;
        font-weight: 600 !important;
        margin-bottom: 5px !important;
        display: inline-block !important;
        text-transform: capitalize !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .main-menu>ul>li:has(> a[href*="products"]) .level-2>li>a:hover,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-2>li>a:hover,
    .main-menu>ul>li:nth-child(3) .level-2>li>a:hover {
        color: #111 !important;
        text-decoration: underline !important;
    }


    /* LEVEL 3 Container (Holds the actual products) */
    .main-menu>ul>li:has(> a[href*="products"]) .level-3,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-3,
    .main-menu>ul>li:nth-child(3) .level-3 {
        display: block !important;
        position: static !important;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        border: none !important;
    }

    /* LEVEL 4 Links */
    .main-menu>ul>li:has(> a[href*="products"]) .level-3>li,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-3>li,
    .main-menu>ul>li:nth-child(3) .level-3>li {
        display: block !important;
        padding: 0 !important;
        margin: 0 0 8px 0 !important;
        border: none !important;
    }

    .main-menu>ul>li:has(> a[href*="products"]) .level-3>li>a,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-3>li>a,
    .main-menu>ul>li:nth-child(3) .level-3>li>a {
        font-size: 14px !important;
        color: #555 !important;
        font-weight: 400 !important;
        display: block !important;
        padding: 0 !important;
        text-transform: capitalize !important;
        background: transparent !important;
        border: none !important;
    }

    .main-menu>ul>li:has(> a[href*="products"]) .level-3>li>a:hover,
    .main-menu>ul>li:has(> a[href*="urunler"]) .level-3>li>a:hover,
    .main-menu>ul>li:nth-child(3) .level-3>li>a:hover {
        color: #F1562C !important;
        text-decoration: underline !important;
    }


}

/* ========================================================
   REBORN PREMIUM GALLERY DESIGN
   ======================================================== */

.galeri {
    padding: 20px 0;
    background-color: #f4f6f9;
    /* Soft cool-grey background */
    font-family: 'Poppins', sans-serif;
}

/* Stunning Page Title */
.galeri h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    position: relative;
    text-transform: capitalize;
}

.galeri h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #F1562C, #ff4b4b);
    border-radius: 10px;
}

/* Sidebar Navigation Panel */
.sidebar-area {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 130px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
}

.widget_categories .widget_title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog_kategori_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog_kategori_list>li {
    margin-bottom: 5px;
}

.blog_kategori_list a {
    display: flex;
    align-items: center;
    color: #444;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.blog_kategori_list a:hover,
.blog_kategori_list a.active {
    color: #F1562C;
    transform: translateX(4px);
}

.blog_kategori_list ul {
    list-style: none;
    padding-left: 0px;
    margin-top: 5px;
    border-left: 1px dashed #e0e0e0;
}

.blog_kategori_list ul a {
    font-size: 0.95rem;
    padding: 8px 15px;
    color: #666;
    border-left: none;
}

.blog_kategori_list ul a:hover {
    color: #F1562C;
    background: transparent;
    border-left: none;
    transform: translateX(4px);
}

.blog_kategori_list ul a::before {
    content: '-';
    margin-right: 8px;
    color: #ccc;
    font-weight: bold;
}

/* Premium Gallery Cards */
.galeri .th-blog.blog-single {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: none;
    transition: all 0.4s ease;
    height: calc(100% - 30px);
    display: block;
}

.galeri .th-blog.blog-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(228, 30, 38, 0.15);
}

.galeri .blog-img {
    margin: 0;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

.galeri .blog-img a,
.galeri .blog-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.galeri .blog-img img {
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.galeri .th-blog.blog-single:hover .blog-img img {
    transform: scale(1.1);
}

/* The Overlay */
.galeri .blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    pointer-events: none;
}

.galeri .th-blog.blog-single:hover .blog-img::after {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(228, 30, 38, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

/* Floating Content over Image */
.galeri .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass to image underneath if a wraps around everything, but here wrap is inside */
}

.galeri .blog-title {
    margin: 0;
}

.galeri .blog-title a {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
    pointer-events: auto;
}

.galeri .th-blog.blog-single:hover .blog-title a {
    transform: translateY(-2px);
}

/* Series Feature Boxes */
.seri_box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.seri_box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(228, 30, 38, 0.1);
    border-color: rgba(228, 30, 38, 0.2);
}

.seri_box_icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 15px;
}

.seri_box_title {
    color: #111;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.seri_box:hover .seri_box_title {
    color: #F1562C;
}

@media (max-width: 991px) {
    .galeri h1 {
        font-size: 2.5rem;
    }

    .sidebar-area {
        margin-bottom: 40px;
    }
}