:root {
    /* --- YENİ RENK PALETİ (Genç Seyyah) --- */
    --primary-color: #00a8a5 !important; /* Turkuaz - Ana Renk */
    --secondary-color: #faa61a !important; /* Turuncu - İkincil Renk */
    --accent-color: #ee304e !important; /* Kırmızı - Vurgu/İkon Rengi */
    --light-bg: #e6e7e8 !important; /* Açık Gri - Arka Planlar */
    --dark-text: #333333 !important; /* Koyu Metin Rengi */
    --white: #ffffff !important;
}

/* --- GENEL AYARLAR --- */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    font-family: "Roboto", sans-serif;
    color: var(--dark-text);
}

html {
    scroll-padding-top: 110px;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-text);
}

a {
    text-decoration: none !important;
    outline: none;
    color: var(--primary-color);
    transition: 0.3s;
}

    a:hover {
        color: var(--secondary-color);
    }

p {
    font-size: 16px;
    line-height: 25px;
}

/* --- BOOTSTRAP RENK OVERRIDE (EZME) --- */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-dark {
    color: var(--dark-text) !important;
}

/* --- BUTONLAR --- */
.btn {
    font-weight: 600;
    transition: .5s;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white);
    box-shadow: inset 0 0 0 0 var(--primary-color);
}

    .btn.btn-primary:hover {
        background-color: var(--secondary-color) !important;
        border-color: var(--secondary-color) !important;
        box-shadow: inset 300px 0 0 0 var(--white) !important; /* Efekt */
        color: var(--primary-color) !important;
    }

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--primary-color);
}

    .btn.btn-light:hover {
        box-shadow: inset 300px 0 0 0 var(--primary-color);
        color: var(--bs-light) !important;
    }

.btn-hover {
    transition: 0.5s;
}

    .btn-hover:hover {
        color: var(--secondary-color) !important;
    }

/* --- NAVBAR (MENÜ) --- */
.navbar {
    padding: 0;
    transition: all 0.5s ease;
    background: var(--light-bg) !important;

}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--dark-text) !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark-text) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-light .navbar-brand img {
    max-height: 90px; /* Logoyu biraz büyüttük */
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--white) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark-text) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--light-bg) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary-color);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--primary-color) !important;
}

    .topbar a, .topbar a i {
        transition: 0.5s;
    }

        .topbar a:hover, .topbar a i:hover {
            color: var(--secondary-color) !important;
        }

@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        position: absolute;
        width: 70px;
        height: 70px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
        background: var(--primary-color);
        color: var(--white);
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .header-carousel .owl-nav .owl-prev {
        left: 20px;
    }

    .header-carousel .owl-nav .owl-next {
        right: 20px;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            box-shadow: inset 150px 0 0 0 var(--light-bg) !important;
            color: var(--primary-color) !important;
        }

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        position: relative;
        width: 100%;
        height: 700px;
        margin-top: 0px !important; /* DÜZELTİLDİ: Boşluk sıfırlandı */
        display: block;
        object-fit: cover;
        transition: 0.5s;
    }

        .header-carousel .header-carousel-item .carousel-caption {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            padding: 100px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, .5);
        }

            .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
                position: relative;
                width: 75%;
            }
/*** Carousel Hero Header End ***/

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

    .section-title .sub-style, .sub-title {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        color: var(--primary-color);
    }

        .section-title .sub-style::before, .sub-title::before {
            content: "";
            width: 100px;
            position: absolute;
            top: 50%;
            left: 0; /* veya right */
            transform: translateY(-50%);
            margin-top: 8px;
            margin-left: -100px;
            border: 1px solid var(--primary-color) !important;
        }
        /* Bu kısım orijinal kodda karışıktı, basitçe düzelttim */
        .section-title .sub-style::after, .sub-title::after {
            content: "";
            width: 50px;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            margin-bottom: 5px;
            margin-left: -50px;
            border: 1px solid var(--primary-color) !important;
        }

        .sub-title::before {
            right: 0;
            left: auto;
            margin-right: -100px;
            margin-left: 0;
        }

        .sub-title::after {
            right: 0;
            left: auto;
            margin-right: -50px;
            margin-left: 0;
        }

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

    .bg-breadcrumb .breadcrumb-item a {
        color: var(--white) !important;
    }
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

    .service .service-item .service-img {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .service .service-item .service-img img {
            transition: 0.5s;
        }

        .service .service-item .service-img::before {
            width: 100%;
            height: 0;
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            border-top-right-radius: 10px;
            border-top-left-radius: 10px;
            transition: 0.5s;
            z-index: 5;
        }

    .service .service-item:hover .service-img::before {
        height: 100%;
        background: rgba(0, 168, 165, .3); /* Turkuaz Opak */
    }

    .service .service-item .service-img:hover img {
        transform: scale(1.3);
    }

    .service .service-item .service-content {
        position: relative;
        z-index: 2;
    }

        .service .service-item .service-content::before {
            width: 100%;
            height: 8px;
            position: absolute;
            content: "";
            bottom: 0;
            left: 0;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            background: rgba(0, 168, 165, .5);
            transition: 0.5s;
            z-index: 3;
        }

    .service .service-item:hover .service-content::before {
        background: rgba(0, 168, 165, .5);
        height: 100%;
    }

    .service .service-item .service-content .service-content-inner {
        transition: 0.5s;
    }

    .service .service-item:hover .service-content .service-content-inner {
        position: relative;
        color: var(--white) !important;
        z-index: 9;
    }

        .service .service-item:hover .service-content .service-content-inner h5 {
            color: var(--secondary-color);
        }
/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

    .about .about-img .about-img-inner {
        position: absolute;
        left: 0;
        bottom: 0;
        border: 10px solid;
        border-color: var(--white);
        border-radius: 50%;
    }

    .about .about-img .about-experience {
        position: absolute;
        top: 125px;
        left: -125px;
        transform: rotate(-90deg);
        background: transparent;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 4px;
    }
/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    background: var(--light-bg);
    transition: 0.5s;
}

    .feature .feature-item::before {
        width: 0;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 10px;
        transition: 0.5s;
    }

    .feature .feature-item:hover::before {
        width: 100%;
        background: var(--primary-color);
    }

    .feature .feature-item .feature-icon {
        display: inline-flex;
        border-radius: 10px;
        transition: 0.5s;
    }

    .feature .feature-item:hover .feature-icon {
        position: relative;
        z-index: 2;
    }

    .feature .feature-item:hover .feature-content {
        position: relative;
        color: var(--white);
        z-index: 2;
    }

        .feature .feature-item:hover .feature-content h5 {
            color: var(--dark-text);
        }

