/* Temel stil ayarları ve karanlık tema */

body {
font-family: 'Inter', sans-serif;
opacity: 0;
background-color: var(--color-bg-light);
color: var(--color-text-light);
transition: background-color 0.3s ease, color 0.3s ease, opacity 0.4s ease;
min-height: 100vh;
scroll-behavior: smooth;
line-height: 1.6;
font-size: 1rem;
}

header, footer {
background-color: var(--color-bg-light);
transition: background-color 0.3s ease, color 0.3s ease;
}

a.nav-link {
color: var(--color-text-light);
transition: color 0.3s ease;
}
a.nav-link:hover,
a.nav-link:focus {
color: var(--color-primary);
text-decoration: underline;
outline: none;
}

body.dark-mode {
background-color: var(--color-bg-dark);
color: var(--color-text-dark);
}
body.dark-mode header,
body.dark-mode footer {
background-color: #1E1E1E;
color: var(--color-text-dark);
}

.theme-switch {
    position: relative;
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, #ffcc70, #ff8177);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    user-select: none;
}

body.dark-mode .theme-switch {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    
}


.theme-switch span {
    color: white;
    font-size: 1.5rem;
    z-index: 1;
    user-select: none;
}


.theme-switch i {
    user-select: none; 
}


.toggle-circle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    transition: left 0.4s;
    
}

.container-custom{
    overflow: hidden;
}

body.dark-mode .toggle-circle {
    left: 54px;
}

body .sun{
    color: #ff8177;
}

body.dark-mode .moon{
    color: #8f94f1;
}

body.dark-mode .sun{
    color: #fff;
}

body.dark-mode section#pricing{
    background-color: var(--color-bg-dark) !important;
}


/* Kartlar karanlık temada */
body.dark-mode .card {
background-color: #1f1f1f;
box-shadow: 0 0 15px rgba(0,0,0,0.3);
color: var(--color-text-dark);
}
body.dark-mode .card:hover {
box-shadow: 0 0 25px rgba(30, 58, 138, 0.7);

}


/* Başlıklar */
h1, h2, h3, h4 {
font-weight: 600;
color: var(--color-primary);
margin-bottom: 1rem;
}


/* Buton büyük versiyon */
.btn-lg {
padding: 0.75rem 1.5rem;
font-size: 1.125rem;
}

/* Navbar */
.navbar-light {
background-color: var(--color-bg-light) !important;
transition: background-color 0.3s ease;
}
body.dark-mode .navbar-light {
background-color: #1E1E1E !important;
}

/* Arkaplanlar */
.bg-light {
background-color: var(--color-bg-light) !important;
}
body.dark-mode .bg-light {
background-color: var(--color-bg-dark) !important;
}

/* Navbar transparent */
.navbar-custom {
    background-color: rgba(147, 147, 147, 0.05);
    /* backdrop-filter: saturate(180%) blur(10px); */
    backdrop-filter: blur(10px); /* Arkadaki görüntüyü 10px bulanıklaştır */
    -webkit-backdrop-filter: blur(10px); /* Safari uyumluluğu için */

    transition: background-color 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1030;
}

body.dark-mode .navbar-custom {
background-color: rgba(52, 52, 52, 0.05);

}



/* Navbar linkler */
.navbar-custom .nav-link {
color: var(--color-text-light);
font-weight: 600;
transition: color 0.3s ease;
}
body.dark-mode .navbar-custom .nav-link {
color: var(--color-text-dark);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
color: var(--color-primary);
text-decoration: none;
outline: none;
}

/* Animasyonlu hamburger */
.menu-toggle {
cursor: pointer;
width: 28px;
height: 22px;
position: relative;
display: none;
z-index: 1100;
}

body.dark-mode .menu-toggle span{
    background-color: lightgray;
}

.menu-toggle span {
background-color: #333;
position: absolute;
height: 3px;
width: 100%;
border-radius: 2px;
transition: all 0.35s ease-in-out;
}
.menu-toggle span:nth-child(1) {
top: 0;
}
.menu-toggle span:nth-child(2) {
top: 9px;
}
.menu-toggle span:nth-child(3) {
top: 18px;
}
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg);
top: 9px;
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg);
top: 9px;
}


/* background-image: url('https://picsum.photos/2400/1600'); */


.hero-section {
    position: relative;
    background-image: url('https://picsum.photos/2400/2000');
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    color: rgba(255, 255, 255, 0.7); 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
    z-index: 1;
    transition: color,background-size 2s ease;
    background-size: 110%;
    border-bottom-left-radius: 10rem;
    border-bottom-right-radius: 10rem;
}


.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25); 
    z-index: 0;
    transition: background-color 2s ease;
}


.hero-section:hover {
    background-size: 115%; 
    color: rgba(255, 255, 255, 1);
}

.hero-section:hover::before {
    background-color: rgba(0, 0, 0, 0.45);
}

/* İçeriği overlayin üstünde göstermek için container */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

/* Responsive ayarları */
@media (max-width: 768px) {
    .hero-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}

.hero-section .container {
position: relative;
z-index: 1;
}

/* Responsive hero başlık */
.hero-section h1 {
font-size: 3rem;
font-weight: 700;
width: 100%;
height: 15vh;
line-height: 1.2;
}
@media (max-width: 768px) {
.hero-section h1 {
font-size: 2rem;
}
}

body.dark-mode .text-custom{
    color: #fff !important;
}

.custom-card{
    height: 100%;
}

.custom-card article{
    width: 100%;
    height: 100%;
}

main section.features{
    padding: 1rem;

}

main section.features .container{
    padding: 2rem;
    border-radius: 10rem;
    background-color: var(--card-bg);
    box-shadow: 0 6px 15px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main section.features .features-category-menu#bizKimA .container{
    padding: .4rem !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

body.dark-mode main section.features .container{
    background-color: var(--bg-dark-l);
}

section#features .features-category-menu.active{
    display: flex;
}

/* section#features .features-category-menu#canTopA.active{
    display: flex;
    flex-direction: column;
} */

section#features .features-category-menu img{
    /* width: 100%; */
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.4s ease;
    padding: 0.4rem;
}

body.dark-mode .features-category-menu {
    color: #ddd;
}
body.dark-mode .features-category-menu .text-muted {
    color: #aaa !important;
}

.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.timeline-icon {
    flex: 0 0 50px;
    height: 50px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right: 15px;
}
.timeline-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}
body.dark-mode .timeline-content {
    background: #2a2a2a;
    color: #ddd;
}


