/**
 * Profen Akademi - Tema Özel Stilleri
 * Bootstrap 5 üzerine özel CSS tanımlamaları
 *
 * @package Profen_Akademi
 * @since 1.0.0
 */

/* ================================================
   CSS DEĞİŞKENLERİ (Custom Properties)
   ================================================ */
:root {
    /* Renk Paleti */
    --primary: #e94d19;
    --primary-hover: #bb3102;
    --primary-container: #d43f07;
    --primary-fixed-dim: #ffb59f;
    --surface: #f9f9f9;
    --surface-container-low: #f3f3f3;
    --surface-container-highest: #e2e2e2;
    --on-surface: #1a1c1c;
    --tertiary: #5c5c5c;
    --outline-variant: #e3beb4;

    /* Fontlar */
    --font-headline: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ================================================
   TEMEL STİLLER
   ================================================ */
body {
    font-family: var(--font-body);
    background-color: var(--surface);
    color: var(--on-surface);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-headline {
    font-family: var(--font-headline);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Tema Renk Ezmeleri (Bootstrap Mavisini Turuncu Yapma) */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

::selection {
    background-color: var(--primary);
    color: white;
}

/* ================================================
   ÖZEL BUTONLAR
   ================================================ */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-container);
    color: white;
    transform: scale(0.98);
}

.btn-gradient {
    background: linear-gradient(to right, var(--primary), var(--primary-container));
    color: white;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(171, 46, 0, 0.2);
    transition: transform 0.2s;
}

.btn-gradient:hover {
    transform: scale(0.95);
    color: white;
}

/* ================================================
   HEADER (Glassmorphism)
   ================================================ */
.glass-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 32px 32px -4px rgba(0, 0, 0, 0.06);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: white;
    font-size: 0.85rem;
    padding: 0.4rem 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.nav-link-custom {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--tertiary);
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: var(--primary);
}

/* Logo */
.profen-logo {
    height: 60px;
    width: auto;
    display: block;
}

.navbar-brand {
    overflow: visible !important;
    flex-shrink: 0;
}

.navbar {
    overflow: visible;
}

/* Dropdown Menü */
.profen-dropdown-wrap {
    position: relative;
}