.feature-icon .p-3 {
    background-color: var(--light-bg) !important;
}

.feature-icon i {
    color: var(--accent-color) !important;
}
/*** Feature End ***/

/*** Appointment Start ***/
.appointment {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

    .appointment .appointment-form {
        background: rgba(239, 162, 134, 0.3);
    }
/*** Appointment End ***/

/*** Youtube Video ***/
.video {
    position: relative;
}

    .video .btn-play {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-sizing: content-box;
        display: block;
        width: 33px;
        height: 44px;
        border-radius: 50%;
        transition: 0.5s;
    }

        .video .btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: block;
            width: 115px;
            height: 115px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
            transition: 0.5s;
        }

        .video .btn-play:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: block;
            width: 100px;
            height: 100px;
            background: var(--secondary-color);
            border-radius: 50%;
            transition: all 300ms;
        }

        .video .btn-play span {
            display: block;
            position: relative;
            z-index: 3;
            width: 0;
            height: 0;
            border-left: 33px solid var(--white);
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
            margin-left: 5px;
        }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

    #videoModal .modal-dialog {
        position: relative;
        max-width: 800px;
        margin: 60px auto 0 auto;
    }

    #videoModal .modal-body {
        position: relative;
        padding: 0px;
    }

    #videoModal .close {
        position: absolute;
        width: 30px;
        height: 30px;
        right: 0px;
        top: -30px;
        z-index: 999;
        font-size: 30px;
        font-weight: normal;
        color: #ffffff;
        background: #000000;
        opacity: 1;
    }
/*** Youtube Video End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

    .team .team-item .team-img::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        transition: 0.5s;
    }

    .team .team-item .team-img .team-icon {
        position: absolute;
        bottom: -125px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
    }

    .team .team-item .team-img:hover .team-icon {
        margin-bottom: 145px;
    }

.team .team-item:hover .team-img::before {
    background: rgba(0, 168, 165, .3);
}

.team .team-item .team-content {
    color: var(--primary-color);
    transition: 0.5s;
}

    .team .team-item .team-content h5 {
        color: var(--secondary-color);
        transition: 0.5s;
    }

.team .team-item:hover .team-content h5 {
    color: var(--dark-text);
}

.team .team-item:hover .team-content {
    background: var(--primary-color);
    color: var(--white);
}
/*** Team End ***/

/* ========================================= */
/* YENİ EKLENEN ÖZELLEŞTİRMELER (FIXED)      */
/* ========================================= */

/* --- İSTATİSTİK KARTLARI (4'LÜ YAPI) --- */
.istatistik-wrapper {
    margin-top: -80px; /* Slider üzerine bindirme */
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--primary-color) !important;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    /* Hover Efekti (İçi Beyaz, Yazılar Turuncu) */
    .stat-card:hover {
        background: #ffffff !important;
        border: 2px solid var(--secondary-color) !important;
        transform: translateY(-5px);
    }

        .stat-card:hover h2,
        .stat-card:hover p,
        .stat-card:hover small,
        .stat-card:hover i {
            color: var(--secondary-color) !important;
        }

    .stat-card h2 {
        font-weight: 800 !important;
        color: #ffffff !important;
        font-size: 2rem;
        margin-bottom: 2px;
    }

    .stat-card p {
        font-weight: 700 !important;
        color: #ffffff !important;
        font-size: 13px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin: 0;
    }

.stat-icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* --- GEZİ ROTASI (BLOG KARTLARI) --- */
.blog .blog-item .blog-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

    .blog .blog-item .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.blog .blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog .blog-item .blog-centent {
    background: var(--light-bg);
    border: 1px solid var(--primary-color);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* --- GALERİ SLIDER (MODERN) --- */
.testimonial-carousel {
    padding: 0 50px;
    position: relative;
}

    .testimonial-carousel .testimonial-item img {
        height: 600px !important; /* İsteğinize göre bu değeri 550px veya 600px yapabilirsiniz */
        width: 100%;
        object-fit: cover !important; /* Resmin en-boy oranını bozmadan kutuyu doldurmasını sağlar */
        border-radius: 15px;
    }

    /* Galeri Ok Tuşları */
    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        background-color: var(--primary-color) !important;
        color: #fff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 20px !important;
        margin: 0 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }

    .testimonial-carousel .owl-nav .owl-prev {
        left: 0 !important;
    }

    .testimonial-carousel .owl-nav .owl-next {
        right: 0 !important;
    }

    /* Galeri Noktaları */
    .testimonial-carousel .owl-dots {
        margin-top: 20px !important;
        display: flex;
        justify-content: center;
    }

        .testimonial-carousel .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            background: #ddd;
            display: block;
            border-radius: 50%;
            margin: 0 5px;
            transition: 0.3s;
        }

        .testimonial-carousel .owl-dots .owl-dot.active span {
            background: var(--primary-color);
            width: 30px;
            border-radius: 10px;
        }

/* --- FOOTER (DÜZELTİLDİ) --- */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)); /* URL Hatası Giderildi */
    background-color: var(--dark-text);
    padding: 50px 0;
}

.footer-item a {
    color: rgba(255,255,255,0.7) !important;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

    .footer-item a:hover {
        color: var(--primary-color) !important;
        padding-left: 5px;
    }

.copyright {
    background: var(--dark-text) !important;
}

/* --- DİĞER BİLEŞENLER --- */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    z-index: 99;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: #fff;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

/* --- 1. MENÜ YÜKSEKLİĞİ (Daha İnce) --- */
.navbar {
    padding: 0 !important; /* Fazla boşlukları al */
    min-height: 60px !important; /* Yüksekliği küçült */
}

.navbar-brand img {
    max-height: 50px !important; /* Logoyu menüye göre ayarla */
}

.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px !important; /* Link boşluklarını daralt */
}