.feature-card{
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.feature-hero{
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
}
.feature-hero a.btn{
    padding: .5rem .8rem;
    font-size: 1.1rem;
}
.feature-hero li{
    display: flex;
    align-items: center;
    /* margin-bottom: 1rem; */
}
.feature-hero li span, .icon-bubble{
    background-color: transparent !important;
    box-shadow: none !important;
    border: none;
    font-size: 1.5rem;
}

body.dark-mode .feature-hero, body.dark-mode .features-category-menu .feature-card, body.dark-mode .features-category-menu .feature-card .kpi{
    background-color: transparent;
    box-shadow: 0 6px 15px var(--card-shadow);
}

body.dark-mode .features-category-menu .feature-card .kpi{
    box-shadow: none !important;
    border: 1px solid var(--card-bg);
}

.kpi .text-small{
    width: 100%;
    text-align: center;
}

.badge-soft{
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .8rem;
}
body.dark-mode .badge-soft{
  background: rgba(99,102,241,.18);
  color: #a5b4fc;
}
.gradient-text{
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.icon-bubble{
  width: 44px; height: 44px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: var(--bg-soft); border:1px solid var(--border);
}
.kpi{
  border-radius: 14px; padding: 18px; background: var(--bg-card);
  border:1px solid var(--border); text-align:center;
}
.progress{ height: 10px; border-radius: 999px; overflow: hidden; background: var(--bg-soft); }
.progress-bar{ background: #0d6efd; }
body.dark-mode .progress-bar{ background: #22d3ee; }

.timeline{ position:relative; }
.timeline::before{ content:""; position:absolute; left:20px; top:0; bottom:0; width:2px; background: var(--border); }
.tl-item{ position:relative; padding-left:60px; margin-bottom:20px; }
.tl-dot{
  position:absolute; left:12px; top:4px; width:16px; height:16px; border-radius:50%;
  background:#0d6efd; box-shadow:0 0 0 4px var(--bg-card);
}
body.dark-mode .tl-dot{ background:#22d3ee; }

.chat{
  display:flex; gap:12px; margin-bottom:14px;
}
.bubble{
  padding:12px 14px; border-radius:14px; max-width: 100%;
  background: var(--bg-card); border:1px solid var(--border);
}

.nav.nav-pills{
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
}

.nav.nav-pills button{
    width: 100%;
    padding-top: .4rem;
    padding-bottom: .4rem;
}

.nav.nav-pills .nav-item{
    margin-bottom: .5rem;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: none;
    border-radius: 16px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

/* Görselin boyutlarını ve uyumunu ayarlar */
.blog-card .card-img-top {
    object-fit: cover;
    height: 220px; /* Görselin yüksekliğini artırdım */
    transition: transform 0.5s ease;
}

/* Hover'da görseli hafifçe büyütür */
.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Yazar ve okuma süresi alanı */
.meta-info {
    font-size: 0.875rem;
}

.meta-info .author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dark-mode için temel renk geçişleri */
body.dark-mode {
    background-color: #121212 !important;
    color: #f5f5f5;
}

/* Dark-mode'da blog kartının stilleri */
body.dark-mode .blog-card {
    background-color: #212121;
    color: #f5f5f5;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

/* Dark-mode'da hover stilleri */
body.dark-mode .blog-card:hover {
    background-color: #2c2c2c;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35) !important;
}

/* Dark-mode'da yazı renkleri */
body.dark-mode .blog-card .card-title {
    color: #f5f5f5 !important;
}

body.dark-mode .blog-card .text-muted,
body.dark-mode .meta-info {
    color: #adb5bd !important;
}

/* Etiket stili */
.category-tag {
    background-color: #007bff;
    color: #fff;
    padding: 4px 10px;
    border-radius: 50rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
}







/* Footer'ın ana stilleri ve full-width görünümü */
.modern-footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 5rem;
    padding-bottom: 2rem;
    margin: 3rem 5rem;
    border-radius: 5rem;
}

/* Başlıkların stili */
.modern-footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bağlantı listesi ve link stilleri */
.modern-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer ul li {
    margin-bottom: 0.8rem;
}

.modern-footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-footer a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Yeni eklenen link animasyonu */
.modern-footer .nav-link-item {
    position: relative;
    transition: transform 0.3s ease-out;
    transform: translateX(0);
}

.modern-footer .nav-link-item:hover {
    transform: translateX(8px);
}

.modern-footer .nav-link-item:hover::before {
    content: "•";
    position: absolute;
    left: -15px;
    color: #0d6efd;
    font-weight: bold;
}

/* Sosyal medya ikonları için stil */
.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    color: #6c757d;
    margin-right: 1.5rem;
}

/* İkonun üzerine gelindiğinde hafifçe büyüme animasyonu */
.social-icons a:hover {
    transform: scale(1.3);
}

/* Her bir sosyal medya ikonuna özel renkler */
.social-icons .fa-facebook-f:hover { color: #3b5998 !important; }
.social-icons .fa-twitter:hover { color: #00acee !important; }
.social-icons .fa-instagram:hover { color: #E4405F !important; }
.social-icons .fa-linkedin-in:hover { color: #0077b5 !important; }
.social-icons .fa-youtube:hover { color: #FF0000 !important; }
.social-icons .fa-tiktok:hover { color: #69C9D0 !important; }

/* Dark-mode stilleri */
body.dark-mode .modern-footer {
    background-color: #1a1a1a !important;
    color: #f5f5f5;
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .modern-footer h5 {
    color: #f5f5f5;
}

body.dark-mode .modern-footer a {
    color: #adb5bd;
}

body.dark-mode .modern-footer a:hover {
    color: #0d6efd;
}

body.dark-mode .social-icons a {
    color: #ced4da;
}

body.dark-mode .social-icons .fa-facebook-f:hover { color: #3b5998 !important; }
body.dark-mode .social-icons .fa-twitter:hover { color: #00acee !important; }
body.dark-mode .social-icons .fa-instagram:hover { color: #E4405F !important; }
body.dark-mode .social-icons .fa-linkedin-in:hover { color: #0077b5 !important; }
body.dark-mode .social-icons .fa-youtube:hover { color: #FF0000 !important; }
body.dark-mode .social-icons .fa-tiktok:hover { color: #69C9D0 !important; }

body.dark-mode .newsletter-section .form-control {
    background-color: #2c2c2c;
    border-color: #444;
    color: #f5f5f5;
}

body.dark-mode .newsletter-section .form-control::placeholder {
    color: #adb5bd;
}

#blog .blog-card, footer{
    background-color: var(--card-bg);
}


body.dark-mode #detAnaA table td ,body.dark-mode #detAnaA thead{
    background-color: transparent !important;
    color: var(--color-bg-light) !important;
    border-color: var(--bs-border-color) !important;
}


#testimonials {
  background: var(--color-bg-light);
  padding: 4rem 0;
}

body.dark-mode #testimonials {
  background: var(--color-bg-dark);
}

#testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-light);
}

body.dark-mode #testimonials h2 {
  color: var(--color-text-dark);
}

#testimonials p {
  color: var(--color-muted);
}

/* CARD STYLES */
.testimonial-item {
    background: var(--card-bg);
    color: var(--card-text);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 20px var(--card-shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.dark-mode .testimonial-item{
    background-color: var(--bg-dark-l) !important;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.testimonial-item img {
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px var(--color-primary);
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto 1rem;
    transition: box-shadow 0.3s ease;
}

.testimonial-item:hover img {
  box-shadow: 0 0 0 4px var(--color-secondary);
}

/* BLOCKQUOTE */
.testimonial-item blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  position: relative;
}

body.dark-mode .testimonial-item blockquote {
  color: var(--color-text-dark);
}

.testimonial-item blockquote::before {
  content: "“";
  font-size: 2.5rem;
  color: var(--color-secondary);
  position: absolute;
  left: -12px;
  top: -15px;
  opacity: 0.8;
}

/* CAPTION */
.testimonial-item h5 {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-light);
}

body.dark-mode .testimonial-item h5 {
  color: var(--color-text-dark);
}

.testimonial-item small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* RATING */
.testimonial-item .rating {
  margin-top: 0.5rem;
  color: var(--color-secondary);
  font-size: 1.1rem;
}

/* OWL CUSTOM NAV */
.owl-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--btn-bg) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  outline: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.owl-carousel .owl-nav button:hover {
  background: var(--btn-hover-bg) !important;
}

.owl-carousel .owl-nav .owl-prev {
  left: -55px;
}

.owl-carousel .owl-nav .owl-next {
  right: -55px;
}

/* OWL DOTS */
.owl-carousel .owl-dots {
  margin-top: 1.5rem;
  text-align: center;
}

.owl-carousel .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #cbd5e1 !important;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.owl-carousel .owl-dot.active {
  background: var(--color-primary) !important;
  transform: scale(1.2);
}

#testimonials .owl-stage{
    display: flex;
}

/* Accordion açıklama kutusu */
.accordion-body {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

/* En alttaki mail formu */
#askQuestionForm {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#askQuestionForm input,
#askQuestionForm textarea {
    border-radius: 6px;
}

.hero-section{
    height: 85vh !important;
}

.hero-section a, .hero-section li, .hero-section .breadcrumb-item+.breadcrumb-item::before
{
    text-decoration: none;
    color: #fff ;
    font-size: 1.1rem;
}

.hero-section .container{
    /* background-color: #333333ba; */
    border-radius: 2rem;
}

.hero-section .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em; 
    background-color: #2563eb; 
    margin-left: 2px;
    animation: blink 0.7s infinite step-end;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* asdişlasdşkasşldkas */
.hero-section.hero{
    display: flex;
    width: 100%;
}

.hero-section.hero .hero-card-container{
    margin-left: auto;
}

.hero-cards-container {
    width: 20%;
    margin-left: auto;
}



.text-start{
    width: 75%;
    z-index: 5;
}
.text-start .lead{
    color: #fff !important;
}

.custom-blur-card {
    /* Koyu Arka Plan + Opaklık */
    background-color: rgba(0, 0, 0, 0.4) !important; 
    
    /* Buzlu Cam Efekti (Arka Plan Bulanıklığı) */
    backdrop-filter: blur(15px) !important; 
    -webkit-backdrop-filter: blur(15px) !important; /* Safari desteği için */
    
    /* Metin rengini belirginleştirmek için beyaz yapıyoruz */
    color: #ffffff;
    
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Hafif bir çerçeve */
    border-radius: 15px; /* Yumuşak kenarlar */
    transition: transform 0.3s ease; /* Hover efekti için geçiş */
}

/* Yorum İçindeki Alıntı İkonu */
.custom-blur-card .text-primary {
    color: #4dc4e7 !important; /* Koçluk sitesi temasına uygun bir renk */
}

/* İkon Işıltısı (Glow) Efekti */
.icon-glow {
    text-shadow: 0 0 10px rgba(77, 196, 231, 0.8);
}

/* Başlık Rengi (Arka plan ile kontrast sağlamak için) */
/* .text-center {
    color: #343a40;
} */

/* Unvan Rengini Kart İçinde Açık Tut */
.custom-blur-card .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Lead metin stilini kart içinde daha yumuşak yap */
.custom-blur-card #yorum-metni {
    font-style: italic;
}

#animated-heading{
    color: #4dc4e7 !important;
    text-shadow: 0 0 5dvi rgba(77, 196, 231, 0.8);
}

.price-yearly{
    color: black !important;
}
body.dark-mode .price-yearly{
    color: #fff !important;
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 oranı (9/16 * 100 = 56.25%) */
    height: 0;
    overflow: hidden; /* Taşmaları engelle */
    border-radius: 8px; /* Kartın yuvarlaklığını takip edebilir */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* 2. Gömülü (Embed) Video (iframe) Stilimiz */
.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Kart içine tam olarak yayılmasını sağlar */
}

.price-content {
    /* Fiyat ve indirimin yan yana, aralarında boşluk bırakarak hizalanmasını sağlar */
    align-items: center; /* Dikeyde ortala */
    gap: 15px; /* Fiyat ve indirim arasında boşluk bırak */
    margin-bottom: 15px; /* Altındaki içeriğe boşluk ver */
    justify-content: space-between;
}

/* FİYAT ETİKETİ: Ana Tema Rengi */
.price-yearly {
    font-size: 2.4rem;
    font-weight: 800;
    /* Ana Tema Rengi: #3b82f6 */
    color: var(--color-primary, #3b82f6); 
}

/* İNDİRİM ETİKETİ (KONTRAST İÇİN KIRMIZI KALIYOR) */
.discount {
    /* Temel Görünüm */
    font-weight: 700; 
    font-size: 0.9rem; 
    padding: 6px 14px; 
    border-radius: 6px; 
    
    /* Kontrast Renk (Kırmızı/Fırsat Hissi) */
    background-color: var(--color-primary); 
    color: #ffffff; 
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2); 

    /* Şerit/Ribbon Efekti */
    transform: skewX(-7deg); 
    display: inline-block; 
    letter-spacing: 0.5px; 
    
    /* Gölge (Kırmızı ışıltı korundu) */
    box-shadow: 0 0 10px rgba(68, 68, 239, 0.5), 
                0 3px 6px rgba(0, 0, 0, 0.15); 
    
    transition: all 0.3s ease; 
}

/* İNDİRİM HOVER ETKİSİ */
.discount:hover {
    background-color: var(--color-primary); 
    transform: skewX(-7deg) scale(1.05); 
    cursor: default; 
    box-shadow: 0 0 15px rgba(68, 68, 239, 0.5), 
                0 5px 10px rgba(0, 0, 0, 0.2);
}

#pricing .btn-custom {
    /* Genel Görünüm ve Boyutlandırma */
    display: block; 
    width: 100%;
    margin-top: 25px; 
    padding: 14px 20px; 
    font-weight: 700;
    font-size: 1.15rem; 
    letter-spacing: 0.5px;
    
    /* Beyaz Arka Plan ve Mavi Metin */
    background-color: #ffffff; 
    color: var(--color-primary, #3b82f6); /* Metin Ana Tema Rengi */
    border: 2px solid var(--color-primary, #3b82f6); /* Mavi Çerçeve */
    border-radius: 8px; 
    
    /* Açık veya Koyu Arka Planda butonu öne çıkaran gölge */
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4), /* Mavi odak gölgesi */
                0 1px 3px rgba(0, 0, 0, 0.1); 
    
    transition: all 0.3s ease-in-out;
}

/* Hover ve Aktif Etkileşimler (Tüm modlarda aynı) */
#pricing .btn-custom:hover {
    /* Hover'da mavi dolguya geçiş (Tersine Çevirme) */
    background-color: var(--color-primary, #3b82f6); 
    color: #ffffff; /* Metin beyaza döner */
    
    transform: translateY(-4px) scale(1.01);
    
    /* Gölgeyi derinleştir ve parlaklığı artır */
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.8), 
                0 5px 10px rgba(0, 0, 0, 0.4); /* Daha belirgin koyu gölge */
}

#pricing .btn-custom:active {
    transform: translateY(1px);
    background-color: #2563eb; /* Bir koyu mavi tonu */
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.4), 
                0 1px 3px rgba(0, 0, 0, 0.2);
}

.koclar-main-title {
    color: #343a40; 
}

.koc-card {
    border: none;
    border-radius: 12px;
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s;
    background-color: #ffffff; /* Beyaz kart */
}

/* Hover Efekti */
.koc-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 18px 35px rgba(59, 130, 246, 0.25); /* Mavi Odaklı Gölge */
}

/* Koç Resmi ve Puanlama Rozeti */
.koc-resim-alani {
    position: relative;
    background-color: #e9ecef; /* Açık gri arka plan */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.koc-img {
    height: 100%; 
    width: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.rating-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--color-primary, #3b82f6);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* İkonlar ve Metin Detayları */
.koc-icon {
    color: var(--color-primary, #3b82f6); /* Ana Mavi Renk */
}


/* CTA Butonu (Tekrarlanmadan Temanın Buton Stilini kullanır) */
.koc-cta {
    background-color: var(--color-primary, #3b82f6);
    /* ... önceki .btn-custom stilleri burada uygulanacaktır ... */
}


/* --------------------------------------------------- */
/* KARANLIK MOD STİLLERİ (.dark-mode) */
/* --------------------------------------------------- */

body.dark-mode .koclar-main-title {
    color: #f8f9fa; /* Açık başlık */
}

body.dark-mode .koc-card {
    background-color: #272c35; /* Koyu kart arka planı */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

body.dark-mode .koc-card:hover {
    box-shadow: 0 18px 35px rgba(59, 130, 246, 0.35); /* Mavi Işıltı Korunur */
}

body.dark-mode .koc-resim-alani {
    background-color: #1f232b; /* Daha koyu resim alanı arka planı */
}

#hero .card-body, 
#hero .card-body p,
#hero .card-body .text-muted {
    color: #ced4da !important; /* Açık gri metin */
}

body.dark-mode .koc-icon {
    color: var(--color-primary, #3b82f6); /* İkon rengi aynı kalır */
}

/* --------------------------------------------------- */
/* RESPONSIVE (Duyarlı) Düzenlemeler */
/* --------------------------------------------------- */

@media (max-width: 767px) {
    .koc-resim-alani {
        height: 250px; /* Mobil cihazlarda resme sabit yükseklik */
    }
    .koc-img {
        /* Mobil: Resmi üst köşelere yuvarla */
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: 12px !important;
        border-top-left-radius: 12px !important;
    }
    .koc-card .row > div:first-child {
        /* Mobil: Resmin sadece üstte kalmasını sağlar */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    }
    body.dark-mode .koc-card .row > div:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.more-coaches-card {
    text-decoration: none; /* A etiketindeki alt çizgiyi kaldırır */
    border: 3px dashed var(--color-primary, #3b82f6); /* Kesikli çerçeve */
    border-radius: 12px;
    background-color: #f0f4ff; /* Hafif arka plan */
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.more-coaches-card .fas.fa-plus-circle {
    color: var(--color-primary, #3b82f6);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Çeyrek Kart Hover Efekti */
.more-coaches-card:hover {
    background-color: #e6ecff; /* Hafif koyulaştır */
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.more-coaches-card:hover .fas.fa-plus-circle {
    transform: scale(1.1); /* Artı işaretini büyüt */
    opacity: 1;
}

/* --------------------------------------------------- */
/* KARANLIK MOD UYUMU (SADECE ÇEYREK KART İÇİN) */
/* --------------------------------------------------- */

body.dark-mode .more-coaches-card {
    background-color: #272c35; 
    border: 3px dashed var(--color-primary, #3b82f6); 
    color: #ced4da; /* Açık metin */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

body.dark-mode .more-coaches-card:hover {
    background-color: #343a40; 
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

/* style.css dosyasına eklenecek/güncellenecek */

/* --------------------------------------------------- */
/* YENİ: KOÇ BİLGİ DETAYLARI VE KALİTE İYİLEŞTİRMESİ */
/* --------------------------------------------------- */

.koc-card .detaylar {
    /* Bilgi alanına daha fazla boşluk */
    padding: 10px 0;
}

.koc-card .detaylar .d-flex {
    /* Tek tek bilgi satırları arasına hafif boşluk */
    margin-bottom: 8px;
}

.koc-card .koc-icon {
    /* İkonları daha belirgin hale getir */
    color: var(--color-primary, #3b82f6);
    min-width: 25px; /* İkonların hizasını koru */
    text-align: center;
}

.koc-card .detaylar span.text-secondary {
    /* Açıklama metnini biraz daha koyu yapıyoruz (Açık Mod) */
    color: #495057 !important; 
    font-weight: 500;
}

.koc-card .detaylar span.text-success {
    /* Başarı oranını vurgula */
    color: #28a745 !important;
}

/* KARANLIK MODDA BİLGİ RENGİ İYİLEŞTİRMESİ */
body.dark-mode .koc-card .detaylar span.text-secondary {
    /* Karanlık Modda Açıklama metnini daha açık yapıyoruz */
    color: #ced4da !important;
}

/* --------------------------------------------------- */
/* YENİ: BÜYÜTÜLMÜŞ MİNİMAL BUTONLAR */
/* --------------------------------------------------- */

.koc-minimal-cta {
    /* Boyutu standart butona yaklaştırdık (btn-md gibi) */
    font-weight: 600;
    font-size: 1rem; /* Okunabilirliği artır */
    padding: 10px 20px; /* Daha dolgun padding */
    border-radius: 6px;
    flex-grow: 1; /* Butonların alanda eşit yayılmasını sağlar */
    transition: all 0.3s ease;
}

/* Profil (Outline) Butonu */
.koc-profile-btn {
    /* Shadow ekleyerek minimal görünümü koruyor ama kaliteyi artırıyor */
    box-shadow: 0 2px 5px rgba(59, 130, 246, 0.1);
}

/* Randevu Al (Dolgulu) Butonu */
.koc-schedule-btn {
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); /* Daha belirgin gölge */
}

.koc-schedule-btn:hover {
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.5); /* Hover'da daha fazla ışık */
}

/* style.css dosyasına eklenecek/güncellenecek */

/* --------------------------------------------------- */
/* GENEL AÇIK MOD STİLLERİ (Yorumlar Bölümü) */
/* --------------------------------------------------- */

.yorumlar-main-title {
    color: #343a40; 
}

/* Filtreleme Butonları */
.yorum-filtre-btn {
    --bs-btn-color: var(--color-primary, #3b82f6);
    --bs-btn-border-color: var(--color-primary, #3b82f6);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary, #3b82f6);
    --bs-btn-hover-border-color: var(--color-primary, #3b82f6);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-primary, #3b82f6);
    --bs-btn-active-border-color: var(--color-primary, #3b82f6);
    font-weight: 600;
    border-radius: 50px; /* Oval butonlar */
    padding: 8px 20px;
}

/* Yorum Kartları */
.yorum-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s;
    background-color: #ffffff;
    cursor: pointer;
}

.yorum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); /* Mavi gölge */
}

.yorum-card .card-body {
    color: #495057;
}

.yorum-card .text-primary {
    color: var(--color-primary, #3b82f6) !important;
}

.yorum-card .text-secondary {
    color: #6c757d !important; /* Hafif gri */
}

/* Video Kartı Özel Stiller */
.video-thumbnail-wrapper {
    height: 200px; /* Sabit video önizleme yüksekliği */
    overflow: hidden;
}
.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.video-card:hover .video-thumbnail-wrapper img {
    transform: scale(1.05);
}
.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-card:hover .play-icon-overlay {
    opacity: 1;
}
.view-count {
    font-size: 0.75rem;
    line-height: 1;
}

/* Profil Küçük Resmi */
.profil-kucuk {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid var(--color-primary, #3b82f6);
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
}

/* İstatistik Kartı */
.stats-card {
    background-color: rgba(59, 130, 246, 0.1) !important; /* Ana rengin hafif tonu */
    border: 1px dashed var(--color-primary, #3b82f6);
}
.stats-card:hover {
    background-color: rgba(59, 130, 246, 0.2) !important;
}
.stats-card .text-primary {
    color: var(--color-primary, #3b82f6) !important;
}
.stats-card .text-warning {
    color: #ffc107 !important; /* Sarı istatistik için */
}
.bg-primary-subtle {
    background-color: rgba(59, 130, 246, 0.1) !important;
}
.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important; /* Sarı istatistik için */
}


/* --------------------------------------------------- */
/* KARANLIK MOD STİLLERİ (.dark-mode) */
/* --------------------------------------------------- */

body.dark-mode .yorumlar-main-title {
    color: #f8f9fa; 
}

body.dark-mode .yorum-filtre-btn {
    --bs-btn-color: #ced4da; /* Açık gri metin */
    --bs-btn-border-color: #495057; /* Koyu gri çerçeve */
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary, #3b82f6);
    --bs-btn-hover-border-color: var(--color-primary, #3b82f6);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-primary, #3b82f6);
    --bs-btn-active-border-color: var(--color-primary, #3b82f6);
}

body.dark-mode .yorum-card {
    background-color: #272c35; /* Koyu kart */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

body.dark-mode .yorum-card:hover {
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); 
}

body.dark-mode .yorum-card .card-body,
body.dark-mode .yorum-card .card-text,
body.dark-mode .yorum-card h6,
body.dark-mode .yorum-card small {
    color: #ced4da !important; 
}

body.dark-mode .yorum-card .text-primary {
    color: var(--color-primary, #3b82f6) !important;
}

body.dark-mode .yorum-card .text-secondary {
    color: #9c9c9c !important; 
}

body.dark-mode .stats-card {
    background-color: rgba(59, 130, 246, 0.15) !important; /* Karanlık modda da hafif ton */
    border: 1px dashed var(--color-primary, #3b82f6);
}

body.dark-mode .bg-primary-subtle {
    background-color: rgba(59, 130, 246, 0.15) !important;
}
body.dark-mode .bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.15) !important;
}


body.dark-mode .yorum-card {
    background-color: #272c35; 
    border: 1px solid #3d4554; /* Koyu çerçeve */
}
body.dark-mode .gorsel-wrapper {
    border-bottom: 1px solid #3d4554;
}
body.dark-mode .yazi-ozet,
body.dark-mode .card-body h6 {
    color: #ced4da !important; /* Açık metin */
}
body.dark-mode .rating-visual-badge {
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}
.play-icon-overlay {
    /* ... Mevcut stiller ... */
    flex-direction: column; /* İkon ve etiketi alt alta hizala */
    padding-top: 20px;
}

.video-label {
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Hafif parıltı efekti ekle */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Genel Kart Görünümü İyileştirmesi */
.yorum-card {
    border: 1px solid rgba(0, 0, 0, 0.05); /* Çok hafif bir çerçeve ekleyerek daha tok görünmesini sağla */
}

body.dark-mode .yorum-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Profil Küçük Resmi İyileştirmesi (Daha Belirgin) */
.profil-kucuk {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 3px solid var(--color-primary, #3b82f6); /* Çerçeveyi kalınlaştır */
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}
.yorum-grid {
    display: grid;
    /* Masaüstünde 3 sütunlu düzen. 1fr/1fr/1fr ile eşit genişlikte sütunlar */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    
    /* Masonry Benzeri Görünüm İçin Önemli: Her bir kartın yerleşimi için row'ları otomatik boyutlandırır */
    grid-auto-rows: 10px; /* Her bir satırı küçük birimlere böler */
}

.yorum-item .card {
    height: auto; /* İçeriğe göre yüksekliği almasını sağlar */
    min-height: 100%;
}

/* Bu kısım, kartların grid içerisinde farklı satır aralıklarını kaplamasını sağlar */
/* Kartın Yüksekliğini Hesaplama: İçeriğe göre otomatik olarak doğru satır aralığını bulur */
.yorum-item {
    /* Bu değer, içeriğin yüksekliğine göre ayarlanmalıdır. 
       Yüksekliği 300px olan bir kart için, row-gap 20px ise span 32 alınabilir.
       Bu simülasyon, gerçek Masonry kadar dinamik değildir ancak görsel çeşitlilik sağlar. */
    grid-row-end: span 25; 
}
/* Uzun Kartlar İçin (Örn. Uzun Yorum Kartı) */
.yorum-item[data-category*="long"] {
    grid-row-end: span 35; /* Daha fazla satır kapla */
}
/* Küçük Kartlar İçin (Örn. İstatistik Kartı) */
.yorum-item[data-category*="stats"], 
.yorum-item[data-category*="short"] {
    grid-row-end: span 20; /* Daha az satır kapla */
}

/* Mobil görünümde tek sütun */
@media (max-width: 767px) {
    .yorum-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 15px;
    }
    .yorum-item {
        grid-row-end: auto; /* Mobil tek sütunda bu ayar gerekli değil */
    }
}


/* --------------------------------------------------- */
/* YENİ KART TİPİ STİLLERİ */
/* --------------------------------------------------- */

/* Hızlı İpucu Kartı */
.tip-card {
    background-color: #ecfdf5 !important; /* Başarı için açık yeşil */
    border: none;
}
.tip-card .text-success {
    color: #059669 !important; /* Koyu yeşil metin */
}
body.dark-mode .tip-card {
    background-color: #166534 !important;
}
body.dark-mode .tip-card .text-success {
    color: #a7f3d0 !important;
}

/* Fotoğraf Kartı */
.photo-card {
    padding: 0;
    border: none;
}
.photo-card img {
    height: 100%;
    object-fit: cover;
}
.yorum-masonry {
    /* Masaüstünde 3 sütun */
    column-count: 3;
    /* Kartlar arası boşluk */
    column-gap: 20px;
}

/* Her kartın bir sütunun tamamını kaplamasını ve bölünmemesini sağlar */
.yorum-item {
    display: inline-block; /* Kartları sütunlar içinde sırala */
    width: 100%; /* Sütun genişliğini tam doldur */
    margin-bottom: 20px; /* Kartlar arasında dikey boşluk */
    -webkit-column-break-inside: avoid; /* Kartın ortadan bölünmesini engelle */
    page-break-inside: avoid;
    break-inside: avoid;
}

.yorum-item .card {
    /* Bu çok önemli: Kartın sadece içeriği kadar uzun olmasını sağlar */
    height: auto !important; 
    min-height: 100%;
    /* Hover efektinin taşmasını engeller */
    transform: none !important;
}

/* Hover Efektini Daha Güvenli Hale Getir */
.yorum-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); 
}


/* Mobil görünümde düzenleme */
@media (max-width: 991px) { /* Tablet boyutunda 2 sütun */
    .yorum-masonry {
        column-count: 2;
    }
}
@media (max-width: 575px) { /* Mobil boyutunda tek sütun */
    .yorum-masonry {
        column-count: 1;
    }
}
body.dark-mode .bg-info-subtle {
    background-color: rgba(60, 153, 201, 0.15) !important; /* Mavi/Mavi-Yeşil Ton */
}
body.dark-mode .text-info {
    color: #89d8ff !important; /* Açık Mavi Metin */
}

/* Soru-Cevap Kartı Dark Mode */
body.dark-mode .bg-light-subtle {
    background-color: #343a40 !important; /* Koyu Gri Arka Plan */
    border: 1px solid #495057; 
}
body.dark-mode .tip-card.border-primary {
    border-color: var(--color-primary, #3b82f6) !important; /* Mavi Çizgi Korunur */
}

/* 2. SSS AKORDEON STİLLERİ */
.sss-item {
    margin-bottom: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px !important;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.sss-item:hover {
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.sss-header-btn {
    background-color: #ffffff;
    color: #343a40;
    transition: background-color 0.3s ease;
    padding: 15px 20px;
    font-size: 1.1rem; 
    text-align: left; /* Metnin sola hizalı olmasını sağlar */
    width: 100%;
}

.sss-header-btn:not(.collapsed) {
    color: #ffffff;
    background-color: var(--color-primary, #3b82f6);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sss-body {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* 3. CTA (Hakkımızda) BÖLÜMÜ STİLLERİ */
.iletisim-cta-bolumu {
    border-color: #e9ecef !important; /* Açık modda hafif çizgi */
}

.iletisim-cta-title {
    color: #343a40; /* Koyu gri başlık */
}

.iletisim-cta-bolumu .lead {
    font-size: 1.25rem;
    color: #6c757d !important;
}

/* Buton Stilleri */
.iletisim-link-btn {
    font-weight: 700;
    padding: 12px 25px; 
    border-radius: 8px;
    min-width: 250px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iletisim-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Outline Buton Renkleri (Hakkımızda CTA) */
.btn-outline-primary {
    --bs-btn-color: var(--color-primary, #3b82f6);
    --bs-btn-border-color: var(--color-primary, #3b82f6);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary, #3b82f6);
    --bs-btn-hover-border-color: var(--color-primary, #3b82f6);
}


/* =================================================== */
/* KARANLIK MOD STİLLERİ (.dark-mode) */
/* =================================================== */

body.dark-mode #iletisim-sss {
    color: #ced4da;
}

/* 1. Dark Mode SSS */
body.dark-mode .sss-item {
    border-color: #343a40;
}

body.dark-mode .sss-item:hover {
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

body.dark-mode .sss-header-btn {
    background-color: #272c35;
    color: #f8f9fa;
}

body.dark-mode .sss-header-btn:not(.collapsed) {
    background-color: var(--color-primary, #3b82f6);
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

body.dark-mode .sss-body {
    background-color: #1f232b;
    border-top: 1px solid #343a40;
    color: #ced4da; /* İçerik rengi */
}

/* 2. Dark Mode CTA Bölümü */
body.dark-mode .iletisim-cta-bolumu {
    border-color: #343a40 !important; 
}

body.dark-mode .iletisim-cta-title {
    color: #f8f9fa; 
}

body.dark-mode .iletisim-cta-bolumu .lead {
    color: #ced4da !important; 
}

/* Dark Mode Outline Buton Renkleri */
body.dark-mode .btn-outline-primary {
    --bs-btn-color: var(--color-primary, #3b82f6);
    --bs-btn-border-color: var(--color-primary, #3b82f6);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary, #3b82f6);
    --bs-btn-hover-border-color: var(--color-primary, #3b82f6);
}

/* --------------------------------------------------- */
/* NAV LİNK HOVER ANİMASYONU STİLLERİ */
/* --------------------------------------------------- */

.nav-item .nav-link {
    /* Çizgi efekti için pozisyon bağlaması */
    position: relative;
    
    /* Çizgi animasyonu için geçiş efekti (renk ve pozisyon) */
    transition: color 0.3s ease-in-out;
    
    /* Çizginin başlangıç rengi (Mevcut metin rengini koru) */
    color: var(--bs-nav-link-color, #343a40); 
    
    /* Önemli: Çizginin kendi varsayılan alt çizgisini kaldırır */
    text-decoration: none;
    
    /* Link metin rengini dark mode'da ayarla (Bootstrap varsayılan rengi) */
    --bs-nav-link-color: #343a40; /* Açık mod metin rengi */
}

/* Karanlık Mod Metin Rengi Ayarlaması */
body.dark-mode .nav-item .nav-link {
    --bs-nav-link-color: #ced4da; /* Karanlık mod metin rengi */
}

/* Çizgi Efekti (Pseudo-element ::after kullanılarak) */
.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; /* Linkin hemen altına yerleştir */
    left: 0;
    
    /* Çizginin rengi ve kalınlığı */
    background-color: var(--color-primary, #3b82f6); /* Ana temanızın rengi */
    height: 3px; 
    
    /* Başlangıç Durumu: Çizgi görünmez ve genişliği sıfır */
    width: 0;
    
    /* Animasyon geçişi: Çizginin genişlemesi ve pozisyonu */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* HOVER DURUMU */
.nav-item .nav-link:hover {
    color: var(--color-primary, #3b82f6); /* Hover'da metni mavi yap (Opsiyonel) */
}

.nav-item .nav-link:hover::after {
    /* Hover'da Genişle: Çizgi linkin tüm genişliğini kaplar */
    width: 100%;
    left: 0;
}

/* HOVER SONRASI (Mouse çekildikten sonra kaybolma efekti) */
/* Daha dinamik bir kaybolma animasyonu için: */
.nav-item .nav-link:not(:hover)::after {
    /* Mouse çekilirken çizgi sola doğru kayarak kaybolur */
    left: 50%; 
    width: 0;
}


/* ------------------- */

#aboutUs .card, 
#aboutUs .feature-card {
    border-radius: 1rem;
    border: 3px solid #ffffff45;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    margin-bottom: 2rem;
}

#aboutUs .form-control, 
#aboutUs .form-select {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background-color: var(--card-bg);
  color: var(--card-text);
  transition: all 0.3s;
}

#aboutUs .form-control:focus, 
#aboutUs .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
  outline: none;
  background-color: var(--bg-soft);
}

/* =============================
   Hero ve CTA
   ============================= */
#aboutUs .hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

#aboutUs.dark-mode .tab-content.bg-card.p-4.rounded-3.shadow{
    background-color: var(--bg-dark-l);
}

#aboutUs .tab-content.bg-card.p-4.rounded-3.shadow{
    background-color: var(--bg-dark);
}

#aboutUs .hero-section h1 {
    height: auto !important;
}

#aboutUs .hero-section p {
  font-size: 1.2rem;
  color: var(--color-muted);
}

.text-white{
    color: black !important;
}

body.dark-mode .text-white{
    color: white !important;
}

.text-white-50{
    color: rgba(0, 0, 0, 0.487) !important;
}

body.dark-mode .text-white-50{
    color: rgba(255, 255, 255, 0.531) !important;
}

a.btn.text-white{
    color: white !important;
}


#konu-ve-kaynak-takibi .feature-card.h-100.bg-dark{
    background-color: var(--bg-card) !important;
}

#aboutUs.dark-mode #konu-ve-kaynak-takibi .feature-card.h-100.bg-dark{
    background-color: var(--bg-dark-l) !important;
}

/* =============================
   Timeline / Nasıl Çalışır
   ============================= */
#aboutUs .timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-primary);
}

#aboutUs .timeline-item::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-bg-dark);
  z-index: 10;
}

/* =============================
   Accordion / SSS
   ============================= */
#aboutUs .accordion-button {
  background-color: var(--card-bg);
  color: var(--card-text);
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
  transition: all 0.3s;
}

#aboutUs .accordion-button:not(.collapsed) {
  border-left: 4px solid var(--color-primary-light);
}

#aboutUs .accordion-body {
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s;
}

/* =============================
   Badge, Icon ve Progress Bar
   ============================= */
#aboutUs .badge-soft {
  display: inline-block;
  padding: 0.5em 0.75em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: white;
  background-color: rgba(78, 70, 229, 0.507);
  border-radius: 0.375rem;
}

#aboutUs .icon-bubble {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #333;
  font-size: 1.4rem;
}

#aboutUs.dark-mode .icon-bubble{
    color: #fff;
}

#aboutUs .progress-bar {
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  height: 1rem;
  transition: width 0.4s ease;
}

/* =============================
   Table Stilleri
   ============================= */
#aboutUs .table {
  width: 100%;
  border-collapse: collapse;
  color: var(--card-text);
  margin-bottom: 2rem;
}

#aboutUs .table th, 
#aboutUs .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}



#aboutUs .table th {
  background-color: var(--card-bg);
}

/* =============================
   Scroll / Animasyonlar
   ============================= */
#aboutUs .scroll-down-arrow {
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 992px) {
  #aboutUs .hero-section h1 {
    font-size: 2.5rem;
  }

  #aboutUs .timeline-item {
    padding-left: 2rem;
  }

  #aboutUs .icon-bubble {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #aboutUs .container {
    width: 95%;
  }

  #aboutUs .hero-section h1 {
    font-size: 2rem;
  }
}

.primary-color{
    color: var(--color-secondary);
}


#aboutUs main .features-about-page-card .text-center.text-white{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}


#aboutUs main .features-about-page-card .mb-3.mb-md-0{
    background: var(--bg-card);
    padding:4rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px solid #3333337c;
}

#aboutUs.dark-mode main .features-about-page-card .mb-3.mb-md-0{
    background-color: var(--bg-dark-l);
}

#aboutUs.dark-mode h3.primary-color{
    color: black;
    font-size: 2rem;
}

#aboutUs.dark-mode h3.primary-color{
    color: white;
}


#aboutUs .hero-section li.breadcrumb-item.active{
    color: white;
}

#aboutUs #detayli-analiz .bg-card.p-5{
    border-radius: 4rem;
}

.font-size-b{
    font-size: 2rem;
}

#aboutUs .hero-section h1.text-white{
    color: white !important;
}
#aboutUs .hero-section h1 span{
    color: var(--color-secondary) !important;
}

#aboutUs #konu-ve-kaynak-takibi ul#pills-tab{
    flex-direction: row;
}

#aboutUs #konu-ve-kaynak-takibi .nav-link:hover{
    color: white;
}

#canli-topluluk .feature-card{
    background-color: transparent;
}

body.dark-mode #canli-topluluk .feature-card{
    border: 3px solid #ffffff45;
}

