/* resimler/stil.css - SON HALİ */

:root {
    --ana-renk: #2dbc4e;
    --koyu-yesil: #239b3e;
    --siyah: #333;
    --beyaz: #fff;
    --primary-color: #2dbc4e;
    --secondary-color: #2c3e50;
}

body { 
    font-family: 'Segoe UI', sans-serif; 
    margin: 0; padding: 0; background: #fdfdfd; 
}

/* --- HEADER --- */
.header-transparent {
    position: absolute; top: 0; left: 0; width: 100%;
    padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    box-sizing: border-box;
}

.logo {
    font-size: 32px;
    font-weight: 400; 
    color: var(--ana-renk);
    text-decoration: none;
    letter-spacing: -1px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.9);
}

.nav-links { display: flex; align-items: center; gap: 15px; }

.btn-giris {
    text-decoration: none; color: white; font-weight: 600;
    padding: 8px 20px; border: 1.5px solid white; border-radius: 50px;
    transition: 0.3s; background: rgba(0,0,0,0.2); font-size: 14px;
}
.btn-giris:hover { background: white; color: var(--siyah); }

.btn-uye {
    text-decoration: none; background: var(--ana-renk); color: white !important;
    padding: 10px 25px; border-radius: 50px; font-weight: 600;
    border: 1.5px solid var(--ana-renk); transition: 0.3s; font-size: 14px;
}
.btn-uye:hover { background: var(--koyu-yesil); transform: scale(1.05); }

/* --- HERO (KAPAK RESMİ) --- */
.hero {
    height: auto; 
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px 40px;
}

.hero-icerik {
    width: 100%;
    max-width: 1200px;
    padding: 10px;
    margin-top: 10px; 
}

.hero-icerik h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.hero-icerik p {
    font-size: 1.2rem;
    margin: 0 0 25px 0;
}

/* Arama Kutusu */
.search-box {
    background: white; padding: 5px; border-radius: 60px;
    display: flex; width: 100%; max-width: 600px;
    margin: 20px auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.search-box input {
    flex: 1; border: none; padding: 12px 20px; font-size: 16px;
    border-radius: 50px; outline: none;
    width: 100%;
    box-sizing: border-box;
}
.btn-arama {
    background: var(--ana-renk); color: white; border: none;
    padding: 12px 35px; border-radius: 50px; font-size: 16px;
    font-weight: bold; cursor: pointer; transition: 0.3s;
    width: 100%;
    margin-top: 10px;
}
.btn-arama:hover { background: var(--koyu-yesil); }

/* --- NASIL ÇALIŞIR --- */
.video-bolumu {
    width: 90%;
    margin: -40px auto 40px; 
    background: white;
    padding: 30px 20px; 
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
    text-align: center;
}

.video-grid {
    display: flex; gap: 20px; margin-top: 30px;
    justify-content: center; flex-wrap: wrap;
}

.video-karti {
    flex: 1; min-width: 220px;
    height: 180px;
    border-radius: 10px; overflow: hidden;
    position: relative; cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.video-karti img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.video-karti:hover img { transform: scale(1.1); filter: brightness(0.7); }

.play-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 35px; color: white;
    pointer-events: none;
}
.kart-baslik {
    position: absolute; bottom: 10px; left: 0; width: 100%;
    text-align: center; color: white; font-weight: bold; font-size: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9); pointer-events: none;
}
/* --- GİRİŞ MODALİ ÖZEL STİLLERİ --- */
.login-modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-header {
    margin-bottom: 25px;
    text-align: center;
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #f9f9f9;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-control-custom:focus {
    border-color: #2dbc4e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 188, 78, 0.1);
}

.modal-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.btn-login-submit {
    background: #2dbc4e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login-submit:hover {
    background: #26a644;
    transform: translateY(-2px);
}

.btn-cancel {
    background: #f1f1f1;
    color: #666;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cancel:hover {
    background: #e5e5e5;
}

/* --- TASARIM AYARLARI --- */
        
#searchInput {
    flex: 1;
    height: 30px;
    font-size: 1.2rem;
    padding-left: 30px;
    border: none;
    background: transparent;
    outline: none;
    color: #555;
}

.btn-arama:hover { background-color: #26a644; }

/* Otomatik Tamamlama Listesi */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 20px;
    right: 20px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    text-align: left;
    border-radius: 15px;
}

.autocomplete-items div {
    padding: 12px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: #333;
}

.autocomplete-items div:first-child { border-radius: 15px 15px 0 0; }
.autocomplete-items div:last-child { border-radius: 0 0 15px 15px; border-bottom: none; }

.autocomplete-items div:hover, .autocomplete-active {
    background-color: #f1f1f1;
    color: #000;
    font-weight: 600;
}

