/* ============================================
   EKOL MEDYA AKADEMİ - Final CSS (Temiz Sürüm)
   ============================================ */
:root {
    --primary: #c8102e;
    --primary-dark: #a00d24;
    --secondary: #1a1a2e;
    --accent: #e8b923;
    --dark: #0f0f1a;
    --light: #f8f7f4;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; max-width: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Nunito', sans-serif; color: var(--secondary); background: var(--light); line-height: 1.7; overflow-x: hidden; max-width: 100vw; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img,video,iframe { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.placeholder-img { background: linear-gradient(135deg, var(--secondary), #2d2d4a); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); }

/* ── ÜST BAR ── */
.top-bar { background: var(--dark); color: rgba(255,255,255,0.8); font-size: 0.85rem; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left a { color: rgba(255,255,255,0.8); }
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left i { margin-right: 6px; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.top-bar-right a:hover { color: var(--accent); }

/* ── NAVBAR ── */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 500 !important; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo { display: flex; align-items: baseline; gap: 4px; }
.logo-ekol { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.8rem; color: var(--primary); }
.logo-medya { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.8rem; color: var(--secondary); }
.logo small { font-size: 0.75rem; color: var(--gray); margin-left: 4px; letter-spacing: 2px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a { padding: 8px 16px; font-weight: 600; font-size: 0.92rem; color: var(--secondary); border-radius: 8px; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 3px; background: var(--primary); border-radius: 2px; }
.btn-nav { background: var(--primary) !important; color: var(--white) !important; border-radius: 8px !important; padding: 10px 22px !important; font-weight: 700 !important; white-space: nowrap; }
.btn-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── DİL SEÇİCİ ── */
.lang-dropdown { position: relative; display: inline-block; }
.lang-dropdown-btn { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: 6px; padding: 4px 10px; cursor: pointer; font-family: 'Nunito',sans-serif; font-size: .82rem; font-weight: 700; transition: background .2s; white-space: nowrap; }
.lang-dropdown-btn:hover { background: rgba(255,255,255,.25); }
.lang-dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border-radius: 8px; min-width: 130px; box-shadow: 0 8px 24px rgba(0,0,0,.15); padding: 4px 0; z-index: 3000; border: 1px solid var(--gray-light); }
.lang-dropdown-menu.open { display: block; }
.lang-option { display: flex; align-items: center; gap: 8px; padding: 9px 14px; font-size: .85rem; font-weight: 600; color: var(--secondary); text-decoration: none; transition: background .15s; }
.lang-option:hover { background: #f3f4f6; }
.lang-option.active { color: var(--primary); background: #fff5f5; }

/* ── NAVBAR DROPDOWN ── */
.has-dropdown, .has-mega, .has-proje, .has-galeri { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; padding-top: 8px; background: transparent; min-width: 220px; z-index: 2000; }
.dropdown-inner { background: #fff; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: 8px 0; border: 1px solid #f0f0f0; }
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown { display: block; }
.dropdown-inner li a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: .88rem; font-weight: 600; color: #1a1a2e; transition: .2s; }
.dropdown-inner li a:hover { color: #c8102e; background: #fff5f5; }

/* Mega menü */
.mega-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #fff; border-radius: 14px; width: min(780px,96vw); box-shadow: 0 16px 50px rgba(0,0,0,.14); padding: 24px; z-index: 2000; border: 1px solid #f0f0f0; }
.has-mega:hover > .mega-dropdown { display: block; }
.mega-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.mega-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: #1a1a2e; transition: .2s; border: 1px solid transparent; }
.mega-item:hover { background: #fff5f5; border-color: #fecdd3; color: #c8102e; }
.mega-item-img { width: 42px; height: 42px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f3f4f6; }
.mega-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mega-item-text strong { display: block; font-size: .83rem; font-weight: 700; line-height: 1.3; }
.mega-item-text small { color: #6b7280; font-size: .72rem; }
.mega-footer { border-top: 1px solid #f3f4f6; padding-top: 14px; text-align: center; }
.mega-footer a { display: inline-flex; align-items: center; gap: 6px; color: #c8102e; font-weight: 700; font-size: .85rem; }
.mega-footer a:hover { text-decoration: underline; }

/* Proje dropdown */
.proje-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #fff; border-radius: 14px; width: 680px; box-shadow: 0 16px 50px rgba(0,0,0,.14); padding: 20px; z-index: 2000; border: 1px solid #f0f0f0; }
.has-proje:hover > .proje-dropdown { display: block; }
.proje-list { display: flex; flex-direction: column; gap: 6px; }
.proje-list-item { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: #1a1a2e; transition: .2s; }
.proje-list-item:hover { background: #fff5f5; color: #c8102e; }
.proje-list-img { width: 52px; height: 36px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f3f4f6; }
.proje-list-img img { width: 100%; height: 100%; object-fit: cover; }
.proje-list-text strong { display: block; font-size: .83rem; font-weight: 700; }
.proje-list-text small { color: #9ca3af; font-size: .72rem; }

/* Galeri dropdown */
.galeri-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border-radius: 12px; min-width: 180px; box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: 8px 0; z-index: 2000; border: 1px solid #f0f0f0; }
.has-galeri:hover > .galeri-dropdown { display: block; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9000 !important; justify-content: center; align-items: center; padding: 20px; backdrop-filter: blur(4px); animation: fadeIn 0.3s ease; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white); border-radius: 16px; padding: 36px; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: slideUp 0.35s ease; }
.modal-close { position: absolute; top: 14px; right: 18px; font-size: 2rem; background: none; border: none; color: var(--gray); cursor: pointer; line-height: 1; transition: var(--transition); }
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 24px; }
.modal-header h2 { font-size: 1.6rem; color: var(--secondary); margin-bottom: 6px; }
.modal-header p { color: var(--gray); font-size: 0.95rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── BUTONLAR ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: none; text-align: center; font-family: 'Nunito',sans-serif; }
.btn i { margin-right: 6px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.3); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { background: var(--light); transform: translateY(-2px); }

/* ── HERO / SLIDER ── */
.hero { position: relative; height: 90vh; min-height: 580px; overflow: hidden; background: #0f0f1a; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1); pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg-mobile { display: none; }
@media (max-width: 768px) {
    .hero-bg { display: none; }
    .hero-bg-mobile { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
}
.hero-slide::before { display: none; }
.hero-slide::after { display: none; }
.hero-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 50%, #c8102e22 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 0 48px; max-width: 720px; background: none; }
.hero-content .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 6px 18px; border-radius: 30px; font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; opacity: 0; transform: translateY(20px); transition: opacity .6s .2s, transform .6s .2s; }
.hero-slide.active .hero-content .hero-badge { opacity: 1; transform: translateY(0); }
.hero-content h1 { font-size: clamp(2.2rem,5vw,4rem); margin-bottom: 18px; line-height: 1.1; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 0 30px rgba(0,0,0,.3); opacity: 0; transform: translateY(30px); transition: opacity .7s .35s, transform .7s .35s; }
.hero-slide.active .hero-content h1 { opacity: 1; transform: translateY(0); }
.hero-content p { font-size: 1.1rem; opacity: 0; color: #fff; margin-bottom: 32px; max-width: 540px; line-height: 1.7; text-shadow: 0 1px 6px rgba(0,0,0,.5); transform: translateY(24px); transition: opacity .7s .5s, transform .7s .5s; }
.hero-slide.active .hero-content p { opacity: 1; transform: translateY(0); }
.hero-content .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); transition: opacity .6s .65s, transform .6s .65s; }
.hero-slide.active .hero-content .hero-btns { opacity: 1; transform: translateY(0); }
.hero-content .hero-btns .btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 15px rgba(200,16,46,.4); }
.hero-content .hero-btns .btn-primary:hover { background: #a00d25; border-color: #a00d25; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; font-size: 1.1rem; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.hero-nav:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.hero-nav.prev { left: 24px; }
.hero-nav.next { right: 24px; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; align-items: center; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all .4s; padding: 0; }
.hero-dot.active { background: var(--primary); width: 28px; border-radius: 4px; }
.hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--primary); z-index: 10; width: 0%; transition: width 5s linear; }
.hero-progress.running { width: 100%; }

/* ── SECTION ── */
.section { padding: 80px 0; }
.section-hdr { text-align: center; margin-bottom: 40px; }
.section-hdr .section-badge { display: inline-block; background: #fff1f1; color: #c8102e; padding: 5px 16px; border-radius: 20px; font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.section-hdr h2 { font-size: clamp(1.8rem,4vw,2.6rem); color: #1a1a2e; margin-bottom: 10px; }
.section-hdr p { color: #6b7280; max-width: 560px; margin: 0 auto; font-size: .95rem; line-height: 1.7; }
.section-hdr-line { width: 48px; height: 4px; background: #c8102e; border-radius: 2px; margin: 16px auto 0; }

/* ── PAGE BANNER ── */
.page-banner { background: linear-gradient(135deg, var(--dark), var(--secondary)); padding: 80px 0 60px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,16,46,0.15), transparent 70%); border-radius: 50%; }
.page-banner h1 { font-size: 2.8rem; margin-bottom: 10px; position: relative; }
.page-banner .breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 0.9rem; opacity: 0.7; position: relative; }
.page-banner .breadcrumb a { color: var(--accent); }

/* ── HAKKIMIZDA ── */
.hakkimizda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* ── HİZMET KARTLARI (v3) ── */
.hizmet-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hizmet-card-v3 { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: all .35s cubic-bezier(.4,0,.2,1); text-decoration: none; color: inherit; border: 1px solid #f0f0f0; pointer-events: auto !important; }
.hizmet-card-v3:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(200,16,46,.12); border-color: #fecdd3; }
.hizmet-card-v3-img { height: 195px; overflow: hidden; background: #f3f4f6; position: relative; }
.hizmet-card-v3-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.hizmet-card-v3:hover .hizmet-card-v3-img img { transform: scale(1.06); }
.hizmet-card-v3-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.hizmet-card-v3-body h3 { font-size: 1rem; margin-bottom: 6px; color: #1a1a2e; line-height: 1.4; }
.hizmet-card-v3-link { margin-top: auto; padding-top: 12px; color: #c8102e; font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }
.hizmet-card-v3-link i { transition: transform .25s; }
.hizmet-card-v3:hover .hizmet-card-v3-link i { transform: translateX(4px); }

/* ── PROJE KARTLARI ── */
.proje-section { background: #fff; }
.proje-anasayfa-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.proje-anasayfa-sol { position: sticky; top: 100px; }
.proje-anasayfa-h2 { font-size: 2.2rem; margin-bottom: 14px; line-height: 1.2; }
.proje-anasayfa-p { color: #6b7280; line-height: 1.7; font-size: .95rem; margin-bottom: 24px; }
.proje-anasayfa-btn { padding: 12px 28px; border: 2px solid #c8102e; color: #c8102e; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.proje-anasayfa-btn:hover { background: #c8102e; color: #fff; }
.proje-anasayfa-liste { position: relative; overflow: hidden; }
.proje-slider-track { display: flex; flex-direction: column; gap: 12px; transition: transform .5s ease; }
.proje-slide-item { transition: opacity .3s; }
.proje-slider-btn { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #e5e7eb; background: #fff; color: #1e293b; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; font-size: .8rem; }
.proje-slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.proje-slider-nav { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.proje-liste-kart { display: grid; grid-template-columns: 140px 1fr; height: 120px; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.07); border: 1px solid #f0f0f0; text-decoration: none; color: inherit; transition: all .3s; pointer-events: auto !important; }
.proje-liste-kart:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.proje-liste-img { height: 120px; width: 140px; overflow: hidden; background: #1a1a2e; flex-shrink: 0; }
.proje-liste-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.proje-liste-kart:hover .proje-liste-img img { transform: scale(1.05); }
.proje-liste-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#1a1a2e,#2d1f3d); display: flex; align-items: center; justify-content: center; }
.proje-liste-placeholder i { color: rgba(255,255,255,.2); font-size: 2rem; }
.proje-liste-body { padding: 14px 18px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.proje-liste-kat { display: inline-block; background: #fff1f1; color: #c8102e; padding: 2px 10px; border-radius: 12px; font-size: .7rem; font-weight: 700; margin-bottom: 5px; width: fit-content; }
.proje-liste-baslik { font-size: .93rem; margin-bottom: 4px; line-height: 1.4; color: #1a1a2e; }
.proje-card-v2-link { color: #c8102e; font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }

/* ── HABER KARTLARI ── */
.haberler-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: block; pointer-events: auto !important; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card .card-img { height: 200px; overflow: hidden; }
.news-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .card-img img { transform: scale(1.05); }
.news-card .card-body { padding: 22px; }
.news-card .card-date { color: var(--primary); font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; }
.news-card .card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.news-card .card-body p { color: var(--gray); font-size: 0.9rem; }

/* ── GALERİ ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(15,15,26,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 2rem; }

/* ── CTA BANT ── */
.cta-band { background: var(--cta-color, #4f46e5); padding: 0; }
.cta-band-inner { display: flex; align-items: center; min-height: 80px; background: var(--cta-color, #4f46e5); overflow: hidden; position: relative; }
.cta-band-text { flex: 1; color: rgba(255,255,255,.9); font-size: .98rem; font-weight: 600; padding: 20px 30px; }
.cta-band-icon { width: 72px; height: 72px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin: 4px 0; border: 3px solid rgba(255,255,255,.3); }
.cta-band-icon i { color: #fff; font-size: 1.5rem; }
.cta-band-tel { flex: 1; text-align: right; color: #fff; font-size: .98rem; padding: 20px 30px; text-decoration: none; font-weight: 600; }
.cta-band-tel strong { font-size: 1.15rem; font-weight: 800; }
.cta-band-tel:hover { opacity: .85; }

/* ── MÜŞTERİ YORUMLARI ── */
.yorum-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.yorum-kart { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 12px; transition: box-shadow .3s; }
.yorum-kart:hover { box-shadow: 0 8px 32px rgba(200,16,46,.1); }
.yorum-yildiz i { color: #f59e0b; font-size: .9rem; }
.yorum-metin { color: #374151; font-size: .93rem; line-height: 1.7; font-style: italic; flex: 1; }
.yorum-kisi { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f3f4f6; padding-top: 12px; margin-top: auto; }
.yorum-foto { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.yorum-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #c8102e, #1a1a2e); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.yorum-kisi strong { display: block; font-size: .88rem; color: #1a1a2e; }
.yorum-kisi span { font-size: .78rem; color: #9ca3af; }

/* ── REFERANSLAR ── */
.referans-item { opacity: .6; transition: opacity .3s, filter .3s; filter: grayscale(1); }
.referans-item:hover { opacity: 1; filter: grayscale(0); }

/* ── SSS ACCORDION ── */
.sss-list { display: flex; flex-direction: column; gap: 10px; }
.sss-item { border: 2px solid var(--gray-light); border-radius: 12px; overflow: hidden; transition: border-color .25s, box-shadow .25s; background: #fff; }
.sss-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(200,16,46,.1); }
.sss-q { width: 100%; text-align: left; padding: 20px 24px; background: transparent; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Nunito',sans-serif; font-size: 1rem; font-weight: 700; color: var(--secondary); gap: 12px; line-height: 1.4; }
.sss-item.open .sss-q { color: var(--primary); }
.sss-q .sss-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .25s; }
.sss-icon i { color: var(--primary); font-size: .75rem; transition: transform .3s; }
.sss-item.open .sss-q .sss-icon { background: var(--primary); }
.sss-item.open .sss-q .sss-icon i { color: #fff; transform: rotate(180deg); }
.sss-a { display: none; padding: 14px 24px 20px; color: var(--gray); line-height: 1.8; font-size: .95rem; border-top: 1px solid var(--gray-light); }
.sss-item.open .sss-a { display: block; }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 5px; color: var(--secondary); }
.form-control { width: 100%; padding: 11px 14px; border: 2px solid var(--gray-light); border-radius: 8px; font-family: 'Nunito',sans-serif; font-size: 0.93rem; transition: var(--transition); background: var(--white); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,16,46,0.1); }
textarea.form-control { resize: vertical; min-height: 80px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 0.92rem; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { color: var(--white); font-family: 'Nunito',sans-serif; font-size: 1.05rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul a i { font-size: 0.7rem; color: var(--primary); }
.footer-col .contact-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-col .contact-list i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-ekol { font-size: 1.5rem; }
.footer-logo .logo-medya { font-size: 1.5rem; }
.footer-logo small { display: block; margin-top: 2px; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 20px 0; margin-top: 40px; font-size: 0.85rem; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9998; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; border: 2px solid var(--gray-light); color: var(--secondary); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── PROSE / DETAY ── */
.prose { font-size: 1.02rem; line-height: 1.85; color: #374151; max-width: 720px; }
.prose p { margin-bottom: 18px; }
.prose h2, .prose h3, .prose h4 { margin: 28px 0 12px; color: var(--secondary); }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.2rem; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose img { border-radius: var(--radius); margin: 20px auto; display: block; }
.prose strong { color: var(--secondary); }
.prose a { color: var(--primary); text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--primary); padding: 12px 20px; margin: 20px 0; background: #fff5f5; border-radius: 0 8px 8px 0; color: #6b7280; font-style: italic; }
.detail-content { max-width: 860px; margin: 0 auto; padding: 40px 20px; }
.detail-content h1 { font-size: 2.2rem; margin-bottom: 14px; }
.detail-content .meta { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; display: flex; gap: 20px; flex-wrap: wrap; }

/* ── MOBİL BUTONLAR ── */
.mobil-buttons { position: fixed; bottom: 0; left: 0; right: 0; z-index: 600 !important; display: none; box-shadow: 0 -2px 16px rgba(0,0,0,.15); }
.mobil-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 10px; font-weight: 700; font-size: 1rem; color: #fff; text-decoration: none; border: none; cursor: pointer; transition: opacity .2s; -webkit-tap-highlight-color: transparent; min-height: 60px; }
.mobil-btn:active { opacity: .8; }
.mobil-call { background: var(--primary); }
.mobil-whatsapp { background: #25d366; }
.mobil-btn i { font-size: 1.4rem; flex-shrink: 0; }
.mobil-btn span { font-size: .88rem; font-weight: 700; }

/* ── MOBİL NAV ── */
.mobile-nav { display: none; position: fixed; top: 0; right: -100%; width: min(300px,85vw); height: 100vh; background: #fff; z-index: 99990; box-shadow: -4px 0 30px rgba(0,0,0,.15); transition: right .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; overflow-x: hidden; }
.mobile-nav.open { right: 0; }
.mobile-nav-inner { display: flex; flex-direction: column; min-height: 100%; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid #f3f4f6; background: #fff; position: sticky; top: 0; z-index: 1; }
.mobile-nav-list { list-style: none; padding: 8px 0; margin: 0; flex: 1; }
.mobile-nav-list li a { display: block; padding: 14px 20px; font-size: .97rem; font-weight: 600; color: #1a1a2e; text-decoration: none; border-bottom: 1px solid #f9fafb; transition: background .15s, color .15s; -webkit-tap-highlight-color: rgba(200,16,46,.08); }
.mobile-nav-list li a:active, .mobile-nav-list li a:hover { background: #fff5f5; color: #c8102e; }
.mobile-nav-basvuru { background: #c8102e !important; color: #fff !important; border-radius: 8px !important; margin: 8px 16px !important; padding: 14px 20px !important; display: flex !important; align-items: center !important; gap: 8px !important; justify-content: center !important; border-bottom: none !important; font-weight: 700 !important; }
.mobile-nav-basvuru:hover, .mobile-nav-basvuru:active { background: #a00d24 !important; color: #fff !important; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 99980; backdrop-filter: blur(2px); }
.mobile-overlay.active { display: block; }

/* Mobil alt menü */
.mobile-has-sub .mobile-sub-toggle { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid #f9fafb; cursor: pointer; }
.mobile-has-sub .mobile-sub-toggle a { padding: 0; border: none; font-size: .97rem; font-weight: 600; color: #1a1a2e; flex: 1; }
.mobile-has-sub .mobile-sub-toggle i { color: #9ca3af; font-size: .75rem; transition: transform .25s; }
.mobile-has-sub.open .mobile-sub-toggle i { transform: rotate(180deg); }
.mobile-sub-list { display: none; list-style: none; padding: 0; margin: 0; background: #f9fafb; }
.mobile-has-sub.open .mobile-sub-list { display: block; }
.mobile-sub-list li a { display: block; padding: 11px 20px 11px 32px; font-size: .9rem; font-weight: 500; color: #374151; border-bottom: 1px solid #f3f4f6; text-decoration: none; transition: background .15s, color .15s; }
.mobile-sub-list li a:hover { background: #fff5f5; color: #c8102e; }

/* ── OTOMATİK KAYAN SLIDER (Eğitmenler & Referanslar) ── */
.oto-slider-wrap { overflow: hidden; width: 100%; position: relative; padding: 12px 0 32px; }
.oto-slider-wrap::before, .oto-slider-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.oto-slider-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.oto-slider-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.oto-slider { display: flex; gap: 32px; width: max-content; animation: otoKay 20s linear infinite; justify-content: center; min-width: 100%; }
.oto-slider-ters { animation: otoKayTers 25s linear infinite; }
.oto-slider:hover, .oto-slider-ters:hover { animation-play-state: paused; }
.oto-slide { flex-shrink: 0; }
.egitmen-slide { width: 180px; padding: 20px 16px; background: #f9fafb; border-radius: 16px; border: 1px solid #f3f4f6; transition: box-shadow .3s, transform .3s; }
.egitmen-slide:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.referans-slide { display: flex; align-items: center; justify-content: center; padding: 16px 28px; background: #f9fafb; border-radius: 12px; border: 1px solid #f3f4f6; min-width: 140px; }
@keyframes otoKay { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes otoKayTers { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ── İLETİŞİM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card .icon-box { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-card h4 { font-family: 'Nunito',sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--gray); font-size: 0.9rem; }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(135deg, #c8102e 0%, #a00d24 100%); padding: 70px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-section h2 { font-size: clamp(1.8rem,4vw,2.4rem); color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 28px; font-size: 1rem; position: relative; z-index: 1; }
.cta-section .btn-light { background: #fff; color: #c8102e; padding: 14px 36px; border-radius: 8px; font-weight: 800; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: all .3s; position: relative; z-index: 1; }
.cta-section .btn-light:hover { background: #f3f4f6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ══════════════════
   RESPONSİVE
══════════════════ */
@media (max-width: 1100px) {
    .hizmet-grid-4 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 992px) {
    .hakkimizda-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .haberler-grid { grid-template-columns: repeat(2,1fr); }
    .yorum-grid { grid-template-columns: repeat(2,1fr); }
    .proje-anasayfa-grid { grid-template-columns: 1fr; gap: 24px; }
    .proje-anasayfa-sol { position: static; }
}
@media (max-width: 768px) {
    /* Genel */
    .section { padding: 50px 0; }
    .top-bar-left { display: none; }
    .hamburger { display: flex !important; }
    .nav-menu { display: none !important; }
    .hero { height: 80vh; min-height: 500px; }
    .hero-content { padding: 0 20px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-nav { display: none; }
    .page-banner h1 { font-size: 2rem; }
    .page-banner { padding: 60px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .hizmet-grid-4 { grid-template-columns: repeat(2,1fr); }
    .haberler-grid { grid-template-columns: 1fr; }
    .yorum-grid { grid-template-columns: 1fr; }
    .proje-anasayfa-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .proje-anasayfa-sol { position: static !important; text-align: center; }
    .proje-anasayfa-btn { width: 100% !important; justify-content: center !important; }
    .detail-content { padding: 24px 16px; }
    .detail-content h1 { font-size: 1.6rem; }
    .hakkimizda-img { order: -1; }

    /* Modal */
    .modal-overlay { align-items: flex-end !important; padding: 0 !important; }
    .modal-box { width: 100% !important; max-width: 100% !important; margin: 0 !important; border-radius: 16px 16px 0 0 !important; max-height: 92vh !important; padding: 20px 16px 30px !important; }

    /* CTA bant */
    .cta-band-inner { flex-direction: column; text-align: center; padding: 16px; gap: 12px; }
    .cta-band-text { padding: 0; font-size: .9rem; }
    .cta-band-tel { padding: 0; text-align: center; font-size: .9rem; }
    .cta-band-icon { width: 56px; height: 56px; }

    /* iOS zoom önleme */
    input[type="text"], input[type="tel"], input[type="email"],
    input[type="number"], input[type="search"], select, textarea { font-size: 16px !important; }

    /* Mobil butonlar */
    .mobil-buttons { display: flex; }
    body { padding-bottom: 58px; }

    /* Mobil nav */
    .mobile-nav { display: block; }

    /* Dropdown'ları mobilde gizle */
    .dropdown, .mega-dropdown, .proje-dropdown, .galeri-dropdown { display: none !important; pointer-events: none !important; }
    .nav-menu .fa-chevron-down { display: none !important; }

    /* Mobil Hizmetler kaydırma */
    .hizmet-grid-4 { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; gap: 16px !important; padding-bottom: 16px !important; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .hizmet-grid-4::-webkit-scrollbar { display: none; }
    .hizmet-card-v3 { flex: 0 0 220px !important; scroll-snap-align: start; }

    /* Mobil Projeler kaydırma */
    .proje-mobil-grid { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; gap: 16px !important; padding-bottom: 16px !important; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; max-height: none !important; overflow-y: visible !important; }
    .proje-mobil-grid .proje-slider-track { flex-direction: row !important; transform: none !important; transition: none !important; gap: 16px !important; }
    .proje-mobil-grid::-webkit-scrollbar { display: none; }
    .proje-slider-nav { display: none !important; }
    .proje-mobil-grid .proje-liste-kart { flex: 0 0 240px !important; flex-direction: column !important; height: auto !important; scroll-snap-align: start; }
    .proje-mobil-grid .proje-liste-img { width: 100% !important; height: 130px !important; }
    .proje-mobil-grid .proje-liste-body { padding: 10px 12px !important; }
    .proje-mobil-grid .proje-liste-baslik { font-size: .85rem !important; }

    /* Mobil Haberler kaydırma */
    .haberler-grid { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; gap: 16px !important; padding-bottom: 16px !important; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .haberler-grid::-webkit-scrollbar { display: none; }
    .news-card { flex: 0 0 260px !important; scroll-snap-align: start; }

    /* Mobil Eğitmenler */
    .oto-slider-wrap { padding-bottom: 16px; }
    .oto-slider { animation: none !important; overflow-x: auto !important; width: 100% !important; min-width: unset !important; flex-wrap: nowrap !important; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; justify-content: flex-start; }
    .oto-slider::-webkit-scrollbar { display: none; }
    .egitmen-slide { flex: 0 0 160px !important; scroll-snap-align: start; }
}

@media (max-width: 480px) {
    .hizmet-grid-4 { grid-template-columns: 1fr; }
    .hero { height: 65vh; min-height: 420px; }
    .hero-content h1 { font-size: 1.75rem !important; }
}

/* ── Z-INDEX HİYERARŞİSİ ── */
.navbar        { z-index: 500  !important; }
.mobil-buttons { z-index: 600  !important; }
.mobile-overlay { z-index: 99980 !important; }
.mobile-nav    { z-index: 99990 !important; }
.modal-overlay { z-index: 9000 !important; }
#successPopup  { z-index: 9999 !important; }

/* ── PROJE KART v2 (projeler.php) ── */
.proje-3grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.proje-card-v2 { display: block; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: all .35s; text-decoration: none; color: inherit; border: 1px solid #f0f0f0; }
.proje-card-v2:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.proje-card-v2-img { height: 220px; overflow: hidden; background: #f3f4f6; position: relative; }
.proje-card-v2-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.proje-card-v2:hover .proje-card-v2-img img { transform: scale(1.05); }
.proje-card-v2-body { padding: 20px; }
.proje-card-v2-body h3 { font-size: 1.05rem; margin-bottom: 8px; color: #1a1a2e; line-height: 1.4; }
.proje-card-v2-body p { font-size: .87rem; color: #6b7280; margin-bottom: 12px; line-height: 1.6; }
@media(max-width: 900px) { .proje-3grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 580px) { .proje-3grid { grid-template-columns: 1fr; } }

/* ── HAKKIMIZDA ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-content {
    max-width: 600px;
}
.about-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-content p  { color: var(--gray); margin-bottom: 14px; line-height: 1.8; }
.prose-standalone {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #374151;
}
.prose-standalone p  { margin-bottom: 18px; }
.prose-standalone h2,
.prose-standalone h3 { margin: 28px 0 12px; color: var(--secondary); }
@media(max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-img img { height: 260px; }
    .about-img { order: -1; }
}

/* ── YORUM SLIDE ── */
.yorum-slide {
    width: 320px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .3s;
}
.yorum-slide:hover { box-shadow: 0 8px 32px rgba(200,16,46,.1); }
@media(max-width: 768px) {
    .yorum-slide { width: 260px; padding: 16px; }
}

/* Yorumlar koyu arka plan için fade rengi */
.yorum-section-dark .oto-slider-wrap::before { background: linear-gradient(to right, #1a1a2e, transparent) !important; }
.yorum-section-dark .oto-slider-wrap::after  { background: linear-gradient(to left,  #2d1f3d, transparent) !important; }