body #canli-topluluk .feature-card{
    border: 3px solid #3333336a;
}



#aboutUs #konu-ve-kaynak-takib .tab-content.bg-card.p-4.rounded-3{
    background-color: var(--bg-dark-l);
}

#aboutUs .primary-color {
    color: var(--color-primary);
}

body.dark-mode #aboutUs #detayli-analiz .bg-card {
    background-color: var(--bg-dark-l);
    color: var(--card-text);
}

body #aboutUs #detayli-analiz .bg-card {
    background-color: var(--bg-card);
    color: var(--card-text);
}

#aboutUs #detayli-analiz .text-muted-custom {
    color: var(--text-muted);
}

body.dark-mode #aboutUs #detayli-analiz .bg-dark-custom {
    background-color: var(--bg-dark-l);
    color: var(--card-text);
}

body.dark-mode #aboutUs .icon-bubble {
    color: white !important;
}
body #aboutUs .icon-bubble {
    color: black !important;
}

#aboutUs #detayli-analiz .text-success-check {
    color: var(--success-color);
}

body #detayli-analiz td, body #detayli-analiz table, body #detayli-analiz th {
    background-color: transparent !important; 
}

body.dark-mode #detayli-analiz td, body.dark-mode #detayli-analiz table, body.dark-mode #detayli-analiz th {
    color: #fff !important; 
    border-bottom: 1px solid white;

}

