
/* font */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');



/* variable */

h1,h2,h3{
    font-weight: 500;
}
:root {      
    --alt-font: "Urbanist", sans-serif;
    --primary-font: "Urbanist", sans-serif;
    --base-color: #4A2E1B;
    --dark-gray: #1f1714;
    --medium-gray: #717580;
    --aluminium-gray: rgba(255, 255, 255);
}
footer{
    font-size: 16px;
}
/* reset */
body{
    font-size: 18px;
    line-height: 30px;
}
a:hover{
    color: var(--dark-gray);
}

header .navbar
{
    box-shadow: 0 25px 40px 0 rgb(0 0 0 / 42%);
    }

header .header-top-bar{
    border-bottom: 0.5px #ffffff1f solid;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
    background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-top-bar div>a {
    color: var(--light-gray);
}
.header-top-bar div>a:hover {
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a i {
    width: 35px;
}
header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
    color: var(--dark-gray);
}
header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
header .btn.btn-small {
    font-size: 15px; 
    padding: 10px 18px;
}
/* btn */
.btn.btn-hover-animation-switch.btn-link {
    padding-top: 0;
}
.btn { 
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0;
}
.btn.btn-extra-large {
    font-size: 18px;
    padding: 16px 32px;
}
.btn.btn-large {
    font-size: 17px;
    padding: 14px 28px;
}
.btn.btn-medium {
    font-size: 16px; 
    padding: 16px 24px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 14px; 
    padding: 9px 20px;
}

/* counter style */
.counter-style-04 .vertical-counter:after {
    color: var(--base-color);
}
.review-star-icon i {
    color: var(--base-color);
}

.google-maps-link a:hover {
    color: var(--white);
}

/* footer style */
footer ul li {
    margin-bottom: 1px;
}
footer p {
    line-height: 28px;
}
/* page title */
.page-title-double-large h1 {
    font-size: 4.375rem;
    line-height: 4.688rem;
}
.page-title-double-large h2 {
    font-size: 16px;
    line-height: 28px;
}

/* top bottom left right class */
.right-12 {
    right: 12%;
}

.bg-jungle-green {
    background-color: #2ebb79;
}
/* Outside box */
.outside-box-top-205px {
    margin-top: -205px;
}
/* Transparent background color */
.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, rgba(32, 35, 41, 1) 0%, transparent 80%);
}
@media (max-width: 1399px) {
    .xl-h-180px {
        height: 180px;
    }
    .xl-w-180px {
        width: 180px;
    }
}
@media (max-width: 1199px) {
    .outside-box-top-200px {
        margin-top: -150px;
    }
}
@media (max-width: 991px) {
    .outside-box-top-200px {
        margin-top: 0;
    }
    .navbar .navbar-nav .dropdown.open .dropdown-menu {
        padding-bottom: 15px;
    }
    .navbar .navbar-nav .dropdown .dropdown-menu.show {
        background-color: var(--dark-gray);
    }
    .navbar .navbar-nav .nav-link {
    color: #010101;
   }
   .ls-minus-2px{
    letter-spacing: -2px !important;
   }
}

header .left-nav .navbar-nav:before{
    background-color: #8b8b8b;
    height: 35px;
}

.btn-gradient-fast-pink-light-yellow{
        background-image: linear-gradient(to right, #4A2E1B, #283593, #3949ab) !important;
}



  .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5a2114 0%, #8c341f 25%, #c65a38 50%, #8c341f 75%, #5a2114 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    animation: fadeOut 1s ease-in-out 2.8s forwards; 
  }

  .logo {
    width: 350px;
    height: 350px;
    background: url('/assets/images/loader.svg') no-repeat center/contain;
    filter: blur(20px);
    opacity: 0;
    transform: scale(0.5);
    animation: logoAnim 2.8s ease-in-out forwards;
  }

  @keyframes logoAnim {
    0% {
      opacity: 0;
      filter: blur(20px);
      transform: scale(0.5);
    }
    30% {
      opacity: 1;
      filter: blur(0px);
      transform: scale(1);
    }
    60% {
      opacity: 1;
      filter: blur(0px);
      transform: scale(1.05);
    }
    100% {
      opacity: 0;
      transform: scale(3);
      filter: blur(10px);
    }
  }

  @keyframes fadeOut {
    0% {
      background: #111;
    }
    100% {
      background: transparent;
      visibility: hidden;
    }
  }

  

@media (max-width: 550px) {
    header .navbar-brand .mobile-logo {
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: 35px !important;
    }

    .header-button{
        display: none !important;
    }

    .custom-lang-selector{
        margin-right: 0px !important;
    }

    .custom-lang-button{
        border: 1px solid #00000052 !important;
        color: #4a4a4a !important;
    }
    .slider-baslik{
        font-size: 3.2rem;
        line-height: 3.3rem;
    }
    .slider-metin{
        font-size: 16px !important;
        line-height: 18px;
    }

}