/* --- 2. OK İŞARETLERİ (Slider & Galeri) --- */
/* Standart Hali: Şeffaf, Beyaz Çizgi, Beyaz Ok */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    transition: 0.4s;
}

    /* Hover Hali: İçi Beyaz, Çizgi Turkuaz, Ok Turkuaz */
    .header-carousel .owl-nav .owl-prev:hover,
    .header-carousel .owl-nav .owl-next:hover,
    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        background: #ffffff !important;
        border: 2px solid var(--primary-color) !important;
        color: var(--primary-color) !important;
        box-shadow: none !important;
    }

/* --- 3. FOOTER BAŞLIKLARI TURUNCU --- */
#footer h4 {
    color: var(--secondary-color) !important;
}

/* --- 6. DETAY SAYFASI BAŞLIK KÜÇÜLTME & YAKLAŞTIRMA --- */
.page-header {
    padding-bottom: 1px !important; /* Alt boşluğu azalt */
    margin-bottom: 1px !important;
}

    .page-header h1.display-3 {
        font-size: 2.5rem !important; /* Başlığı küçült */
    }

/* --- GENEL KIRMIZI İKONLAR (Kartlar ve Vurgular) --- */
/* Blog kartlarındaki konum, saat vb. ikonları kırmızı yap */
.blog-item i,
.blog-item .fa-map-marker-alt,
.blog-item .fa-clock,
.blog-item .fa-tree,
.blog-item .fa-ship {
    color: var(--accent-color) !important; /* Kırmızı Rengi Çeker */
}

/* "İncele" butonundaki ok işaretini de kırmızı yapalım mı? */
.blog-item .btn i {
    color: #ffffff !important; /* Buton içi beyaz kalsın */
}
/* --- MOBİLDE "GEZİDEN KARELER" OKLARI RESİM İÇİNE --- */

@media (max-width: 768px) {
    /* 1. Mobilde Gizlenen Okları Geri Aç */
    .testimonial-carousel .owl-nav {
        display: block !important;
        /* Konumlandırma için gerekli */
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        z-index: 10; /* Resimlerin üzerinde olması için */
    }

        /* 2. Okların Stilini ve Konumunu Ayarla */
        .testimonial-carousel .owl-nav .owl-prev,
        .testimonial-carousel .owl-nav .owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px !important; /* Boyut */
            height: 40px !important;
            /* Arka Plan: Yarı saydam beyaz (Görünürlük için) */
            background-color: rgba(255, 255, 255, 0.8) !important;
            /* Ok Rengi: Turkuaz */
            color: var(--primary-color) !important;
            border-radius: 50% !important; /* Yuvarlak */
            border: none !important; /* Eski çerçeveyi kaldır */
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 20px !important;
            margin: 0 !important;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important; /* Hafif gölge */
        }

        /* 3. Sağ ve Sol Konumlandırma */
        .testimonial-carousel .owl-nav .owl-prev {
            left: 10px !important;
        }
        /* Soldan 10px içeri */
        .testimonial-carousel .owl-nav .owl-next {
            right: 10px !important;
        }
    /* Sağdan 10px içeri */

    /* 4. Noktaları (dots) gizleyelim, oklar yeterli */
    .testimonial-carousel .owl-dots {
        display: none !important;
    }
}
/* ================================================== */
/* GEZİDEN KARELER (TESTIMONIAL) OKLARI - TÜM CİHAZLAR */
/* ================================================== */

/* 1. Okları içeren kapsayıcıyı resimlerin üzerine konumlandır */
.testimonial-carousel .owl-nav {
    display: block !important; /* Her zaman göster */
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10; /* Resimlerin üzerinde kalması için */
    pointer-events: none; /* Tıklamaların oklara geçmesini sağlar */
}

    /* 2. Okların (Sol ve Sağ) Ortak Stili */
    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px !important; /* Boyut */
        height: 45px !important;
        /* Arka Plan: Yarı saydam beyaz (Görünürlük için) */
        background-color: rgba(255, 255, 255, 0.9) !important;
        /* Ok Rengi: Turkuaz */
        color: var(--primary-color) !important;
        border-radius: 50% !important; /* Yuvarlak */
        border: none !important; /* Çerçeveyi kaldır */
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px !important;
        margin: 0 !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important; /* Belirgin bir gölge */
        transition: all 0.3s ease;
        pointer-events: auto; /* Okların tıklanabilir olması için */
        cursor: pointer;
    }

        /* 3. Hover Efekti (Üzerine gelince) */
        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background-color: var(--primary-color) !important; /* Arka plan Turkuaz */
            color: #ffffff !important; /* Ok rengi Beyaz */
            transform: translateY(-50%) scale(1.1); /* Hafif büyütme efekti */
        }

    /* 4. Sağ ve Sol Konumlandırma (Kenarlardan boşluk) */
    .testimonial-carousel .owl-nav .owl-prev {
        left: 20px !important;
    }

    .testimonial-carousel .owl-nav .owl-next {
        right: 20px !important;
    }

/* 5. Noktaları (dots) her zaman gizle */
.testimonial-carousel .owl-dots {
    display: none !important;
}

/* --- MOBİL İÇİN KÜÇÜK BİR AYAR (Opsiyonel) --- */
@media (max-width: 768px) {
    /* Mobilde oklar biraz daha küçük ve kenara yakın olsun */
    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }

    .testimonial-carousel .owl-nav .owl-prev {
        left: 10px !important;
    }

    .testimonial-carousel .owl-nav .owl-next {
        right: 10px !important;
    }
}
/* ========================================= */
/* MASAÜSTÜ MENÜ ORTALAMA (LOGO SOLDA)       */
/* ========================================= */

@media (min-width: 992px) {
    /* Menü kapsayıcısını esnek kutu yap ve ortala */
    .navbar-collapse {
        display: flex !important;
        justify-content: center !important;
    }

    /* Link grubunu ortala */
    .navbar-nav {
        margin-left: auto !important; /* Soldan it */
        margin-right: auto !important; /* Sağdan it */
        float: none !important;
    }
}
/* ================================================== */
/* ACCORDION (SIKÇA SORULAN SORULAR) RENK DÜZELTMESİ  */
/* ================================================== */