body #detayli-analiz td, body #detayli-analiz table, body #detayli-analiz th {
    color: black !important; 
}

/* ==========================================================
   #aboutUs SAYFASI - FLOW SECTION TASARIMI
   ========================================================== */

/* ===== GENEL ===== */
#aboutUs #flow {
  position: relative;
  color: var(--card-text);
  transition: all 0.3s ease;
  background: transparent;
}

#aboutUs #flow h2 {
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: color 0.3s ease;
}

/* ===== TIMELINE ===== */
#aboutUs #flow .timeline-item {
    display: grid;
  position: relative;
  padding: 1.8rem 1.5rem;
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 4px 12px var(--card-shadow);
  margin-bottom: 2.5rem;
  border-left: 5px solid var(--color-primary);
  transition: all 0.3s ease;
}

#aboutUs #flow .timeline-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#aboutUs #flow .timeline-item h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
}

#aboutUs #flow .timeline-item p {
  color: var(--card-text);
  line-height: 1.6;
}

#aboutUs #flow .timeline-item .small {
  color: var(--color-muted);
}

/* ===== İKONLAR ===== */
#aboutUs #flow .timeline-item i {
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

/* ===== DİKEY ÇİZGİ ===== */
#aboutUs #flow .col-lg-10 {
  position: relative;
}

