.btn-teklif{
    background: #b5511f !important;
}
/* Finsa Lead Card Stilleri */
.contact.section-bg {
    background-color: #f3f5fa;
}

.lead-card {
    border-top: 5px solid #D9691F; /* Bizim Yanık Turuncumuz */
    transition: transform 0.3s ease;
}

.lead-card:hover {
    transform: translateY(-5px);
}

.contact .php-email-form label {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #37517e; /* Kurumsal Lacivert */
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact .php-email-form input,
.contact .php-email-form select {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus {
    border-color: #D9691F;
    box-shadow: 0 0 0 0.2rem rgba(217, 105, 31, 0.25);
}

/* Aksiyon Butonu */
.btn-teklif-al {
    background: #D9691F;
    border: 0;
    padding: 15px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-teklif-al:hover {
    background: #37517e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.faq-2{
    background: #f3f5fa;
}

/* Floating Quote - Akıllı Konumlandırma */
.floating-quote {
    position: fixed;
    bottom: -150px; /* Gizli başlar */
    left: 40px; /* Masaüstünde solda durarak scroll-top ile çakışmaz */
    background: #fff;
    border-left: 6px solid #D9691F;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 999;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px; /* Masaüstünde daha geniş */
}

.floating-quote.active {
    bottom: 40px;
}

/* Tüm Kartı Tıklanabilir Yapan Wrapper */
.quote-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    text-decoration: none !important;
    cursor: pointer;
}

.quote-icon {
    background: rgba(217, 105, 31, 0.1);
    color: #D9691F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.quote-text span {
    display: block;
    font-weight: 800;
    color: #37517e;
    font-size: 18px; /* Daha büyük font */
    line-height: 1.2;
}

.quote-text p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #5e5e5e;
}

.quote-arrow {
    color: #D9691F;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.quote-wrapper:hover .quote-arrow {
    transform: translateX(5px);
}

.quote-wrapper:hover {
    background-color: #fafafa;
}

/* Kapatma Butonu */
.close-quote {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #37517e;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* MOBİL ÖZEL AYARLAR */
@media (max-width: 768px) {
    .floating-quote {
        left: 15px;
        right: 15px; /* Mobilde tam genişlik hissi */
        bottom: -100px;
        max-width: none;
    }

    .floating-quote.active {
        bottom: 20px;
    }

    .quote-wrapper {
        padding: 12px 15px;
        gap: 12px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .quote-text span {
        font-size: 15px;
    }

    .quote-text p {
        display: none; /* Mobilde sadece başlık yeterli */
    }
}
/* Blog İçeriğindeki Tüm Resimleri Otomatik Responsive Yap */
.blog-details .article-content .content img {
    max-width: 100% !important; /* Asla bulunduğu kabı aşmasına izin verme */
    height: auto !important;    /* Oranını bozmadan yüksekliğini ayarla */
    border-radius: 12px;        /* Arsha temasına uygun şık kavisler */
    margin: 25px 0;             /* Üstten ve alttan nefes alma boşluğu */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Hafif, modern bir gölge */
}
.blog-single-title {
    padding-top: 100px !important;
}
.blog-index-title {
     padding-top: 100px !important;
 }

/* 1. Başlık alanlarını eşitleyerek altındaki tarihleri (meta) hizaya sok */
.blog-posts article .title {
    min-height: 110px !important; /* 4 satırlık başlık boşluğu garantisi */
    display: flex;
    align-items: flex-start;
}

/* Olası bir 5. satır taşmasını engellemek için güvenlik sigortası */
.blog-posts article .title a {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 2. Paragraf (excerpt) uzunlukları da farklıysa diye;
   sadece paragrafı 3 satırda kesip, butonun da kendi hizasında kalmasını sağlayalım */
.blog-posts article .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 75px; /* Paragraf 2 satır da olsa 3 satırlık yer tutsun */
}

/* Ana Sayfa Blog Kartları - Başlık Hizalama */
.recent-blog-posts .post-item .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Maksimum 3 satıra izin ver, sonrasına ... koy */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 85px; /* Başlık 2 satır bile olsa 3 satırlık yer kaplasın ki alt kısımlar hizalansın */
    margin-bottom: 15px;
}
@media (min-width: 1200px) {
    h3.post-title {
        font-size: 1.5rem;
    }
}