/* 1. Aktif (Açık) Olan Maddenin Rengi */
.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important; /* Yazı Rengi: Turkuaz */
    background-color: rgba(0, 168, 165, 0.1) !important; /* Arka Plan: %10 Opaklıkta Turkuaz */
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125) !important; /* Alt çizgi */
}

/* 2. Tıklayınca Oluşan Çerçeve (Focus Ring - Mavi Parlama) */
.accordion-button:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 165, 0.25) !important; /* Turkuaz hafif parlama */
}

/* 3. Açık Durumdaki Ok İşaretini (Chevron) Turkuaz Yap */
/* Bootstrap SVG ikonunun rengini hex kodu (#00a8a5) ile değiştirdik */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300a8a5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
/* Tablo Hücrelerini Kutucuk Yapma (Card Style Table) */
.table-cards {
    border-collapse: separate; /* Hücreleri birbirinden ayır */
    border-spacing: 15px 15px; /* Yatay ve Dikey boşluk (g-4 etkisi) */
    width: 100%;
}

    .table-cards th,
    .table-cards td {
        padding: 20px;
        border-radius: 10px; /* Köşeleri yuvarla */
        border: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Hafif gölge */
        text-align: center;
        vertical-align: middle;
        transition: transform 0.2s;
    }

        /* Hover Efekti: Mouse üzerine gelince hafif büyüsün */
        .table-cards td:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        /* --- SÜTUN RENKLENDİRMELERİ (Sitenin Turkuaz tonlarına uygun) --- */

        /* 1. Sütun: Tarih (Koyu Gri/Mavi tonu) */
        .table-cards th:nth-child(1) {
            background-color: #2c3e50;
            color: #fff;
        }

        .table-cards td:nth-child(1) {
            background-color: #f8f9fa;
            color: #2c3e50;
            font-weight: bold;
            border-left: 5px solid #2c3e50;
        }

        /* 2. Sütun: Öğrenci (Ana Renk - Turkuaz) */
        .table-cards th:nth-child(2) {
            background-color: #009688;
            color: #fff;
        }
        /* Teal */
        .table-cards td:nth-child(2) {
            background-color: #e0f2f1;
            color: #00695c;
            font-weight: bold;
        }

        /* 3. Sütun: İlçe (Mavi/Cyan tonu) */
        .table-cards th:nth-child(3) {
            background-color: #00acc1;
            color: #fff;
        }

        .table-cards td:nth-child(3) {
            background-color: #e0f7fa;
            color: #006064;
            font-weight: 600;
        }

        /* 4. Sütun: Sefer (Yeşilimsi ton) */
        .table-cards th:nth-child(4) {
            background-color: #26a69a;
            color: #fff;
        }

        .table-cards td:nth-child(4) {
            background-color: #e0f2f1;
            color: #004d40;
            font-weight: 600;
        }

        /* 5. Sütun: Sınıflar (Turuncu/Uyarı tonu - Farklılık olsun diye) */
        .table-cards th:nth-child(5) {
            background-color: #fb8c00;
            color: #fff;
        }

        .table-cards td:nth-child(5) {
            background-color: #fff3e0;
            color: #e65100;
        }

/* Mobil Uyumluluk için */
@media (max-width: 768px) {
    .table-cards {
        border-spacing: 5px 10px;
    }

        .table-cards th, .table-cards td {
            padding: 10px;
            font-size: 14px;
        }
}
/* !important ekleyerek temanın kendi stilini eziyoruz */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6) !important; /* Arka plan rengi */
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}



/* 1. Resimleri Sabitleme */
.fix-img {
    height: 200px; /* Resim yüksekliği sabitlenir */
    width: 100%;
    object-fit: cover; /* Resim sünmez, kırpılarak ortalanır */
}

/* 2. Başlık Sınırlama (Tek Satır) */
.limit-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* 3. Açıklama Sınırlama (3 Satırla Sınırla) */
.limit-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Kaç satır görünecek? */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 75px; /* Kayma olmaması için min-yükseklik (yaklaşık 3 satır boyu) */
}

/* 4. Kartın Kendisi (Flex ile alt butonu sabitleme) */
.blog-item {
    height: 100%; /* Sütun boyunca uzasın */
    display: flex;
    flex-direction: column;
}

.blog-centent { /* Sizin kodunuzdaki typo: 'centent' */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--light-bg);
}

/* Butonu en alta itmek için */
.btn-bottom {
    margin-top: auto;
}


/* Telefon Çerçevesi */
.phone-mockup {
    border-radius: 20px;
    border: 6px solid #111;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    background: #fff;
    max-width: 160px; /* Genişliği biraz azalttık ki yan yana sığsınlar */
    width: 100%;
    transition: transform 0.3s;
    flex-shrink: 0; /* Resimlerin sıkışıp bozulmasını engeller */
}

    .phone-mockup:hover {
        transform: translateY(-5px);
        z-index: 10; /* Üzerine gelince öne çıksın */
    }

/* --- 1. Marka Renkleri Animasyonu (Hazırlan Başlıyoruz için) --- */
/* Sıralama: Beyaz -> Turkuaz -> Turuncu -> Kırmızı -> Beyaz */