#aboutUs #flow .col-lg-10::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 3px;
  height: 100%;
  background: var(--grad-1);
  border-radius: 10px;
  opacity: 0.3;
}

#aboutUs #flow .timeline-item {
  margin-left: 50px;
}

/* ==========================================================
   LIGHT MODE
   ========================================================== */
body:not(.dark-mode) #aboutUs #flow {
  background: var(--color-bg-light);
  color: var(--color-text-light);
}

body:not(.dark-mode) #aboutUs #flow h2 {
  color: var(--color-primary);
}

body:not(.dark-mode) #aboutUs #flow .timeline-item {
  background: var(--card-bg);
  border-left-color: var(--color-primary);
}

body:not(.dark-mode) #aboutUs #flow .timeline-item .small {
  color: var(--text-muted);
}

/* ==========================================================
   DARK MODE
   ========================================================== */
body.dark-mode #aboutUs #flow {
  background: var(--color-bg-dark);
  color: var(--color-text-dark);
}

body.dark-mode #aboutUs #flow h2 {
  color: #3B82F6;
}

body.dark-mode #aboutUs #flow .timeline-item {
  background: #1f1f1f;
  border-left-color: #3B82F6;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

body.dark-mode #aboutUs #flow .timeline-item p {
  color: #e5e7eb;
}