/* Vurgulama Rengi (Turuncu/Yeşil uyumlu) */
.highlight {
    font-weight: bold;
    color: #2dbc4e;
}

/* --- MODAL STİLLERİ --- */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover { color: #333; }

.modal-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.choice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.btn-customer {
    background-color: #e3f2fd;
    color: #0d47a1;
    border: 2px solid #e3f2fd;
}
.btn-customer:hover {
    background-color: #0d47a1;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.2);
}

.btn-provider {
    background-color: #fff3e0;
    color: #e65100;
    border: 2px solid #fff3e0;
}
.btn-provider:hover {
    background-color: #e65100;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.2);
}

.choice-icon { margin-right: 10px; font-size: 1.4rem; }

/* --- RESPONSIVE AYARLARI --- */
@media (max-width: 768px) {
    .header-transparent {
        padding: 10px 5%;
        background: rgba(0,0,0,0.8);
    }

    .nav-links {
        display: none; /* Mobil menü için gizle, Bootstrap halleder */
    }

    .hero {
        padding: 60px 20px 30px;
        min-height: 300px;
    }

    .hero-icerik h1 {
        font-size: 1.8rem;
    }

    .hero-icerik p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
    }
    
    .btn-arama {
        margin-top: 10px;
        width: 100%;
    }

    .video-bolumu {
        width: 95%;
        padding: 20px 15px;
    }

    .video-bolumu h2 {
        font-size: 2rem;
    }
    .video-bolumu h1 {
        font-size: 1.5rem;
    }
    .video-bolumu p {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .search-box {
        flex-direction: row;
    }

    .btn-arama {
        width: auto;
        margin-top: 0;
    }
}

/* --- KAYIT FORMU --- */

.card-custom {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid #e9ecef;
    border-top: 5px solid #20c997; /* Yeşil Çizgi (Müşteri farkı için) */
}

.home-btn { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: white; 
    border-radius: 50px; 
    padding: 8px 20px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    color: #2c3e50; 
    font-weight: 600; 
    text-decoration: none; 
    transition: 0.3s; 
    z-index: 1000; 
}
.home-btn:hover { 
    background: #20c997; 
    color: white; 
    transform: translateX(5px); 
}

.sub-title {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #20c997; /* Yeşil İkonlar */
}

.form-control, .form-select {
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 1rem;
    background-color: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: #20c997;
    box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

.btn-kayit {
    background-color: #20c997; /* Yeşil Buton */
    color: white;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
    margin-top: 15px;
}
.btn-kayit:hover {
    background-color: #198754;
}
a { text-decoration: none; color: #20c997; font-weight: 600; }
a:hover { text-decoration: underline; color: #198754; }

/* --- PANEL --- */

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid #dee2e6;
}

.search-wrapper {
    max-width: 700px;
    margin-top: 2rem;
}

.search-wrapper .form-control {
    border-radius: 30px 0 0 30px;
    padding-left: 25px;
}
.search-wrapper .btn-primary {
    border-radius: 0 30px 30px 0;
    background-color: #2dbc4e;
    border-color: #2dbc4e;
    padding: 0 25px;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: bold;
    color: #2c3e50;
}

.section-title span {
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2dbc4e;
    border-radius: 2px;
}


.category-group-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    border-color: #2dbc4e;
    color: #2dbc4e;
}

.category-card .icon-arrow {
    transition: transform 0.3s ease;
}

.category-card:hover .icon-arrow {
    transform: translateX(5px);
}

/* USTA LİSTESİ */

.page-title {
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 3px solid #2dbc4e;
    display: inline-block;
    padding-bottom: 8px;
}

.usta-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden; /* For rounded corners on children */
}

.usta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #2dbc4e;
}

.portfolio-preview {
    height: 100%;
}

.portfolio-preview .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 1.2rem;
}

.no-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.usta-card .card-body {
    padding: 1.5rem;
}

.usta-card .card-title {
    font-weight: 700;
    color: #2c3e50;
}

.usta-card .card-subtitle {
    font-weight: 600;
}

.usta-card .location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.usta-card .description {
    font-size: 0.95rem;
    color: #495057;
    min-height: 60px;
}

.usta-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2dbc4e;
}