/* "Hazırlan Başlıyoruz" için Nefes Alma Efekti */
@keyframes whitePulse {
    0% {
        transform: scale(1); /* Normal boyut */
        text-shadow: 0 0 0 rgba(255, 255, 255, 0); /* Gölge yok */
    }

    50% {
        transform: scale(1.05); /* %5 Büyür (Nefes alır) */
        /* Arkasında beyaz bir ışık hüzmesi parlar */
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4);
    }

    100% {
        transform: scale(1); /* Geri döner */
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

.ready-pulse-anim {
    color: #ffffff !important; /* Kesinlikle Beyaz */
    font-weight: 800; /* Kalın ve tok duruş */
    /* 2 saniyede bir nefes alır, sonsuza kadar sürer */
    animation: whitePulse 2s ease-in-out 3 forwards;
    display: inline-block; /* Animasyonun düzgün çalışması için gerekli */
}



.text-brand-anim {
    /* Yazı daha dolgun dursun diye kalınlığı artırdık */
    font-weight: 800;
    animation: brandColorSequence 6s linear 1 forwards;
}



/* --- 2. Hareket Animasyonları (Keyframes) --- */

/* Yukarıdan Aşağı İniş (Fly In) */
@keyframes customFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Aşağıdan Yukarı Çıkış (Slide Up) */
@keyframes customFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Büyüyerek Gelme (Pop In / Zoom) */
@keyframes customZoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

/* --- 3. Animasyon Sınıfları (Class Definitions) --- */
/* .owl-item.active zorunluluğunu kaldırdık, her zaman çalışır */

.animate-fly-in {
    animation-name: customFadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both; /* Bittikten sonra olduğu yerde kalsın */
}

.animate-pop-in {
    animation-name: customZoomIn;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate-slide-up {
    animation-name: customFadeInUp;
    animation-duration: 2s;
    animation-fill-mode: both;
}

/* --- 4. Gecikme Ayarları (Delay) --- */
.delay-05 {
    animation-delay: 0.5s;
}

.delay-10 {
    animation-delay: 1.0s;
}

.delay-15 {
    animation-delay: 1.5s;
}

.delay-20 {
    animation-delay: 2.0s;
}

.delay-25 {
    animation-delay: 2.5s;
}
/* --- Başvuru Butonu Özel Stili --- */
.btn-basvuru {
    background-color: #faa61a !important;
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(250, 166, 26, 0.4);
    transition: all 0.3s ease;
}

    .btn-basvuru:hover {
        background-color: #e59415 !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(250, 166, 26, 0.6);
        color: #ffffff !important;
    }

/* ================================================== */
/* MOBİL NAVBAR + BAŞVURU BUTONU + HERO DÜZENLEMESİ   */
/* Not: Mobilde Başvuru butonu nav dışında kalır.       */
/* ================================================== */

@media (max-width: 991.98px) {
    .container,
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .glowing,
    .topbar {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
    }

    #main-nav-wrapper {
        position: relative !important;
        z-index: 9999 !important;
        background-color: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

        #main-nav-wrapper .navbar {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            width: 100% !important;
            min-height: 64px !important;
            padding: 6px 16px !important;
            background-color: #ffffff !important;
            box-shadow: none !important;
        }

        #main-nav-wrapper .navbar-brand img,
        .navbar-light .navbar-brand img {
            max-height: 48px !important;
        }

        #main-nav-wrapper .navbar-toggler,
        .navbar.navbar-expand-lg .navbar-toggler {
            padding: 8px 16px !important;
            border: 1px solid var(--primary-color) !important;
            color: var(--primary-color) !important;
        }

        #main-nav-wrapper .navbar-collapse {
            margin-top: 10px !important;
            border-top: 1px solid #dddddd !important;
            background-color: #ffffff !important;
        }

        #main-nav-wrapper .navbar-nav .nav-link,
        .sticky-top.navbar-light .navbar-nav .nav-link {
            padding: 10px 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            color: var(--dark-text) !important;
        }

        #main-nav-wrapper > .d-block.d-lg-none {
            padding: 8px 24px 12px 24px !important;
            background-color: #ffffff !important;
            border-top: 1px solid #eeeeee !important;
        }

            #main-nav-wrapper > .d-block.d-lg-none .btn-basvuru {
                margin-top: 0 !important;
                padding-top: 10px !important;
                padding-bottom: 10px !important;
                font-size: 1rem !important;
            }

    .header-carousel .header-carousel-item {
        height: 560px !important;
        margin-top: 0 !important;
    }

        .header-carousel .header-carousel-item img {
            height: 100% !important;
            object-fit: cover !important;
        }

        .header-carousel .header-carousel-item .carousel-caption,
        .header-carousel .carousel-caption {
            padding: 18px 12px 24px 12px !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
        }

            .header-carousel .carousel-caption .carousel-caption-content {
                width: 100% !important;
                padding: 0 !important;
                margin-top: 0 !important;
            }

            .header-carousel .carousel-caption h5 {
                font-size: 1rem !important;
                line-height: 1.25 !important;
                letter-spacing: 2px !important;
                margin-top: 0 !important;
                margin-bottom: 12px !important;
            }

            .header-carousel .carousel-caption h1.display-1 {
                font-size: 1.85rem !important;
                line-height: 1.15 !important;
                margin-bottom: 14px !important;
            }

            .header-carousel .carousel-caption p {
                font-size: 0.9rem !important;
                line-height: 1.45 !important;
                margin-bottom: 12px !important;
            }

    .istatistik-wrapper {
        margin-top: -40px !important;
    }

    .stat-card {
        padding: 20px 10px;
        margin-bottom: 15px;
    }

    .contact-map iframe {
        width: 100% !important;
    }
}

@media (max-width: 767.98px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin-top: 0 !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .stat-card h2 {
        font-size: 1.5rem;
    }

    .testimonial-carousel {
        padding: 0;
    }

        .testimonial-carousel .testimonial-item img {
            height: 350px !important;
        }
}

@media (max-width: 390px) {
    .header-carousel .header-carousel-item {
        height: 590px !important;
    }

    .header-carousel .carousel-caption h1.display-1 {
        font-size: 1.65rem !important;
    }

    .header-carousel .carousel-caption p {
        font-size: 0.86rem !important;
        line-height: 1.38 !important;
    }

}


/*başvuru butonu */

/*NEON PARLAMALI VE HAREKETLİ KÖŞE KARTI STİLLERİ -->*/


.gs-merkez-hizala {
    text-align: center !important;
}

/* Sağ üst köşede EKRANA SABİTLENMİŞ Neon Kart */
.gs-bursa-kose-kart {
    position: fixed !important;
    top: 100px;
    right: 25px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    text-decoration: none !important;
    max-width: 380px;
    padding: 16px 20px;
    z-index: 99999 !important;
    text-align: left;
    /* DEĞİŞİKLİK: Yazı rengi her zaman BEYAZ olacak, asla okunmamazlık yapmayacak */
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Beyazın her renkte cam gibi parlaması için hafif gölge */

    animation: gsNeonRenkCumbusu 4s infinite alternate;
}