body.dark-mode #aboutUs #flow .timeline-item .small {
  color: #9ca3af;
}

body.dark-mode #aboutUs #flow .timeline-item i {
  color: var(--color-secondary);
}

body.dark-mode #aboutUs #flow .col-lg-10::before {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563eb 100%);
  opacity: 0.5;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  #aboutUs #flow .col-lg-10::before {
    left: 10px;
  }

  #aboutUs #flow .timeline-item {
    margin-left: 30px;
    padding: 1.2rem 1rem;
  }
}


.primary-color { color: var(--color-primary); }
.bg-card-custom { background-color: var(--card-bg); color: var(--card-text); }
.text-muted-custom { color: var(--text-muted); }
.shadow-custom { box-shadow: 0 10px 15px -3px var(--card-shadow), 0 4px 6px -4px var(--card-shadow); }

#hero .subtitle {
    font-size: 1.125rem; /* lg */
    margin-bottom: 2.5rem;
}
#hero .btn-hero {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px; /* full */
    font-weight: 600;
    font-size: 1.125rem;
    background-color: var(--color-primary);
    color: var(--color-text-dark); /* text-white/dark mode */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -4px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
#hero .btn-hero:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.5);
    transform: scale(1.05);
}

/* ================================================= */
/* 4. Açıklama Bölümü */
/* ================================================= */
#ourCoach .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
#aciklama .header-area { margin-bottom: 3rem; }
#aciklama .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}


