: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: 350px !important;
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        border: none !important;
    }

    /* 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;
    }

/* ========================================= */
/* MOBİL VE TABLET DÜZENLEMELERİ (EN ALTA)   */
/* ========================================= */

@media (max-width: 992px) {
    /* Genel Taşma ve Hizalama */
    .container, .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .contact-map iframe {
        width: 100% !important;
    }

    .glowing {
        display: none !important;
    }

    /* MOBİL MENÜ SABİTLEME */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999 !important;
        background-color: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* Menü sabitlenince içerik yukarı kaçmasın diye boşluk */
    body {
        padding-top: 80px;
    }

    .topbar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* ANA SLIDER AYARLARI */
    .header-carousel .header-carousel-item {
        height: 400px !important;
    }

        .header-carousel .header-carousel-item img {
            height: 100% !important;
            object-fit: cover !important;
        }

    /* Slider Okları - Tam Ortala */
    .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;
    }

    /* Slider Yazıları Küçült */
    .header-carousel .carousel-caption h1.display-1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 10px !important;
    }

    .header-carousel .carousel-caption p {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 15px !important;
    }

    .header-carousel .carousel-caption .btn {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }

    /* İSTATİSTİK KUTULARI */
    .istatistik-wrapper {
        margin-top: -40px;
    }

    .stat-card {
        padding: 20px 10px;
        margin-bottom: 15px;
    }

        .stat-card h2 {
            font-size: 1.5rem;
        }

    /* GALERİ SLIDER */
    .testimonial-carousel {
        padding: 0;
    }

        .testimonial-carousel .testimonial-item img {
            height: 250px !important;
        }

        .testimonial-carousel .owl-nav {
            display: none !important; /* Mobilde okları gizle */
        }
}
/* ================================================== */
/* MOBİL MENÜ VE SLIDER KESİN ÇÖZÜM (FIXED NAVBAR)    */
/* ================================================== */

@media (max-width: 992px) {

    /* 1. MENÜYÜ SABİTLE VE YÜKSEKLİĞİNİ BELİRLE */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999 !important;
        background-color: #ffffff !important; /* Arkaplan Beyaz */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        min-height: 70px; /* Menünün minimum yüksekliği */
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* 2. İÇERİĞİ MENÜ KADAR AŞAĞI İT (Yazıların menü altında kalmaması için) */
    body {
        padding-top: 60px !important; /* 100px çok fazlaydı, 60px idealdir */
    }

    /* 3. SLIDER YÜKSEKLİĞİNİ ARTIR (Yazıların sığması için) */
    .header-carousel .header-carousel-item {
        /* 400px az geliyordu, 550px yapalım ki yazılar rahat sığsın */
        height: 550px !important;
        margin-top: 0 !important;
    }

        /* Resmi kutuya tam oturt */
        .header-carousel .header-carousel-item img {
            height: 100% !important;
            object-fit: cover !important;
        }

    /* 4. SLIDER YAZILARINI BİRAZ YUKARI TAŞI */
    .header-carousel .carousel-caption {
        padding-top: 0 !important;
        align-items: center !important; /* Dikeyde ortala */
    }

    /* 5. TOPBAR'I GİZLE (Mobilde yer kaplamasın) */
    .topbar {
        display: none !important;
    }
}
/* --- 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;
}

/* 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;
}

/* Diğer animasyonlar aynı kalıyor... */

/* --- 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: 1s;
    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; }