.usta-card .btn-primary {
    background-color: #2dbc4e;
    border-color: #2dbc4e;
    font-weight: 600;
    padding: 8px 20px;
}
.card-custom { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; border: none; box-shadow: 0 15px 35px rgba(0,0,0,0.1); padding: 45px; }
.section-title { border-left: 5px solid var(--primary-color); padding-left: 15px; margin: 30px 0 20px; font-weight: 700; color: var(--secondary-color); font-size: 1.1rem; }
.form-control, .form-select { border-radius: 10px; padding: 12px; border: 1px solid #e0e0e0; background: #fdfdfd; }
.form-control:focus, .form-select:focus { box-shadow: 0 0 0 3px rgba(45, 188, 78, 0.2); border-color: var(--primary-color); }
.btn-kayit { background: var(--primary-color); border: none; border-radius: 12px; padding: 15px; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.5px; transition: 0.4s; }
.btn-kayit:hover { background: #26a644; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45, 188, 78, 0.3); }

.input-group-text { background: none; border-right: none; color: #adb5bd; }
.form-control { border-left: 0; }
.form-select {
     border-left: 1px solid #e0e0e0;
}

/* HİZMET VEREN PANEL */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-radius: 12px;
}

.card-header {
    background-color: #343a40;
    color: white;
    font-weight: 500;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1rem 1.5rem;
}

.list-group-item-action.active {
    background-color: #343a40;
    border-color: #343a40;
}

.list-group-item {
    font-weight: 500;
}

.list-group-item i {
    color: #6c757d;
    transition: color 0.2s;
}

.list-group-item.active i {
    color: white;
}

.list-group-item:hover i {
    color: #343a40;
}

.btn-primary {
    background-color: #2dbc4e;
    border-color: #2dbc4e;
    padding: 12px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #26a644;
    border-color: #26a644;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.portfolio-item img, .portfolio-item video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.delete-form {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}

.delete-form .btn-danger {
    background-color: rgba(220, 53, 69, 0.8);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: background-color 0.2s;
}

.delete-form .btn-danger:hover {
    background-color: rgba(220, 53, 69, 1);
}
.uyari-bar { background: #ffeb3b; color: #333; padding: 10px; text-align: center; }
.panel-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; margin-top: 20px; }
.profil-karti { background: #fff; padding: 20px; border-radius: 8px; border:1px solid #ddd; }
.badge { background: #007bff; color: white; padding: 2px 8px; border-radius: 4px; font-size: 12px; }

/* HİZMET VEREN PANEL */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-radius: 12px;
}

.card-header {
    background-color: #343a40;
    color: white;
    font-weight: 500;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1rem 1.5rem;
}

.list-group-item-action.active {
    background-color: #343a40;
    border-color: #343a40;
}

.list-group-item {
    font-weight: 500;
}

.list-group-item i {
    color: #6c757d;
    transition: color 0.2s;
}

.list-group-item.active i {
    color: white;
}

.list-group-item:hover i {
    color: #343a40;
}

.btn-primary {
    background-color: #2dbc4e;
    border-color: #2dbc4e;
    padding: 12px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #26a644;
    border-color: #26a644;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.portfolio-item img, .portfolio-item video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.delete-form {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}

.delete-form .btn-danger {
    background-color: rgba(220, 53, 69, 0.8);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: background-color 0.2s;
}

.delete-form .btn-danger:hover {
    background-color: rgba(220, 53, 69, 1);
}
.profile-header {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.profile-avatar {
    font-size: 5rem;
    color: #2dbc4e;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e9f9ee;
    margin-right: 2rem;
}

.profile-name {
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.profile-title {
    font-weight: 500;
    color: #2dbc4e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-meta span {
    color: #6c757d;
    margin-right: 1.5rem;
    font-size: 0.95rem;
}

.profile-meta i {
    margin-right: 0.5rem;
    color: #999;
}

.price-tag {
    font-weight: bold;
    color: #2c3e50;
}

.profile-section {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.profile-section .card-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.profile-section .card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.profile-section .card-body p {
    line-height: 1.8;
    color: #333;
}

.gallery-item {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.profile-pic-container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
    margin: 0 auto 20px;
}
.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upload-icon {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
}
.portfolio-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 5px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

/* HİZMET VEREN PANEL */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-radius: 12px;
}

.card-header {
    background-color: #343a40;
    color: white;
    font-weight: 500;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1rem 1.5rem;
}

.list-group-item-action.active {
    background-color: #343a40;
    border-color: #343a40;
}

.list-group-item {
    font-weight: 500;
}

.list-group-item i {
    color: #6c757d;
    transition: color 0.2s;
}

.list-group-item.active i {
    color: white;
}

.list-group-item:hover i {
    color: #343a40;
}

.btn-primary {
    background-color: #2dbc4e;
    border-color: #2dbc4e;
    padding: 12px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #26a644;
    border-color: #26a644;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.portfolio-item img, .portfolio-item video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.delete-form {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}

.delete-form .btn-danger {
    background-color: rgba(220, 53, 69, 0.8);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: background-color 0.2s;
}

.delete-form .btn-danger:hover {
    background-color: rgba(220, 53, 69, 1);
}