/* Başlangıçta gizli */
.phone-button { 
    display: none; 
    text-decoration: none;
    color: white;
}

/* Daha yumuşak renk ve opacity animasyonu */
@keyframes smoothBlink {
    0% { background-color: #28a745; opacity: 1; }
    25% { background-color: #27ae60; opacity: 0.8; }
    50% { background-color: #218838; opacity: 0.6; }
    75% { background-color: #27ae60; opacity: 0.8; }
    100% { background-color: #28a745; opacity: 1; }
}

/* Mobil cihazlarda göster ve sol alt köşe */
@media (max-width: 767px) { 
    .phone-button { 
        display: flex; 
        align-items: center;
        gap: 10px; /* icon ve yazı arası boşluk */
        position: fixed; 
        left: 15px; 
        bottom: 15px; /* alt konum */
        padding: 10px 15px;
        border-radius: 30px; 
        font-size: 18px; 
        z-index: 9999; 
        transition: all 0.3s ease;
        animation: smoothBlink 2s infinite; /* daha yumuşak, 2 saniyelik döngü */
        background-color: #28a745;
    } 

    .phone-button:hover { 
        background-color: #0056b3; 
        transform: scale(1.1); /* hover da sadece büyü */
        animation: none; /* Hover sırasında durdur */
    } 

    .phone-text {
        display: inline-block;
        font-weight: bold;
    }
}

/* Masaüstü ve Genel Ayarlar */
.main-h1-container {
    position: absolute;
    top: 35%; /* Başlığı biraz yukarı çektik */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
    z-index: 25;
    pointer-events: none;
}

.slider-static-h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Slider İçindeki Dinamik Metinler (H1'in altında durmalı) */
.carousel-captions {
    position: absolute;
    top: 60%; /* Dinamik metinleri H1'in altına, merkezin biraz aşağısına aldık */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 10;
}

/* MOBİL İYİLEŞTİRMELERİ (768px altı cihazlar için) */
@media (max-width: 768px) {
    /* Sabit H1'i en tepeye yaklaştırıyoruz */
    .main-h1-container {
        top: 25%; 
    }
    
    .slider-static-h1 {
        font-size: 22px; /* Mobilde yazı boyutunu küçülttük */
        line-height: 1.2;
    }

    /* Slider metinlerini ve butonları daha aşağıya itiyoruz */
    .carousel-captions {
        top: 65%; 
    }

    .slider-main-text {
        font-size: 18px !important;
        margin-top: 10px !important;
    }

    .slider-sub-text {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    .slider-cta {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

    /* Tasarımı canlandıran küçük dokunuşlar */
    .service-card { transition: all 0.4s ease-in-out; }
    .service-card:hover { 
        transform: translateY(-10px); 
        border-bottom-color: #f39c12; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important; 
    }
    .service-link:hover {
        background: #f39c12;
        color: #fff !important;
    }
    @media (max-width: 768px) {
        h1 { font-size: 30px !important; }
    }
    
    /* Masaüstünde dikey çizgiler */
    @media (min-width: 768px) {
        .border-md-right {
            border-right: 1px solid rgba(255,255,255,0.1) !important;
        }
    }
    /* Mobil Düzenlemeleri */
    @media (max-width: 767px) {
        .trust-container {
            border-radius: 25px !important;
            padding: 20px 10px !important;
            width: 90% !important; /* Mobilde kenarlardan boşluk bırakır */
        }
        .col-md-4:not(:last-child) {
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 10px;
            padding-bottom: 15px;
        }
    }
    
/* 1. Yan yana duruş ve Kayma Ayarı */
.gn-comments-wrapper {
    width: 100%;
    padding: 20px 0;
}

.gn-comments-track {
    display: flex;
    gap: 20px;
    animation: gnScroll 40s linear infinite;
    width: max-content;
}

.gn-comments-track:hover {
    animation-play-state: paused;
}

.gn-comment-item {
    width: 350px;
    flex-shrink: 0;
}

/* 2. Kart Tasarımı */
.gn-comment-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.gn-comment-card:hover {
    border-color: #f39c12;
    transform: translateY(-5px);
}

.gn-stars { color: #f39c12; font-size: 13px; margin-bottom: 15px; }
.gn-text { color: #555; font-style: italic; line-height: 1.6; font-size: 14px; margin: 0; }

.gn-user { display: flex; align-items: center; gap: 12px; }
.gn-avatar { 
    width: 40px; height: 40px; background: #2c3e50; color: #fff; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.gn-name strong { display: block; color: #333; font-size: 15px; }
.gn-name span { color: #999; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* 3. Google Buton Tasarımı */
.gn-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #3c4043;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid #dadce0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.gn-google-btn img { width: 22px; }

.gn-google-btn:hover {
    background: #f8f9fa;
    border-color: #f39c12;
    color: #f39c12;
    transform: scale(1.05);
}

/* 4. Animasyon */
@keyframes gnScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 5. Mobil Uyumluluk */
@media (max-width: 768px) {
    .gn-comment-item { width: 280px; }
    .gn-comment-card { height: 280px; padding: 20px; }
}

    .faq-pro-container {
        max-width: 850px;
        margin: 0 auto;
        font-family: 'Poppins', sans-serif;
    }

    .faq-pro-card {
        background: #fff;
        margin-bottom: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
    }

    .faq-pro-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        border-color: rgba(243, 156, 18, 0.3);
    }

    .faq-pro-label {
        display: flex;
        align-items: center;
        padding: 25px 30px;
        cursor: pointer;
        margin: 0;
        position: relative;
    }

    .faq-number {
        font-size: 18px;
        font-weight: 800;
        color: #f39c12;
        margin-right: 20px;
        opacity: 0.6;
    }

    .faq-title {
        font-size: 17px;
        font-weight: 700;
        color: #2c3e50;
        flex: 1;
        padding-right: 40px;
    }

    .faq-icon-box {
        width: 35px;
        height: 35px;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .faq-icon-box i {
        font-size: 14px;
        color: #f39c12;
    }

    .faq-pro-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: transparent;
    }

    .faq-inner-text {
        padding: 0 30px 30px 68px;
        color: #5d6d7e;
        line-height: 1.8;
        font-size: 15px;
    }

    /* İşlevsellik CSS */
    .faq-check { display: none; }
    
    .faq-check:checked ~ .faq-pro-content {
        max-height: 300px;
    }

    .faq-check:checked ~ .faq-pro-label .faq-icon-box {
        background: #f39c12;
        transform: rotate(135deg);
    }

    .faq-check:checked ~ .faq-pro-label .faq-icon-box i {
        color: #fff;
    }

    .faq-check:checked ~ .faq-pro-label .faq-title {
        color: #f39c12;
    }

    /* Mobil Ayarlar */
    @media (max-width: 768px) {
        .faq-pro-label { padding: 20px; }
        .faq-inner-text { padding-left: 20px; }
        .faq-number { display: none; }
    }
    
@media (max-width: 767px) {
    .text-center.text-md-left h2 {
        font-size: 26px !important;
    }
    .btn-all {
        width: 100%; /* Mobilde butonu tam genişlik yapıyoruz, çok daha şık durur */
        text-align: center;
    }
    .mt-4 {
        margin-top: 25px !important;
    }
    
    .mb-4 {
        margin-bottom: 25px !important;
    }
}

.btn-all:hover {
    background: #f39c12;
    color: #fff !important;
}

/* Slider Ana Metin (Eski H1 Görünümü) */
.slider-main-text {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Slider Alt Metin (Eski H2 Görünümü) */
.slider-sub-text {
    color: #f39c12;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .slider-main-text {
        font-size: 26px !important;
    }
    .slider-sub-text {
        font-size: 14px !important;
        letter-spacing: 1px;
    }
}

    /* Slider Buton Stili */
    .slider-cta {
        display: inline-block;
        background: #f39c12;
        color: #fff !important;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none !important;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
        border: 2px solid transparent;
    }
    .slider-cta:hover {
        background: #fff;
        color: #f39c12 !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    .slider-cta i { margin-right: 8px; }

    /* Genel Hover ve Stil Ayarları */
    .service-card:hover { transform: translateY(-10px); border-bottom-color: #f39c12; box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important; }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(0,0,0,0.1) !important; }
    .border-right { border-right: 1px solid #eee; }
    .btn-all:hover { background:#f39c12; color:#fff !important; }
    
    @media (max-width: 768px) {
        .border-right { border-right: none; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; margin-bottom: 20px; }
        .slider_area { margin-bottom: 20px; }
        h1 { font-size: 28px !important; }
        .slider-cta { padding: 12px 25px; font-size: 14px; }
    }
    
.custom_breadcrumb {
    display: flex !important; /* Esnek yapı ile yan yana getirir */
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.custom_breadcrumb .bc-item a {
    display: inline-block !important;
    text-decoration: none !important;
    color: #ed1c24 !important; /* Tıklanabilir link rengi (Kırmızı) */
    font-size: 14px;
    font-weight: 500;
}

.custom_breadcrumb .bc-item a:hover {
    color: #333 !important; /* Üzerine gelince renk değişimi */
}

.custom_breadcrumb .bc-sep {
    margin: 0 10px; /* Slash (/) etrafındaki boşluk */
    color: #ccc;
    font-size: 14px;
}

/* Mobilde başlığın çok yer kaplamaması için */
@media (max-width: 768px) {
    .custom_breadcrumb .bc-item a {
        font-size: 13px;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}