
/* Google Tarzı Avatar Daireleri */
.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: white;
    font-weight: bold;
    font-size: 32px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Avatar İçindeki Baş Harfler */
.avatar-initials {
    line-height: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Bootstrap Renk Sınıfları için Opaklık Ayarları */
.bg-primary { background-color: #4285f4 !important; }
.bg-success { background-color: #34a853 !important; }
.bg-info { background-color: #00bcd4 !important; }
.bg-warning { background-color: #fbbc05 !important; }
.bg-danger { background-color: #ea4335 !important; }
.bg-secondary { background-color: #9c27b0 !important; }

@media (max-width: 768px) {
    .avatar-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}





/* Hizmetler Section */
.hizmetler .hizmet-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hizmetler .hizmet-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hizmetler .hizmet-item:hover img {
    transform: scale(1.05);
}

.hizmetler .hizmet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hizmetler .hizmet-item:hover .hizmet-overlay {
    transform: translateY(0);
}

.hizmetler .hizmet-content {
    text-align: center;
}

.hizmetler .hizmet-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-style: normal;
}




/*--------------------------------------------------------------
# Accordion (Sıkça Sorulan Sorular) - Özel Stiller
--------------------------------------------------------------*/

/* Accordion konteynerinin genel görünümü */
.accordion.accordion-flush {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--surface-color);
}

/* Her bir accordion öğesinin çerçevesi */
.accordion-item {
    background-color: transparent;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.accordion-item:last-of-type {
    border-bottom: none; /* Son öğenin alt çizgisini kaldır */
}

/* Accordion başlık butonunun kapalı (collapsed) hali */
.accordion-button {
    background-color: var(--surface-color);
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: none !important; /* Bootstrap'in varsayılan gölgesini kaldır */
}
.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--surface-color) 95%, black 5%);
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}
/* Accordion başlığına fareyle gelindiğinde */
.accordion-button:hover {
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--accent-color);
}
/* Accordion ok işaretinin (chevron) stili */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%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");
    transition: transform 0.3s ease;
}
.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='%23D4AF37'%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");
    transform: rotate(-180deg);
}