/* SADECE ARKA PLAN RENK DEĞİŞTİRİR, YAZI BEYAZ KALIR */
@keyframes gsNeonRenkCumbusu {
    0% {
        /* 1. Aşama: Turkuaz Arka Plan */
        background-color: #00a8a5;
        box-shadow: 0 0 15px rgba(0, 168, 165, 0.8), 0 0 30px rgba(0, 168, 165, 0.5);
        transform: scale(1) rotate(-2deg);
        border: 2px solid #ffffff;
    }

    50% {
        /* 2. Aşama: Turuncu Arka Plan */
        background-color: #faa61a;
        box-shadow: 0 0 25px rgba(250, 166, 26, 0.9), 0 0 50px rgba(250, 166, 26, 0.6);
        transform: scale(1.08) rotate(3deg);
        border: 2px solid #ffffff;
    }

    100% {
        /* 3. Aşama: Kırmızı Arka Plan (Genç Seyyah Paleti) */
        background-color: #2187ec;
        box-shadow: 0 0 25px rgb(28, 245, 11, 0,62), 0 0 50px rgb(228, 56, 17, 0,76);
        transform: scale(1.04) rotate(-3deg);
        border: 2px solid #ffffff;
    }
}

/* Üzerine gelindiğinde animasyon durur, koyu ve şık bir forma geçer */
.gs-bursa-kose-kart:hover {
    animation: none;
    background-color: #333333 !important; /* Koyu Gri */
    border-color: #faa61a !important;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    text-shadow: none;
}

/* Sol taraftaki ikon kutusu (Her renkte süper görünmesi için yarı saydam siyah yaptık) */
.gs-kart-ikon {
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 6px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: 0.4s ease;
}

    .gs-kart-ikon i {
        animation: gsZilSallanmaSert 2s infinite;
    }

@keyframes gsZilSallanmaSert {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    10%, 30% {
        transform: rotate(-25deg) scale(1.2);
    }

    20%, 40% {
        transform: rotate(25deg) scale(1.2);
    }

    50% {
        transform: rotate(0deg) scale(1);
    }
}

.gs-bursa-kose-kart:hover .gs-kart-ikon {
    background: #faa61a;
    color: #ffffff;
}

.gs-kart-yazi {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    flex-grow: 1;
    letter-spacing: 0.5px;
}

/* Sağdaki ufak ok işareti (Her zaman beyazdır) */
.gs-kart-ok {
    margin-left: 12px;
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s;
    animation: gsOkDavet 1s infinite alternate;
}

@keyframes gsOkDavet {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(8px);
    }
}

.gs-bursa-kose-kart:hover .gs-kart-ok {
    color: #faa61a; 
    animation: none;
    transform: translateX(8px);
}

/* MOBİL GÖRÜNÜM AYARI */
@media (max-width: 991.98px) {
    .gs-bursa-kose-kart {
        top: auto !important;
        bottom: 25px !important;
        right: 15px !important;
        max-width: 290px;
        padding: 12px 15px;
    }

    .gs-kart-ikon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-right: 12px;
    }

    .gs-kart-yazi {
        font-size: 0.9rem;
    }

    .gs-kart-ok {
        font-size: 1.2rem;
        margin-left: 8px;
    }
}

/* ================================================== */
/* ANA SLIDER RESMİ (FLU VE TRANSPARAN EFEKTİ)        */
/* ================================================== */

/* 1. Sadece "gs-bursa-hero-slide" sınıfına sahip olan div'in arka planını koyulaştırır */
.gs-bursa-hero-slide {
    background-color: #1a1a1a !important;
}

    /* 2. Sadece bu özel div'in içindeki resmi flu ve saydam yapar, diğerlerini etkilemez */
    .gs-bursa-hero-slide img {
        opacity: 0.4 !important;
        filter: blur(4px) !important;
        object-fit: cover !important;
    }
/* ================================================== */
/* 3 KATMANLI MENÜ KESİN ÇÖZÜM (ÇAKIŞMA GİDERİLDİ)    */
/* ================================================== */

.gs-nested-dropdown {
    position: relative;
}

/* 1. Temanın "tüm alt menüleri aynı anda açan" hatalı kodunu eziyoruz */
.navbar .nav-item:hover .gs-submenu {
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: none;
}

/* 2. BİLGİSAYAR GÖRÜNÜMÜ: SADECE imleç o satırın üzerindeyken sağa açılsın */
/* 2. BİLGİSAYAR GÖRÜNÜMÜ: Alt menüyü ana öğeyle tam hizalama */
@media (min-width: 992px) {
    /* Ana öğenin (Bursa) konumunu referans noktası olarak zorunlu kılıyoruz */
    .gs-nested-dropdown {
        position: relative !important;
    }

        .gs-nested-dropdown .gs-submenu {
            position: absolute !important;
            top: 0 !important; /* Tam olarak Bursa yazısının üst sınırından başlar */
            left: 100% !important;
            margin-left: -2px !important; /* Fare kopmasın diye hafifçe sola (içeri) çektik */
            margin-top: 0 !important; /* Bootstrap'in aşağı iten boşluğunu sıfırladık */
            transform: none !important; /* Bootstrap'in kaydırma efektini iptal ettik */
            border-radius: 8px;
        }

    /* Sadece hedef menünün üzerine gelindiğinde aç */
    .navbar .nav-item .gs-nested-dropdown:hover > .gs-submenu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* 3. MOBİL GÖRÜNÜM: Mobilde içeriden aşağıya doğru açılma ayarı */
@media (max-width: 991.98px) {
    .gs-nested-dropdown .gs-submenu {
        position: relative;
        left: 0;
        padding-left: 15px;
        background-color: transparent;
        border: none;
        box-shadow: none;
        display: none; /* JS ile açılacak */
    }
}

/* ========================================================== */
/* MODERN AYIRAÇ VE GERÇEK TREN ANİMASYONLU BUTON STİLLERİ  */
/* ========================================================== */

/* Ekranı ikiye bölen modern, parlayan gradyan çizgi (Sadece PC'de Görünür) */
/*.gs-rota-ayirac {
    position: absolute;
    top: 15%;
    bottom: 5%;
    left: 50%;
    width: 2px;*/
    /* Turkuazdan Turuncuya geçen modern bir gradyan çizgi */
    /*background: linear-gradient(to bottom, transparent 0%, var(--primary-color) 20%, var(--secondary-color) 80%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;*/
    /* Hafif parlama efekti (Neon etkisi) */
    /*box-shadow: 0 0 10px rgba(0, 168, 165, 0.5), 0 0 15px rgba(250, 166, 26, 0.3);
}*/
/* ========================================================== */
/* ZARİF DİKEY AYIRAÇ (KESİN ÇÖZÜM - TEMA EZİCİ)              */
/* ========================================================== */

/* 1. Jilet Gibi İnce Ana Çizgi */
.gs-rota-ayirac {
    position: absolute !important;
    top: 5% !important;
    bottom: 5% !important;
    left: 50% !important;
    /* Genişliği milimetrik olarak kilitliyoruz */
    width: 1px !important;
    max-width: 1px !important;
    min-width: 1px !important;
    /* Temanın şişirmesini engellemek için tüm boşlukları sıfırlıyoruz */
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background-color: var(--primary-color) !important;
    transform: translateX(-50%) !important;
    z-index: 0 !important;
    opacity: 0.5 !important;
}

    /* 2. Yanındaki Çok Daha İnce ve Kısa Yardımcı Çizgi */
    .gs-rota-ayirac::after {
        content: '' !important;
        position: absolute !important;
        top: 15% !important;
        bottom: 15% !important;
        left: 5px !important;
        width: 1px !important;
        max-width: 1px !important;
        padding: 0 !important;
        background-color: var(--primary-color) !important;
        opacity: 0.2 !important;
    }

/* 3. Kartlar ve Çizgi Arasına Geniş Boşluklar (Sadece PC'de) */
@media (min-width: 992px) {
    #rotamiz .row > .col-lg-6:nth-child(2) {
        padding-right: 4rem !important;
    }

    #rotamiz .row > .col-lg-6:nth-child(3) {
        padding-left: 4rem !important;
    }
}

