/* ============================================
   ÖZEL TEMA RENKLERİ VE GELİŞTİRMELER
   ============================================ */

/* CTA Butonları - Altın Vurgu */
.rts-btn.btn-header.cta-gold,
.rts-btn.btn-primary.cta-gold,
.rts-btn.cta-gold {
    background: var(--color-accent) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rts-btn.btn-header.cta-gold:hover,
.rts-btn.btn-primary.cta-gold:hover,
.rts-btn.cta-gold:hover {
    background: #B8941F !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.rts-btn.btn-header.cta-gold::after,
.rts-btn.btn-primary.cta-gold::after {
    background: #B8941F !important;
}

/* Sayı Vurguları - Altın */
.counter .odometer,
.single-fun-facts-area .counter,
.about-thumbnail-inner-one .content-wrapper .single.primary .title {
    color: var(--color-accent) !important;
}

/* Hover Efektleri - Mavi */
a:hover,
.read-more-narrow:hover,
.read-more-btn:hover {
    color: var(--color-primary) !important;
}

/* Link Renkleri */
a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

/* Aktif Menü Öğeleri */
.nav-area ul li.main-nav.active > a,
.nav-area ul li.main-nav > a:hover,
.mobile-menu ul li.active > a {
    color: var(--color-primary) !important;
}

/* Footer - Koyu Arka Plan */
.rts-footer-area {
    background: var(--color-dark) !important;
}

.rts-footer-area.bg_footer-1 {
    background: var(--color-dark) !important;
}

/* Header stilleri header-fixes.css dosyasına taşındı */

/* Kartlar ve Bileşenler - Kırık Beyaz Arka Plan */
.single-service-one,
.single-blog-area-one,
.single-portfolio-area-one {
    background: var(--bg-light) !important;
    border: 1px solid rgba(108, 182, 232, 0.1);
    transition: all 0.3s ease;
}

.single-service-one:hover,
.single-blog-area-one:hover,
.single-portfolio-area-one:hover {
    box-shadow: 0 8px 24px rgba(108, 182, 232, 0.15);
    transform: translateY(-4px);
}

/* İkonlar - Mavi Vurgu */
.icon img,
.icons img {
    filter: drop-shadow(0 2px 8px rgba(108, 182, 232, 0.2));
    transition: all 0.3s ease;
}

.icon:hover img,
.icons:hover img {
    filter: drop-shadow(0 4px 12px rgba(108, 182, 232, 0.4));
    transform: scale(1.05);
}

/* Başlıklar - Koyu Renk */
.title,
h1, h2, h3, h4, h5, h6 {
    color: var(--color-title) !important;
}

/* Banner ve Hero Bölümleri */
.banner-area-one-start,
.banner-inner-content-one {
    color: #fff;
}

/* Swiper Navigation - Mavi */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
}

/* Form Input Focus - Mavi */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(108, 182, 232, 0.1) !important;
}

/* Progress Bar - Mavi */
.progress-wrap .progress-circle path {
    stroke: var(--color-primary) !important;
}

/* Animasyonlar - Geliştirilmiş */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Geliştirilmiş Hover Efektleri */
.rts-btn {
    position: relative;
    overflow: hidden;
}

.rts-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.rts-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive İyileştirmeler */
@media (max-width: 768px) {
    .rts-btn.btn-header.cta-gold {
        padding: 16px 28px;
        font-size: 14px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States - Accessibility */
.rts-btn:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