/* Accordion içerik bölümünün stili */
.accordion-collapse {
    background-color: color-mix(in srgb, var(--surface-color) 98%, white 2%);
}
.accordion-body {
    color: var(--default-color);
    padding: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.accordion-body strong {
    color: var(--accent-color);
}
.accordion-body ul,
.accordion-body ol {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}
.accordion-body li {
    margin-bottom: 0.3rem;
}




/* Özel İletişim Formu Stilleri */
.custom-contact-form input[type=text],
.custom-contact-form input[type=email],
.custom-contact-form input[type=date],
.custom-contact-form select,
.custom-contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.custom-contact-form input[type=text]:focus,
.custom-contact-form input[type=email]:focus,
.custom-contact-form input[type=date]:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
  border-color: var(--accent-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.custom-contact-form input[type=text]::placeholder,
.custom-contact-form input[type=email]::placeholder,
.custom-contact-form input[type=date]::placeholder,
.custom-contact-form select::placeholder,
.custom-contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.custom-contact-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border: 0;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-contact-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

/* Form mesaj stilleri (isteğe bağlı) */
.custom-contact-form .form-message {
  display: none;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.custom-contact-form .error-message {
  background: #df1529;
  color: #ffffff;
  text-align: left;
}

.custom-contact-form .sent-message {
  color: #ffffff;
  background: #059652;
  text-align: center;
}

.custom-contact-form .loading {
  background: var(--surface-color);
  text-align: center;
}

.custom-contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: form-loading 1s linear infinite;
}

@keyframes form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/* Ana CSS dosyasına ekleyin */
input[type="date"] {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

input[type="date"]::-moz-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

input[type="date"]:focus {
    background-color: var(--surface-color);
    color: var(--default-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}







/*  ############ portfoli o css  ###########*/

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/assets/img/bg-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e9ecef;
    color: #212529;
    text-decoration: none;
}

.filter-btn.active {
    background: var(--accent-color, #D4AF37);
    border-color: var(--accent-color, #D4AF37);
    color: #000;
    font-weight: 500;
}

.search-box {
    width: 300px;
}

.search-box .input-group {
    display: flex;
}

.search-box .form-control {
    border-right: 0;
    border-radius: 4px 0 0 4px;
}

.search-box .btn {
    background: var(--accent-color, #D4AF37);
    border: 1px solid var(--accent-color, #D4AF37);
    color: #000;
    border-radius: 0 4px 4px 0;
    padding: 8px 15px;
}

.search-box .btn:hover {
    background: #c9a227;
    border-color: #c9a227;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content .category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-color, #D4AF37);
    color: #000;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: white;
    color: #000;
    text-decoration: none;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    font-size: 1.0rem;
    margin-bottom: 10px;
    color: #212529;
}

.portfolio-desc {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 20px;
    display: block;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #6c757d;
}

.no-results p {
    color: #adb5bd;
    margin-bottom: 0;
}

/* Portfolio Detail Header */
.portfolio-detail-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #D4AF37;
}

.breadcrumb-item.active {
    color: #D4AF37;
}

.header-main {
    max-width: 800px;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-category, .meta-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.meta-category i, .meta-date i {
    color: #D4AF37;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Detail Content */
.portfolio-detail-content {
    padding: 40px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-title {
        font-size: 2rem;
    }
}

/* Main Image with Lightbox */
.detail-main-image {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    padding: 20px;
    background: #000;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-overlay i {
    font-size: 2.5rem;
    color: white;
}

.image-container:hover .zoom-overlay {
    opacity: 1;
}

.image-container:hover img {
    transform: scale(1.02);
}

.image-actions {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}

/* Project Details */
.details-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.details-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #D4AF37;
    font-weight: 500;
}

.item-label i {
    font-size: 1.1rem;
}

.item-content {
    padding-left: 30px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #D4AF37;
    color: #000;
}

.hashtag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hashtag-item {
    color: #1da1f2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hashtag-item:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* YENİ: Portfolyo Sosyal Medya Linkleri (Çakışmayı önlemek için) */
.portfolio-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.portfolio-btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border: none;
}

.portfolio-btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.portfolio-text-muted {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Detail Navigation */
.detail-navigation {
    text-align: center;
    padding: 20px 0;
}

/* Related Projects */
.related-projects {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.related-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.related-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 15px;
}

.related-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.related-content h4 {
    margin-bottom: 0;
}

.related-content h4 a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.related-content h4 a:hover {
    color: #D4AF37;
}

/* Lightbox Modal */
#imageLightbox .modal-content {
    background: transparent;
    border: none;
}

#imageLightbox .modal-header {
    border-bottom: none;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

#imageLightbox .btn-close {
    background-color: white;
}

#imageLightbox .modal-body {
    padding: 0;
    background: rgba(0, 0, 0, 0.8);
}

#imageLightbox .modal-body img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a1a1a;
    border-left: 4px solid #D4AF37;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    max-width: 350px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    color: #D4AF37;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-title {
        font-size: 1.8rem;
    }
    
    .detail-grid {
        gap: 20px;
    }
    
    .details-card {
        padding: 20px;
    }
    
    .image-container img {
        max-height: 400px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.5rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-social-links {
        flex-direction: column;
    }
    
    .portfolio-social-btn {
        width: 100%;
        justify-content: center;
    }
}





/* ############# ANA SAYFA GALERİ */

      /* Gallery item styling - Template'in orijinal stilini koruyoruz */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .gallery-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: all 0.3s ease-in-out;
        }

        .gallery-links {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .gallery-item:hover .gallery-links {
            opacity: 1;
        }

        .gallery-links a {
            color: #fff;
            font-size: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
        }

        .gallery-links a:hover {
            background: var(--accent-color, #D4AF37);
            color: #000;
            transform: scale(1.1);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .gallery-item img {
                height: 250px;
            }
        }

        @media (max-width: 992px) {
            .gallery-item img {
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .gallery-item img {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .gallery-item img {
                height: 180px;
            }
        }


















 /* WhatsApp Chat Widget Styles */
        .whatsapp-chat-widget {
            position: fixed;
            bottom: 80px;
            right: 30px;
            z-index: 9999;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #25D366;
            border-radius: 50%;
            opacity: 0.7;
            animation: pulse 2s infinite;
        }

        .whatsapp-chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 320px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            visibility: hidden;
        }

        .whatsapp-chat-box.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        .chat-header {
            background: #075E54;
            color: white;
            padding: 15px;
            border-radius: 12px 12px 0 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .chat-info {
            flex: 1;
        }

        .chat-info h6 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 3px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .status-dot.online {
            background: #4CAF50;
            animation: blink 2s infinite;
        }

        .status-text {
            font-size: 12px;
            opacity: 0.9;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .chat-body {
            padding: 20px;
            max-height: 200px;
            overflow-y: auto;
        }

        .chat-message.bot {
            text-align: left;
        }

        .message-content {
            background: #495057;
            padding: 12px 15px;
            border-radius: 18px 18px 18px 4px;
            display: inline-block;
            max-width: 85%;
            font-size: 14px;
            line-height: 1.4;
        }

        .message-time {
            font-size: 11px;
            color: #999;
            margin-top: 5px;
            text-align: right;
        }

        .chat-footer {
            padding: 15px;
            border-top: 1px solid #eee;
        }

        .whatsapp-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #25D366;
            color: white;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }

        .whatsapp-action-btn:hover {
            background: #1DA851;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            70% { transform: scale(1.3); opacity: 0; }
            100% { transform: scale(1.3); opacity: 0; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.5; }
        }

        @media (max-width: 768px) {
            .whatsapp-chat-widget { bottom: 80px; right: 20px; }
            .whatsapp-button { width: 50px; height: 50px; font-size: 24px; }
            .whatsapp-chat-box { width: 280px; right: -10px; }
        }

        @media (max-width: 576px) {
            .whatsapp-chat-widget { bottom: 75px; right: 15px; }
            .whatsapp-chat-box { width: 260px; }
        }








        /* Blog sayfası için ek stiller */
.blog-card {
    transition: transform 0.3s ease;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-img-container {
    height: 200px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 0.85rem;
    color: #acb3b9;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    font-style: italic;
    color: #666;
    margin: 1.5rem 0;
}

/* Sayfalama stilleri */
.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Arama kutusu */
.search-form .input-group {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border: none;
    padding: 15px 25px;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
}