/* ============================================
   EKOL MEDYA AKADEMİ - Final CSS
   ============================================ */
: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);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--secondary);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}
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 { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Placeholder görseller için */
.placeholder-img {
    background: linear-gradient(135deg, var(--secondary), #2d2d4a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ---- Ü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: 1000;
    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; }
.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); }

/* ---- MODAL / POPUP ---- */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    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); } }

/* ---- BUTTONS ---- */
.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); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: var(--dark); }

/* ---- HERO / SLIDER ---- */
.hero { position: relative; height: 85vh; min-height: 550px; overflow: hidden; background: var(--dark); }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,26,0.85), rgba(200,16,46,0.25)); z-index: 1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 50%, #1a1a2e 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); padding: 0 40px; max-width: 700px; }
.hero-content small { display: inline-block; background: var(--primary); padding: 6px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 16px; text-transform: uppercase; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 16px; line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 28px; max-width: 520px; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--primary); transform: scale(1.2); }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 12px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header .accent-line { width: 60px; height: 4px; background: var(--primary); margin: 16px auto 0; border-radius: 2px; }
.section-alt { background: var(--white); }

/* ---- HİZMETLER ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.service-card {
    background: var(--white); border-radius: var(--radius); padding: 36px 30px;
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.04);
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); margin-bottom: 20px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ---- PROJE KARTLARI ---- */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 28px; }
.project-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: block; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card .card-img { height: 240px; overflow: hidden; position: relative; }
.project-card .card-img img, .project-card .card-img .placeholder-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .card-img img, .project-card:hover .card-img .placeholder-img { transform: scale(1.08); }
.project-card .card-img .badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.project-card .card-body { padding: 24px; }
.project-card .card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.project-card .card-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 14px; }
.card-link { color: var(--primary); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { gap: 10px; }

/* ---- HABER KARTLARI ---- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: block; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card .card-img { height: 200px; overflow: hidden; }
.news-card .card-img img, .news-card .card-img .placeholder-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, .gallery-item .placeholder-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img, .gallery-item:hover .placeholder-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; }

/* ---- 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::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,185,35,0.1), 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); }

/* ---- ABOUT ---- */
.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, .about-img .placeholder-img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-content p { color: var(--gray); margin-bottom: 14px; }

/* ---- İSTATİSTİK ---- */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 60px 0; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 2.8rem; margin-bottom: 6px; }
.stat-item p { opacity: 0.85; font-size: 0.95rem; }

/* ---- İ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; }

/* ---- 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; }

/* ---- CTA ---- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 60%, var(--primary-dark) 100%);
    padding: 80px 0; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(200,16,46,0.1); border-radius: 50%; }
.cta-section h2 { font-size: 2.4rem; margin-bottom: 14px; position: relative; }
.cta-section p { opacity: 0.8; max-width: 600px; margin: 0 auto 28px; font-size: 1.05rem; position: relative; }

/* ---- 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-col .hours-list li { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.footer-col .hours-list i { color: var(--primary); font-size: 0.85rem; }
.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; }

/* ---- WHATSAPP ---- */
.whatsapp-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 4px 16px rgba(37,211,102,0.4);} 50%{box-shadow:0 4px 24px rgba(37,211,102,0.6);} }

/* ---- ALERTS ---- */
.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; }

/* ---- DETAY ---- */
.detail-content { max-width: 800px; margin: 0 auto; padding: 40px 0; }
.detail-content img { border-radius: var(--radius); margin: 20px 0; }
.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; }
.detail-content .meta i { margin-right: 4px; }
.prose { font-size: 1.05rem; }
.prose p { margin-bottom: 16px; }

/* ---- 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); }

/* ---- 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; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--white); flex-direction: column; padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1); transition: right 0.3s ease;
        align-items: flex-start; gap: 4px; z-index: 1001;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { width: 100%; padding: 12px 0; }
    .hero { height: 65vh; min-height: 420px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content { padding: 0 20px; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 2rem; }
    .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); }
    .modal-box { padding: 24px; margin: 10px; }
}

/* Service image in card */
.service-card .service-img { width:100%; height:180px; object-fit:cover; border-radius:8px; margin-bottom:16px; }
.service-card a { color: inherit; }
a.service-card { display:block; }

/* ---- HİZMET SLIDER ---- */
.hizmet-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.hizmet-slider {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}
.hizmet-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}
.hizmet-slide-card {
    min-width: calc(25% - 15px);
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    color: inherit;
    flex-shrink: 0;
}
.hizmet-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.hizmet-slide-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.hizmet-slide-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.hizmet-slide-card:hover .hizmet-slide-img img { transform: scale(1.08); }
.hizmet-slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    display: flex;
    align-items: flex-end;
    padding: 14px;
}
.hizmet-slide-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    position: absolute;
    top: 12px;
    left: 12px;
}
.hizmet-slide-body {
    padding: 18px 16px;
}
.hizmet-slide-body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.3;
}
.hizmet-slide-body p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}
.hizmet-slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow);
    z-index: 2;
}
.hizmet-slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 1100px) {
    .hizmet-slide-card { min-width: calc(33.333% - 14px); }
}
@media (max-width: 768px) {
    .hizmet-slide-card { min-width: calc(50% - 10px); }
    .hizmet-slide-img { height: 180px; }
}
@media (max-width: 480px) {
    .hizmet-slide-card { min-width: calc(85%); }
    .hizmet-slider-btn { display: none; }
    .hizmet-slider { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .hizmet-slide-card { scroll-snap-align: start; }
}