#ourCoach .feature-card h5 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
#ourCoach .feature-card p { font-size: 0.875rem; }

/* ================================================= */
/* 5. Koç Kartları (Dinamik Liste) */
/* ================================================= */
#koc-listesi .coach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.coach-card {
    position: relative; /* Badge'ler için zorunlu */
    border-radius: var(--border-radius-xl);
    overflow: hidden; /* Fotoğraf ve içerik kartın içinde kalsın */
    display: block;
    height: 350px; /* Sabit bir yükseklik, fotoğrafın alanını belirler */
    box-shadow: 0 10px 15px -3px var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: var(--card-bg);
    border: 1px solid var(--border); /* Hafif bir çerçeve */
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px var(--card-shadow);
}

/* Kartı Kaplayan Fotoğraf */
.coach-card .coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    position: absolute; /* Bilgi katmanının altına düşürmek için */
    z-index: 1;
}
.coach-card:hover .coach-photo {
    transform: scale(1.05);
}

/* Bilgi Katmanı (Altta) */
.coach-card .info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    color: white; 
    /* Alttan yukarı doğru koyu şeffaf geçiş */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.0) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* İçerikleri sola hizala */
    text-align: left;
    z-index: 2; /* Fotoğrafın üzerinde olması için */
}

/* Koç Adı */
.coach-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}