/* ========================================================== */
/* ZARİF DİKEY AYIRAÇ VE KART BOŞLUKLARI (NEFES PAYI)         */
/* ========================================================== */

/* Yüksek Hızlı Tren Butonu Ana Yapısı */
.gs-tren-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Yazıyı tam ortalar */
    position: relative;
    padding: 14px 45px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    overflow: hidden; /* Resim butondan dışarı taşmasın diye */
    text-decoration: none !important;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 168, 165, 0.4);
    z-index: 2;
}

    /* Hover olduğunda buton rengi Turuncu olur */
    .gs-tren-btn:hover {
        background-color: var(--secondary-color);
        box-shadow: 0 10px 25px rgba(250, 166, 26, 0.6);
    }

    /* Buton Yazısı */
    .gs-tren-btn .btn-text {
        position: relative;
        z-index: 4; /* Tren resminin üstünde kalması için */
        transition: 0.3s ease;
        /* === YAZIYI ZORLA MERKEZLEME KODLARI === */
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Fareniz butonun üzerindeyken yazı renk değiştirir ve hafif titreşir */
    .gs-tren-btn:hover .btn-text {
        color: #ffffff;
        animation: gsTrenTitremesi 0.15s linear infinite;
    }

@keyframes gsTrenTitremesi {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}

/* GERÇEK HIZLI TREN RESMİ - Başlangıçta gizli ve solda */
.gs-btn-tren-resim {
    position: absolute;
    /* DİKKAT: -100px yetmediği için -200px'e çektik, burnu tamamen kaybolacak */
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: auto;
    opacity: 0.8;
    z-index: 3;
    pointer-events: none;
}

/* Hover olduğunda tren soldan sağa doğru uçar */
.gs-tren-btn:hover .gs-btn-tren-resim {
    animation: gsGerçekHizliTrenGecisi 1s linear infinite;
}

@keyframes gsGerçekHizliTrenGecisi {
    0% {
        /* DİKKAT: Başlangıç noktası da -200px olarak güncellendi */
        left: -200px;
        opacity: 1;
    }

    100% {
        left: 130%;
        opacity: 0.3;
    }
}
/* ========================================================== */
/* AYIRAÇ UZATMA VE RESİMLERE PADDING (NEFES BOŞLUĞU) AYARI   */
/* ========================================================== */

/* 1. Ortadaki Modern Ayracı Yukarı Uzatma */
.gs-rota-ayirac {
    top: 2% !important; /* Eski değer %15'ti. Şimdi ana satırın en tepesine kadar uzanacak */
    bottom: 2% !important; /* Aşağıya doğru da biraz daha uzattık */
}

/* 2. Kartların İçindeki Resimlere Padding (Kenar Boşluğu) Ekleme */
.blog-item .blog-img {
    padding: 15px 15px 0 15px !important; /* Üstten, sağdan ve soldan 15px boşluk verdik */
    background-color: var(--light-bg) !important; /* Kartın arka planıyla uyumlu olması için */
}

    /* 3. Padding verdiğimiz için resmin kendi köşelerini de yumuşatıyoruz (Şık görünüm) */
    .blog-item .blog-img img {
        border-radius: 10px !important; /* Resim artık kenarlara yapışmıyor, kendi oval köşeleriyle duruyor */
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Resme çok hafif, tatlı bir derinlik gölgesi verdik */
    }

/* (Opsiyonel) İçeriğin arka planını da eşitlemek için */
.blog-item .blog-centent {
    border-top: none !important;
}
/* DEVASA SİNEMATİK MODAL TASARIMI */
@media (min-width: 1200px) {
    .modal-xl {
        max-width: 95% !important;
    }
    /* Ekranın %95'ini kaplar */
}

.gs-modal-resim-alanı {
    height: 550px; /* Resim yüksekliğini artırdık */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .gs-modal-resim-alanı img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Resmin bozulmasını engeller */
    }

/* Modal içindeki metin alanını ferahlatıyoruz */
.gs-detay-metin {
    padding: 20px 40px;
    max-height: 70vh;
    overflow-y: auto; /* Yazı çok uzunsa kendi içinde kayar */
}

/* Slider okları ve noktaları için düzenleme */
.gs-ajax-carousel .owl-dots {
    margin-top: 15px !important;
}

.gs-ajax-carousel .owl-dot span {
    background: var(--primary-color) !important;
    opacity: 0.3;
}

.gs-ajax-carousel .owl-dot.active span {
    opacity: 1;
    width: 30px;
}
/* ================================================== */
/* MODAL Z-INDEX (ÜSTE ÇIKMA) AYARI                   */
/* ================================================== */

/* 1. Modalın arka planındaki siyah/karartılı katman */
.modal-backdrop {
    z-index: 104000 !important;
}

/* 2. Modalın kendisi (İçerik ekranı) */
.modal {
    z-index: 105000 !important; /* Bootstrap varsayılanı 1050'dir, biz onu yenilmez yaptık */
}
/* ================================================== */
/* SAYFA GEÇİŞ ANİMASYONU (Menüden sayfa yüklenince)  */
/* ================================================== */
@keyframes pageFadeIn {
    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.gs-page-transition {
    animation: pageFadeIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ================================================== */
/* MODAL İÇERİK ANİMASYONU (İncele'ye basınca)        */
/* ================================================== */
@keyframes modalContentReveal {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.gs-modal-anim {
    animation: modalContentReveal 0.5s ease-out forwards;
}
/* ================================================== */
/* MODAL AÇILIP KAPANIRKEN EKRAN KAYMA/ZIPLAMA ÇÖZÜMÜ */
/* ================================================== */

/* 1. Arka plandaki zıplamayı durdurur */
body.modal-open {
    padding-right: 0 !important;
    overflow-y: auto !important;
}

/* 2. Tarayıcıda sağ scrollbar'ın sürekli kalmasını sağlayarak genişlik değişimini önler */
html {
    overflow-y: scroll !important;
}

/* 3. Sabit üst menünüz (navbar) varsa ve o da zıplıyorsa onu da kilitler */
.fixed-top, .navbar{
    padding-right: 0 !important;
}

/* ================================================== */
/* MODERN FOTO GALERİ STİLLERİ VE EFEKTLERİ           */
/* ================================================== */

/* Filtre Butonları */
.gs-galeri-filtre li {
    cursor: pointer;
    margin: 5px;
    padding: 8px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Resim Kapsayıcısı */
.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #000;
}

    .portfolio-inner img {
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 250px;
        object-fit: cover;
    }

    /* Hover Olduğunda Resim Hafif Büyür ve Kararır */
    .portfolio-inner:hover img {
        transform: scale(1.1);
        opacity: 0.6;
    }

/* Üzerine Gelince Ortaya Çıkan Tül ve Yazı */
.portfolio-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 165, 0.7); /* Temanızın ana rengi (Turkuaz) yarı saydam */
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.portfolio-inner:hover .portfolio-text {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-text .btn {
    background: var(--secondary-color); /* Buton rengi (Turuncu) */
    color: white;
    border: none;
    transform: scale(0);
    transition: all 0.4s ease 0.1s; /* Gecikmeli çıkış efekti */
}

.portfolio-inner:hover .portfolio-text .btn {
    transform: scale(1);
}
/* ================================================== */
/* 1. GALERİ KÜÇÜK RESİMLERİ (BOŞLUK/MARGIN ÇÖZÜMÜ)   */
/* ================================================== */
.portfolio-inner img {
    width: 100% !important;
    /* Sabit pixel (px) yerine aspect-ratio (en-boy oranı) kullanıyoruz. 
       Bu sayede Isotope motoru boşlukları (marginleri) bozmaz, hizalama kusursuz kalır. */
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    object-fit: cover !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================================== */
/* 2. LIGHTBOX (MODAL) RESİMLERİNİ SABİT EBATA ZORLAMA*/
/* ================================================== */

/* Lightbox'ın dış çerçevesini sabitliyoruz (Örn: 900x600 px) */
.lightbox .lb-outerContainer {
    width: 900px !important;
    height: 600px !important;
    max-width: 100vw !important; /* Mobil ekranlarda taşmayı engeller */
    max-height: 80vh !important;
    background-color: #111 !important; /* Boşluk kalırsa şık bir siyah arkaplan */
}

/* İçindeki resmi de bu çerçeveye uymaya zorluyoruz */
.lightbox .lb-image {
    width: 100% !important;
    height: 100% !important;
    /* object-fit: contain; -> Resmi kırpmaz, kutunun içine sığdırır. 
       Eğer resimlerin tam bir kutu gibi kırpılıp ekranı doldurmasını isterseniz 
       burayı 'object-fit: cover !important;' yapabilirsiniz. */
    object-fit: contain !important;
    border-radius: 5px;
}
/* ================================================== */
/* GALERİ YÜKLENİYOR (LOADING) TREN ANİMASYONU        */
/* ================================================== */

/* Varsayılan dönen çarkı iptal edip trenimizi yerleştiriyoruz */
.lightbox .lb-cancel {
    background: url('/ecdad/img/gezi/animation.png') no-repeat center center !important;
    background-size: contain !important;
    width: 120px !important; /* Trenin ekrandaki genişliği */
    height: 40px !important; /* Trenin ekrandaki yüksekliği */
    margin: 0 auto !important;
    /* Treni soldan sağa hareket ettiren animasyon motoru */
    animation: loadingTrenHareketi 1.5s linear infinite !important;
}

/* Trenin soldan girip sağdan çıkmasını (ve kaybolmasını) sağlayan akış */
@keyframes loadingTrenHareketi {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(80px);
        opacity: 0;
    }
}
/* ================================================== */
/* GLOBAL YÜKLEME EKRANI STİLLERİ                     */
/* ================================================== */

#gs-global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Yükleme ekranının arkaplanı (İsterseniz #f8f9fa gibi hafif gri de yapabilirsiniz) */
    z-index: 999999; /* Her şeyin en üstünde durmasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trenin boyutu ve arka plan ayarı */
.gs-loader-tren {
    background: url('/ecdad/img/gezi/animation.png') no-repeat center center;
    background-size: contain;
    width: 200px; /* Ana ekranda tren biraz daha büyük ve görkemli dursun */
    height: 60px;
    animation: globalTrenHareketi 1.5s linear infinite;
}

/* Global ekrana özel daha geniş bir hareket alanı (Ray) */
@keyframes globalTrenHareketi {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(150px);
        opacity: 0;
    }
}