.profen-dropdown {
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    animation: dropdownFadeIn 0.25s ease;
    margin-top: 0.5rem !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profen-dropdown .dropdown-item {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--on-surface);
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.profen-dropdown .dropdown-item:hover {
    background-color: rgba(233, 77, 25, 0.06);
    color: var(--primary);
    padding-left: 1.75rem;
}

.profen-dropdown .dropdown-item.active {
    background-color: rgba(233, 77, 25, 0.1);
    color: var(--primary);
}

.nav-link-custom.dropdown-toggle::after {
    font-size: 0.65rem;
    vertical-align: 0.15em;
    margin-left: 0.35rem;
}

/* Hover ile dropdown açma (desktop) */
@media (min-width: 768px) {
    .profen-dropdown-wrap:hover>.profen-dropdown {
        display: block;
    }

    .profen-dropdown-wrap>.dropdown-toggle:focus+.profen-dropdown {
        display: block;
    }
}

/* ================================================
   HERO SEKSİYONU
   ================================================ */
.hero-section {
    position: relative;
    min-height: 921px;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero YouTube Arkaplan */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: calc(100vw * 9/16);
    min-height: 921px;
    min-width: calc(921px * 16/9);
    transform: translate(-50%, -50%);
    border: none;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 28, 28, 0.9) 0%, rgba(26, 28, 28, 0.4) 50%, rgba(26, 28, 28, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================
   FORM ELEMANLARI
   ================================================ */
.form-control-glass {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 12px 16px;
}

.form-control-glass:focus {
    background-color: white;
    box-shadow: 0 0 0 2px var(--primary);
}

/* ================================================
   OVERLAP KARTLAR
   ================================================ */
.overlap-cards-section {
    position: relative;
    z-index: 10;
    margin-top: -5rem;
}

.overlap-card {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.overlap-card:hover {
    transform: translateY(-8px);
}

/* ================================================
   DUYURULAR & BLOG (Aspect Ratio 4:5)
   ================================================ */
.ratio-4x5 {
    --bs-aspect-ratio: 125%;
    overflow: hidden;
}

.ratio-4x5 img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.announcement-card {
    cursor: pointer;
}

.announcement-card:hover img {
    transform: scale(1.1);
}

.announcement-card:hover h5 {
    color: var(--primary);
}

.badge-custom {
    position: absolute;
    top: 1rem !important;
    left: 1rem !important;
    width: auto !important;
    height: auto !important;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

/* ================================================
   DENEME SINAVI KARTLARI
   ================================================ */
.exam-card {
    background-color: white;
    border: 1px solid rgba(227, 190, 180, 0.5);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.exam-card .bg-circle {
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(171, 46, 0, 0.05);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.exam-card:hover .bg-circle {
    transform: scale(1.5);
}

.timer-box {
    background-color: var(--surface-container-low);
    padding: 0.75rem;
    border-radius: 0.25rem;
    text-align: center;
}

/* ================================================
   NEDEN PROFEN - İKON HOVER
   ================================================ */
.feature-box .icon-wrapper {
    width: 5rem;
    height: 5rem;
    background-color: var(--surface-container-low);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: background-color 0.3s ease;
}

.feature-box:hover .icon-wrapper {
    background-color: rgba(171, 46, 0, 0.1);
}

/* Custom Input */
.custom-input {
    border: 1px solid var(--surface-container-highest);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(171, 46, 0, 0.2);
}

/* ================================================
   EĞİTİM PAKETLERİ
   ================================================ */
.pricing-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--outline-variant);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    background: #2f3131;
    color: white;
    border: 4px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ================================================
   KAMPÜSTE NELER OLUYOR (Sosyal Medya Kartları)
   ================================================ */
.social-card {
    min-width: 320px;
    height: 500px;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.social-card:hover img {
    transform: scale(1.1);
}

/* Scrollbar Gizleme */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 4:5 Sosyal Medya Kartları */
.social-card-wrapper {
    flex: 0 0 auto;
    position: relative;
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    width: calc(75% - 1rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 576px) {
    .social-card-wrapper {
        width: calc(50% - 0.5rem);
    }
}

@media (min-width: 768px) {
    .social-card-wrapper {
        width: calc(33.333% - 0.66rem);
    }
}

@media (min-width: 992px) {
    .social-card-wrapper {
        width: calc(25% - 0.75rem);
    }
}

@media (min-width: 1200px) {
    .social-card-wrapper {
        width: calc(20% - 0.8rem);
    }
}

.social-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.social-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
}

.social-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.social-card-wrapper:hover .social-card-image-wrap img {
    transform: scale(1.1);
}

.social-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-card-caption {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--on-surface);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.social-card-wrapper:hover .social-card-caption {
    color: var(--primary);
}

/* ================================================
   YORUM ALANI (Masonry Grid)
   ================================================ */
.testimonial-masonry {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-masonry {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .testimonial-masonry {
        column-count: 3;
    }
}

.testimonial-card {
    break-inside: avoid;
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    color: var(--on-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

/* ================================================
   ÖNE ÇIKAN DUYURULAR (code.html tasarımı)
   ================================================ */
.new-ann-card {
    min-width: 350px;
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(227, 190, 180, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.new-ann-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.new-ann-img-wrapper {
    height: 14rem;
    overflow: hidden;
    position: relative;
}

.new-ann-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.new-ann-card:hover .new-ann-img-wrapper img {
    transform: scale(1.05);
}

.new-ann-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-size: 11px;
    font-weight: 800;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    z-index: 2;
}

.new-ann-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transition: color 0.3s;
    color: var(--on-surface);
}

.new-ann-card:hover .new-ann-title {
    color: var(--primary);
}

.new-ann-link {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.new-ann-link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.3s;
}

.new-ann-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* ================================================
   NEDEN PROFEN AKADEMİ (Ayrıcalıklarımız)
   ================================================ */
.new-why-wrapper {
    background-color: var(--surface);
    border-top: 1px solid rgba(227, 190, 180, 0.3);
    border-bottom: 1px solid rgba(227, 190, 180, 0.3);
}

.new-why-badge {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.new-why-feature {
    display: flex;
    gap: 1.5rem;
}

.new-why-icon-box {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    background-color: rgba(171, 46, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.new-why-feature:hover .new-why-icon-box {
    background-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(171, 46, 0, 0.3);
}

.new-why-feature:hover .new-why-icon-box .material-symbols-outlined {
    color: white !important;
}

.new-why-image-wrapper {
    background-color: var(--surface-container-high);
    border-radius: 3rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.new-why-stats {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    background-color: white;
    padding: 2.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(227, 190, 180, 0.5);
    z-index: 10;
}

@media (max-width: 991.98px) {
    .new-why-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        border-radius: 1.5rem;
    }

    .new-why-image-wrapper {
        border-radius: 1.5rem;
    }
}

/* ================================================
   FLOATING (YÜZEN) BUTONLAR
   ================================================ */
.floating-mute-btn {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    z-index: 1050;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(171, 46, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-mute-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    z-index: 1050;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: white;
}

/* ================================================
   REKLAM POPUP & KVKK
   ================================================ */

/* Ad Popup Overlay */
.ad-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.ad-popup-overlay.show-popup {
    opacity: 1;
    pointer-events: auto;
}

.ad-popup-content {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.ad-popup-overlay.show-popup .ad-popup-content {
    transform: translateY(0);
}

.ad-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.ad-popup-close:hover {
    transform: scale(1.1);
}

/* KVKK Banner */
.kvkk-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--on-surface);
    color: white;
    z-index: 1060;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.kvkk-banner.hidden-banner {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* KVKK Mini Icon (Küçülmüş Hal) */
.kvkk-mini-icon {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: var(--on-surface);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.kvkk-mini-icon.show-icon {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.kvkk-mini-icon:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

/* ================================================
   WORDPRESS ÖZEL STİLLER
   ================================================ */

/* WordPress admin bar ile uyum */
.admin-bar .fixed-top {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .fixed-top {
        top: 46px;
    }
}

/* WordPress hizalama sınıfları */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* WordPress görsel caption */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption img {
    max-width: 100%;
    height: auto;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--tertiary);
    margin-top: 0.5rem;
}

/* WordPress pagination */
.page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.page-numbers li a,
.page-numbers li span {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--on-surface);
    background: white;
    border: 1px solid var(--surface-container-highest);
    transition: all 0.3s ease;
}

.page-numbers li .current,
.page-numbers li a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* WordPress yorum alanı */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ================================================
   DETAY SAYFASI (single.php)
   ================================================ */
.detail-hero {
    background-color: var(--on-surface);
    padding-top: 180px;
    padding-bottom: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 77, 25, 0.15), transparent 50%);
    pointer-events: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

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

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 700;
}

.sidebar-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 130px;
}

.custom-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--on-surface);
    padding: 1.25rem 1.5rem;
    background-color: white;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(233, 77, 25, 0.05);
}

.custom-accordion .accordion-button::after {
    filter: grayscale(1);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.related-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

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

/* Detay sayfası entry-content WordPress içerik stili */
.detail-entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--tertiary);
}

.detail-entry-content h2,
.detail-entry-content h3,
.detail-entry-content h4 {
    font-family: var(--font-headline);
    font-weight: 800;
    color: var(--on-surface);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-entry-content img {
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.detail-entry-content ul,
.detail-entry-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.detail-entry-content li {
    margin-bottom: 0.5rem;
}

.detail-entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--surface-container-low);
    border-radius: 0 0.75rem 0.75rem 0;
    font-style: italic;
    color: var(--on-surface);
}

/* ================================================
   MOBİL UYUMLULUK İYİLEŞTİRMELERİ
   ================================================ */
@media (max-width: 767.98px) {

    /* Hero - Mobilde yükseklik azaltma */
    .hero-section {
        min-height: 600px;
        padding-top: 90px;
    }

    .hero-video-wrapper iframe {
        min-height: 600px;
        min-width: calc(600px * 16/9);
    }

    /* Floating Butonlar - Mobilde küçült */
    .floating-mute-btn {
        width: 42px;
        height: 42px;
        right: 0.75rem;
    }

    .floating-mute-btn .material-symbols-outlined {
        font-size: 1.1rem;
    }

    .floating-whatsapp-btn {
        width: 48px;
        height: 48px;
        right: 0.75rem;
        bottom: 1.25rem;
    }

    .floating-whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }

    /* KVKK Mini Icon - Mobilde küçült */
    .kvkk-mini-icon {
        width: 40px;
        height: 40px;
        left: 0.75rem;
        bottom: 1.25rem;
    }

    .kvkk-mini-icon .material-symbols-outlined {
        font-size: 1.1rem;
    }

    /* KVKK Banner - Mobilde padding azalt */
    .kvkk-banner {
        padding: 1rem;
        gap: 1rem;
    }

    /* Overlap kartlar - Mobilde margin azalt */
    .overlap-cards-section {
        margin-top: -2rem;
    }

    /* Pricing - Mobilde padding azalt */
    .pricing-card {
        padding: 1.75rem;
        border-radius: 1.5rem;
    }

    /* Featured News - Mobilde min-width azalt */
    .new-ann-card {
        min-width: 280px;
    }

    /* Testimonial cards - Mobilde padding azalt */
    .testimonial-card {
        padding: 1.25rem;
    }

    /* Ad Popup - Mobilde daha küçük */
    .ad-popup-content {
        width: 95%;
        border-radius: 0.75rem;
    }

    /* Detay sayfası - Mobil */
    .detail-hero {
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .sidebar-card {
        position: static;
        border-radius: 1rem;
    }
}

/* Çok küçük ekranlar (< 375px) */
@media (max-width: 374.98px) {
    .hero-section {
        min-height: 500px;
        padding-top: 80px;
    }

    .overlap-cards-section {
        margin-top: -1rem;
    }
}