/* Mezuniyet/Uzmanlık */
.coach-card .university-text {
    font-size: 1rem;
    font-weight: 500;
    color: #E5E7EB; 
    margin-bottom: 0.75rem;
}

/* Buton */
.coach-card button {
    padding: 0.4rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    background-color: var(--color-secondary); /* Kehribar butonu öne çıkar */
    color: var(--color-text-light); 
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.3s;
}
.coach-card button:hover {
    background-color: #FBBF24;
}

/* YENİ: Sağ Üst Köşe Rozeti (Badge) */
.coach-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

/* Badge Renkleri */
.badge-new {
    background-color: #EF4444; /* Kırmızı - Yeni Üye */
}
.badge-experience {
    background-color: var(--color-primary); /* Mavi - Deneyimli/Uzman */
}

/* Koç Kartı içindeki diğer bilgileri gizle (modalda gösterilecek) */
.coach-card .title-text,
.coach-card .expertise-text,
.coach-card .stats-flex,
.coach-card .slots-info {
    display: none; 
}
/* ================================================= */
/* 6. Modal / Pop-up */
/* ================================================= */
#ourCoach .modal-overlay {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

#ourCoach .modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

#ourCoach .modal-content {
    background-color: var(--card-bg);
    color: var(--card-text);
    border-radius: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 900px;
    margin: 1rem;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
}
#ourCoach .modal-overlay.active #ourCoach .modal-content {
    transform: scale(1);
}

#ourCoach .modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0.5rem;
}
#ourCoach .modal-close-btn:hover { color: #EF4444; }

/* Modal Grid Layout */
#ourCoach .modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Modal Sol Kolon (Profil) */
#ourCoach .modal-profile {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
#ourCoach .modal-profile img {
    width: 9rem; /* 144px */
    height: 9rem;
    border-radius: 9999px;
    margin: 0 auto 1rem;
    border: 4px solid var(--color-primary);
}
#ourCoach .modal-profile h3 { font-size: 1.5rem; font-weight: 700; }
#ourCoach .modal-profile .title-text { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
#ourCoach .modal-profile .uni-text { font-size: 0.875rem; margin-bottom: 1rem; }

#ourCoach .modal-stats {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    padding: 0 1rem;
}
#ourCoach .modal-stats div { display: flex; align-items: center; }
#ourCoach .modal-stats i { width: 1.25rem; margin-right: 0.5rem; }

/* Modal Sağ Kolon (Detaylar) */
#ourCoach .modal-detail-area h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
#ourCoach .modal-detail-area p { font-size: 0.875rem; margin-bottom: 1.5rem; }

/* Tags */
.tag-style {
    background-color: var(--color-bg-light); 
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
body.dark-mode .tag-style {
    background-color: var(--bg-dark-l);
    color: var(--color-secondary);
}
#ourCoach .modal-detail-area .skills-container { display: flex; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* Çalışma Prensibi Kutusu */
.working-principle-box {
    padding: 1rem;
    background-color: #F8F9FA; /* light gray for light mode */
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-secondary);
}
body.dark-mode .working-principle-box { background-color: #1F2937; }
.working-principle-box p { margin: 0; }

/* Kontenjan */
.slot-bar-container { margin-bottom: 1.5rem; }
.slot-bar-base {
    width: 100%;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--progress-bg);
    margin-top: 0.5rem;
}
.slot-bar-fill {
    height: 0.5rem;
    border-radius: 9999px;
    transition: width 0.5s;
}

/* Yorumlar */
.review-box {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background-color: #F8F9FA;
    margin-bottom: 0.75rem;
}
body.dark-mode .review-box { background-color: #1F2937; }
.review-box .quote-icon { font-size: 0.875rem; margin-right: 0.5rem; }
.review-box .text-content { font-style: italic; font-size: 0.875rem; }
.review-box .student-name { font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; text-align: right; }

/* Modal Butonları */
#ourCoach .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}
#ourCoach .modal-btn {
flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: white;
    background-color: var(--bs-btn-active-bg);
}


/* Mode Toggle Button */
#ourCoach #mode-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
    z-index: 50;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}


/* ================================================= */
/* 7. Responsive Tasarım (Media Queries) */
/* ================================================= */

/* Tablet (md breakpoint: 768px) */
@media (min-width: 768px) {

    /* Açıklama Kutucukları */
    #aciklama .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Koç Kartları */
    #koc-listesi .coach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Modal */
    #ourCoach .modal-grid {
        grid-template-columns: 1fr 2fr;
    }
    #ourCoach .modal-profile {
        padding-right: 1rem;
        border-right: 1px solid var(--border);
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    #ourCoach .modal-detail-area {
        padding-left: 1.5rem;
    }
    #ourCoach .modal-buttons {
        flex-direction: row;
    }
}

/* Masaüstü (lg breakpoint: 1024px) */
@media (min-width: 1024px) {
    /* Koç Kartları */
    #koc-listesi .coach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
        }


.modal-content {
--sb-track-color: #ffffff;
--sb-thumb-color: #969696;
--sb-size: 10px;
}

.modal-content::-webkit-scrollbar {
width: var(--sb-size);
}

.modal-content::-webkit-scrollbar-track {
background: var(--sb-track-color);
border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
background: var(--sb-thumb-color);
border-radius: 4px;
}

@supports not selector(::-webkit-scrollbar) {
.modal-content {
scrollbar-color: var(--sb-thumb-color)
            var(--sb-track-color);
}
}

#aciklama .feature-grid .feature-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: .4rem;
}

.hero-section h1.text-white{
    color: white !important;
}

h1.display-4{
    height: auto;
}

#yorum-kartlari-grid span.view-count.position-absolute.top-0.end-0.bg-dark.text-white.rounded-end-0.rounded-bottom-start.px-2.py-1.small.fw-bold{
    color: #fff !important;
}