.custom-lang-menu img{
   margin-right: 8px;
}


  .gd-gorusler-page {
            padding: 70px 0 80px;
            background: #f8fafc;
        }

        .gd-gorusler-header {
            text-align: center;
            margin-bottom: 45px;
        }

        .gd-gorusler-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 50px;
            background: rgba(13, 110, 253, 0.08);
            color: #0d6efd;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .3px;
            margin-bottom: 14px;
        }

        .gd-gorusler-title {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.2;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .gd-gorusler-desc {
            max-width: 760px;
            margin: 0 auto;
            color: #64748b;
            font-size: 16px;
            line-height: 1.8;
        }

        .gd-gorus-card {
            position: relative;
            height: 100%;
            background: #ffffff;
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.15);
            transition: all .25s ease;
            overflow: hidden;
        }

            .gd-gorus-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
            }

            .gd-gorus-card::before {
                content: "“";
                position: absolute;
                right: 18px;
                top: 4px;
                font-size: 88px;
                line-height: 1;
                color: rgba(13, 110, 253, 0.07);
                font-family: Georgia, serif;
                pointer-events: none;
            }

        .gd-gorus-user {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .gd-gorus-avatar {
            width: 72px;
            height: 72px;
            min-width: 72px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
            border: 3px solid #fff;
        }

        .gd-avatar-text {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .gd-gorus-user-info h3 {
            margin: 13px 0 5px;
            font-size: 19px;
            line-height: 1.1;
            font-weight: 700;
            color: #1e293b;
        }

        .gd-gorus-unvan {
            display: block;
            font-size: 14px;
            line-height:1.1;
            font-weight: 600;
            color: #0d6efd;
            margin-bottom: 4px;
        }

        .gd-gorus-tarih {
            display: block;
            font-size: 13px;
            color: #94a3b8;
        }

        .gd-gorus-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
            color: #f59e0b;
            font-size: 15px;
        }

        .gd-gorus-text {
            margin: 0;
            color: #475569;
            font-size: 15px;
            line-height: 1.9;
            word-break: break-word;
        }

        .gd-empty-box {
            background: #fff;
            border-radius: 22px;
            padding: 45px 25px;
            text-align: center;
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.15);
        }

            .gd-empty-box h4 {
                margin: 0 0 10px;
                color: #1e293b;
                font-size: 24px;
                font-weight: 700;
            }

            .gd-empty-box p {
                margin: 0;
                color: #64748b;
                font-size: 15px;
            }

        @media (max-width: 991.98px) {
            .gd-gorusler-page {
                padding: 55px 0 65px;
            }

            .gd-gorusler-title {
                font-size: 31px;
            }
        }

        @media (max-width: 767.98px) {
            .gd-gorusler-title {
                font-size: 27px;
            }

            .gd-gorusler-desc {
                font-size: 14px;
                line-height: 1.7;
            }

            .gd-gorus-card {
                padding: 22px 18px;
            }

            .gd-gorus-avatar {
                width: 62px;
                height: 62px;
                min-width: 62px;
            }

            .gd-avatar-text {
                font-size: 19px;
            }

            .gd-gorus-user-info h3 {
                font-size: 17px;
            }

            .gd-gorus-text {
                font-size: 14px;
                line-height: 1.8;
            }
        }

           .sa-service-detail-wrap {
            padding-top: 70px;
            padding-bottom: 70px;
            position: relative;
            overflow: hidden;
        }

        .sa-service-detail-wrap:before {
            content: "";
            position: absolute;
            left: -120px;
            top: 80px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(15, 47, 107, 0.05);
            z-index: 0;
        }

        .sa-service-detail-wrap:after {
            content: "";
            position: absolute;
            right: -100px;
            bottom: 40px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(23, 71, 158, 0.05);
            z-index: 0;
        }

        .sa-service-sidebar-col,
        .sa-service-visual-col,
        .sa-service-content-col {
            position: relative;
            z-index: 2;
        }

        .sa-service-sidebar-card {
            background: #ffffff;
            border: 1px solid rgba(15, 47, 107, 0.08);
            box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
            overflow: hidden;
            position: sticky;
            margin-top: 40px;
            top: 120px;
        }

        .sa-service-sidebar-head {
            padding: 22px 24px;
            background: linear-gradient(to right, #4A2E1B, #6f4c34, #4A2E1B)
        }

        .sa-service-sidebar-title {
            color: #ffffff;
            font-size: 20px;
            line-height: 28px;
            font-weight: 700;
            margin: 0;
        }

        .sa-service-sidebar-body {
            padding: 22px;
            background: #fff;
        }

        .sa-service-sidebar-group {
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(15, 47, 107, 0.08);
        }

        .sa-service-sidebar-group:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .sa-service-sidebar-category {
            display: block;
            font-size: 16px;
            line-height: 24px;
            font-weight: 700;
            color: #1f1714;
            margin-bottom: 12px;
        }

        .sa-service-sidebar-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sa-service-sidebar-list li {
            margin-bottom: 8px;
        }

        .sa-service-sidebar-list li:last-child {
            margin-bottom: 0;
        }

        .sa-service-sidebar-link {
            display: block;
            padding: 10px 14px;
            margin-bottom: 10px;
            color: #2b2b2f;
            background: #f6f8fc;
            text-decoration: none;
            font-size: 14px;
            line-height: 22px;
            font-weight: 600;
            transition: all .3s ease;
        }

        .sa-service-sidebar-link:hover {
            background: rgba(23, 71, 158, 0.08);
            color: #4a2e1b;
            transform: translateX(4px);
        }

        .sa-service-sidebar-link.active {
            background: linear-gradient(to right, #4A2E1B, #6f4c34, #4A2E1B);
            color: #ffffff;
        }

        .sa-service-visual-box {
            position: relative;
            padding: 18px;
            border-radius: 28px;
            background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
            box-shadow: 0 20px 60px rgba(16, 24, 40, 0.10);
            border: 1px solid rgba(15, 47, 107, 0.08);
            overflow: hidden;
        }

        .sa-service-visual-box:before {
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(23, 71, 158, 0.08);
        }

        .sa-service-visual-box:after {
            content: "";
            position: absolute;
            left: -70px;
            bottom: -70px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(15, 47, 107, 0.06);
        }

        .sa-service-image-frame {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            min-height: 320px;
            background: #eef2f7;
            z-index: 2;
        }

        .sa-service-image-frame img {
            width: 100%;
            display: block;
            border-radius: 22px;
            object-fit: cover;
        }

        .sa-service-visual-footer {
            position: relative;
            z-index: 2;
            margin-top: 18px;
            border-radius: 20px;
            background: #4a2e1b;
            padding: 22px 22px;
            overflow: hidden;
        }

        .sa-service-visual-footer:before {
            content: "";
            position: absolute;
            top: -30px;
            right: -30px;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .sa-service-visual-footer-title {
            display: block;
            color: #ffffff;
            font-size: 18px;
            margin-top: 15px;
            line-height: 26px;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .sa-service-visual-list {
            margin: 0;
            padding: 0;
            list-style: none;
            position: relative;
            z-index: 2;
        }

        .sa-service-visual-list li {
            color: rgba(255,255,255,0.92);
            font-size: 15px;
            line-height: 24px;
            margin-bottom: 8px;
            padding-left: 22px;
            position: relative;
        }

        .sa-service-visual-list li:last-child {
            margin-bottom: 0;
        }

        .sa-service-visual-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 9px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffffff;
        }

        .sa-service-content-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(23, 71, 158, 0.08);
            color: #4a2e1b;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.2px;
            margin-bottom: 18px;
        }

        .sa-service-content-box {
            padding-left: 20px;
        }

        .sa-service-title {
            font-size: 32px;
            line-height: 48px;
            color: #1f2430;
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
        }

        .sa-service-divider {
            width: 90px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(to right, #4A2E1B, #6f4c34, #4A2E1B);
            margin-bottom: 24px;
        }

        .sa-service-cta-row {
            margin-top: 55px;
            padding-top: 35px;
            border-top: 1px solid rgba(15, 47, 107, 0.10);
        }

        .sa-service-cta-title {
            color: #1f2430;
            font-weight: 700;
            letter-spacing: -0.8px;
            margin: 0;
        }

        .sa-service-visual-cta {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .sa-service-visual-cta-text {
            display: block;
            font-size: 14px;
            line-height: 22px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .sa-service-visual-cta-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .sa-service-btn-primary {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            background: #ffffff;
            color: #4a2e1b;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all .3s ease;
        }

        .sa-service-btn-primary:hover {
            background: #eaeef6;
            color: #1f1714;
        }

        .sa-service-btn-secondary {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.6);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all .3s ease;
        }

        .sa-service-btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            color: #ffffff;
        }

        @media (max-width: 1199px) {
            .sa-service-sidebar-card {
                position: static;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 991px) {
            .sa-service-detail-wrap {
                padding-top: 50px;
                padding-bottom: 50px;
            }

            .sa-service-content-box {
                padding-left: 0;
                margin-top: 35px;
            }

            .sa-service-title {
                font-size: 34px;
                line-height: 40px;
            }
        }

        @media (max-width: 767px) {
            .sa-service-image-frame {
                min-height: auto;
            }

            .sa-service-title {
                font-size: 28px;
                line-height: 34px;
            }

            .sa-service-visual-box {
                padding: 14px;
                border-radius: 22px;
            }

            .sa-service-sidebar-head,
            .sa-service-sidebar-body {
                padding: 18px;
            }
        }

        .footer-demo img{
            max-height: 65px !important;
        }

        .alt-font2{
            font-family: 'Inter',sans-serif;
        }

        .ngd-bg{
            background: linear-gradient(135deg, #5a2114 0%, #8c341f 25%, #c65a38 50%, #8c341f 75%, #5a2114 100%);
        }

        .bg-light-red-grey{
                background-color: #b7503229;
        }

        .shop-box {
    position: relative;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* hover efekti */
.shop-box:hover {
    border-color: #a84328;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(168, 67, 40, 0.18);
}

/* iç görsel varsa */
.shop-box img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* başlık */
.shop-box .title {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 8px;
}

/* açıklama */
.shop-box .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* küçük badge opsiyonel */
.shop-box .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #a84328;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
}