/* A_I_CURSOR: Kurumsal Web Sitesi CSS Stilleri */

:root {
    --primary-rgb: 0, 123, 255;  /* Bootstrap mavi */
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white-color: #ffffff;
    --black-color: #000000;
    --body-bg: #ffffff;
    --body-color: #212529;
    --heading-color: #343a40;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --theme-color-1: #4361ee;       /* Ana tema rengi */
    --theme-color-2: #3b82f6;       /* İkincil tema rengi */
    --theme-color-3: #2563eb;       /* Üçüncül tema rengi */
    
    --theme-dark-1: #1e293b;        /* Koyu tema ana renk */
    --theme-dark-2: #334155;        /* Koyu tema ikincil renk */
    --theme-dark-3: #475569;        /* Koyu tema üçüncül renk */
    
    --theme-light-1: #f8fafc;       /* Açık tema ana renk */
    --theme-light-2: #f1f5f9;       /* Açık tema ikincil renk */
    --theme-light-3: #e2e8f0;       /* Açık tema üçüncül renk */
    
    --success-color: #10b981;       /* Başarı rengi */
    --warning-color: #f59e0b;       /* Uyarı rengi */
    --danger-color: #ef4444;        /* Tehlike rengi */
    --info-color: #3b82f6;          /* Bilgi rengi */
    
    --sidebar-width: 280px;         /* Sidebar genişliği */
    --header-height: 70px;          /* Header yüksekliği */
    --transition-speed: 0.3s;       /* Geçiş animasyonu hızı */
    --border-radius: 8px;           /* Köşe yuvarlaklığı */
}

/* A_I_CURSOR: Temel Stil Ayarları */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--body-color);
    background-color: var(--body-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

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

/* A_I_CURSOR: Bootstrap ve Diğer Kütüphanelerin Müdahalesini Engelle */

.section-padding {
    padding: 3rem 0 1rem 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* A_I_CURSOR: Buton Stilleri */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* A_I_CURSOR: Header Stilleri */
.site-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.site-header .navbar-brand img {
    max-height: 50px;
}

.site-header .navbar-nav .nav-link {
    color: var(--body-color);
    font-weight: 500;
    padding: 0.7rem 1rem;
    transition: all var(--transition-speed) ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.site-header .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    border-radius: 10px;
}

.site-header .dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

/* A_I_CURSOR: Footer Stilleri */
.site-footer {
    background-color: #212529;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.site-footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.site-footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.site-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    text-decoration: none;
}

.site-footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

.site-footer .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobil Responsive Ayarlar */
@media (max-width: 767.98px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .site-footer h5:after {
        width: 30px;
    }
}

/* A_I_CURSOR: Kart Stilleri */
.service-card,
.product-card,
.category-card {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover,
.product-card:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img,
.product-img,
.category-img {
    height: 200px;
    overflow: hidden;
}

.service-img img,
.product-img img,
.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img,
.product-card:hover .product-img img,
.category-card:hover .category-img img {
    transform: scale(1.1);
}

.service-content,
.product-content,
.category-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3,
.product-content h3,
.category-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 1rem;
}

.read-more i {
    margin-left: 8px;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* A_I_CURSOR: Sayfa Üst Başlık Stil */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5rem 0;
    position: relative;
}

.page-header h1 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/* A_I_CURSOR: İletişim Sayfası Stilleri */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--shadow-color);
}

.form-control {
    height: calc(2.5rem + 2px);
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

textarea.form-control {
    height: auto;
}

/* A_I_CURSOR: Responsive Mobil Ayarları */
@media (max-width: 991.98px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .site-header .navbar-collapse {
        background-color: var(--white-color);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* A_I_CURSOR: Animasyon Stilleri */
.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.bounce-in {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* A_I_CURSOR: Kurumsal Website CSS Dosyası - Slider ve Diğer Bileşenler */

/* Genel Ayarlar */
:root {
    --transition-speed: 0.3s;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Slider Stilleri */
.hero-slider {
    position: relative;
    margin-bottom: 3rem;
}

.carousel-item {
    height: 70vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    bottom: 50%;
    transform: translateY(50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.carousel-caption.text-left {
    left: 10%;
    right: auto;
    text-align: left;
}

.carousel-caption.text-center {
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.carousel-caption.text-right {
    left: auto;
    right: 10%;
    text-align: right;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-caption p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.slider-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Kontrolleri */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity var(--transition-speed);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    opacity: 0.7;
    transition: all var(--transition-speed);
}

.carousel-indicators button.active {
    width: 15px;
    height: 15px;
    opacity: 1;
    background-color: #fff;
}

/* Responsive Ayarlar */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 60vh;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        max-width: 500px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 50vh;
    }
    
    .carousel-caption {
        padding: 1rem;
        max-width: 90%;
        left: 5%;
        right: 5%;
        transform: none;
        bottom: 30px;
    }
    
    .carousel-caption.text-left,
    .carousel-caption.text-center,
    .carousel-caption.text-right {
        left: 5%;
        right: 5%;
        transform: none;
        text-align: center;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slider-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Diğer Bileşen Stilleri */
.section-padding {
    padding: 5rem 0 3rem 0;
}

.section-title {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 0;
}

.section-title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buton Stilleri */
.btn {
    border-radius: 5px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Admin Panel - Slider Formu Stilleri */
.text-position {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.text-position label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    transition: all var(--transition-speed);
}

.text-position label.active {
    background-color: #e9ecef;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.text-position label input {
    position: absolute;
    opacity: 0;
}

.text-position label i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* A_I_CURSOR: X (Twitter) Özel İkonu Stilleri */
.x-icon {
    font-style: normal;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    display: inline-block;
}

.social-link .x-icon {
    font-size: 1em;
    position: relative;
    top: -1px;
}

/* A_I_CURSOR: Anasayfa Galeri Bölümü Stilleri */
.home-galleries {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.home-galleries .section-title h2 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 2rem;
}

.home-galleries .section-title h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.home-galleries .gallery-card {
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #fff;
}

.home-galleries .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.home-galleries .gallery-header {
    margin-bottom: 15px;
}

.home-galleries .gallery-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.home-galleries .gallery-header p {
    color: #777;
    font-size: 0.9rem;
}

.home-galleries .gallery-images img {
    height: 140px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-galleries .gallery-image-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.home-galleries .gallery-image-item:hover img {
    transform: scale(1.05);
}

.home-galleries .gallery-cover img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

.home-galleries .gallery-cover a:hover img {
    transform: scale(1.03);
}

.home-galleries .gallery-footer {
    margin-top: 15px;
}

/* Mobil Responsive Ayarlar */
@media (max-width: 767.98px) {
    .home-galleries {
        padding: 50px 0;
    }
    
    .home-galleries .gallery-header h3 {
        font-size: 1.2rem;
    }
    
    .home-galleries .gallery-images img {
        height: 120px;
    }
    
    .home-galleries .gallery-cover img {
        height: 200px;
    }
}

/* ====== Scrollbar Stilleri ====== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* ====== Sidebar İyileştirmeleri ====== */
.admin-sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.admin-logo {
    position: relative;
    padding: 1.75rem 1.5rem;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.admin-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--theme-color-1), var(--theme-color-3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.75rem;
    color: white;
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

.admin-logo .logo-icon:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.admin-logo h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 4px;
}

.admin-logo .small {
    margin-top: 0;
    font-size: 0.8rem;
    opacity: 0.7;
    color: white;
}

.admin-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.admin-menu a {
    position: relative;
    border-radius: 0;
    transition: all 0.25s ease;
    margin: 0 1rem;
    border-radius: 8px;
    height: var(--sidebar-menu-item-height);
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.admin-menu a:hover,
.admin-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
    color: white;
}

.admin-menu a.active {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-menu a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: linear-gradient(to bottom, var(--theme-color-1), var(--theme-color-2));
    border-radius: 0 5px 5px 0;
}

.admin-menu i {
    font-size: 1.25rem;
    width: 24px;
    margin-right: 12px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.admin-menu a:hover i,
.admin-menu a.active i {
    opacity: 1;
    transform: scale(1.1);
    color: white;
}

/* ====== Header İyileştirmeleri ====== */
.admin-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-header-left {
    display: flex;
    align-items: center;
}

.admin-header-left h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-dark-1);
    position: relative;
    padding-left: 0.5rem;
}

.admin-header-left h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, var(--theme-color-1), var(--theme-color-3));
    border-radius: 3px;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--theme-light-2);
    color: var(--theme-dark-2);
}

.mobile-toggle:hover {
    background-color: var(--theme-light-3);
    color: var(--theme-dark-1);
    transform: rotate(90deg);
}

/* ====== Card ve Form İyileştirmeleri ====== */
.card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h5, 
.card-header .card-title {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--theme-dark-1);
    position: relative;
    display: flex;
    align-items: center;
}

.card-header h5 i,
.card-header .card-title i {
    margin-right: 8px;
    color: var(--theme-color-2);
    font-size: 1.2rem;
}

.card-body {
    padding: 1.5rem;
    background-color: #ffffff;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.01);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* A_I_CURSOR: Form elemanları için iyileştirmeler */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--theme-dark-2);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.65rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-color-2);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.15);
}

.input-group {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.input-group .input-group-text {
    background-color: var(--theme-light-2);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--theme-dark-2);
    padding: 0 1rem;
}

.input-group .form-control {
    border-radius: 0;
    box-shadow: none;
}

.form-check-input {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.2em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: var(--theme-color-2);
    border-color: var(--theme-color-2);
}

.form-switch .form-check-input {
    width: 2.3em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0, 0, 0, 0.3)'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* A_I_CURSOR: Buton iyileştirmeleri */
.btn {
    padding: 0.65rem 1.25rem;
    font-weight: 500;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::after {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(45deg, var(--theme-color-3), var(--theme-color-1));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--theme-color-3), var(--theme-color-2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-success {
    background: linear-gradient(45deg, #059669, #10b981);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(45deg, #10b981, #34d399);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.btn-danger {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #ef4444, #f87171);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
}

.btn-warning {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    border: none;
    color: white;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
    color: white;
}

.btn-info {
    background: linear-gradient(45deg, #0891b2, #06b6d4);
    border: none;
    color: white;
}

.btn-info:hover {
    background: linear-gradient(45deg, #06b6d4, #22d3ee);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #4b5563, #6b7280);
    border: none;
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #6b7280, #9ca3af);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.2);
    color: white;
}

.btn-light {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--theme-dark-2);
}

.btn-light:hover {
    background: #f3f4f6;
    color: var(--theme-dark-1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn i {
    font-size: 1rem;
}

.btn-sm i {
    font-size: 0.875rem;
}

.btn-lg i {
    font-size: 1.2rem;
}

/* A_I_CURSOR: alert kutuları için iyileştirmeler */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.alert i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.alert-success {
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.1));
    color: #059669;
    border-left: 4px solid #059669;
}

.alert-danger {
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.1));
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.alert-warning {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.1));
    color: #d97706;
    border-left: 4px solid #d97706;
}

.alert-info {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
    color: #2563eb;
    border-left: 4px solid #2563eb;
}

/* A_I_CURSOR: Breadcrumb stilleri */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 1.5rem;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--theme-dark-3);
}

.breadcrumb-item a {
    color: var(--theme-color-2);
    transition: all 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--theme-color-3);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--theme-dark-3);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: var(--theme-dark-3);
    content: "/";
}

/* A_I_CURSOR: Mobil responsive iyileştirmeler */
@media (max-width: 991.98px) {
    .card {
        margin-bottom: 1.5rem;
    }
    
    .card-header {
        padding: 1rem 1.25rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
    }
    
    .alert {
        padding: 0.9rem 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .card {
        margin-bottom: 1.25rem;
    }
    
    .card-header {
        padding: 0.9rem 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.875rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .alert {
        padding: 0.75rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .alert i {
        font-size: 1.1rem;
    }
}

/* ====== Yardımcı Sınıflar ====== */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.icon-md {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
}

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

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* A_I_CURSOR: Hover ve fokus efektleri */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* İçeriği kırpmak yerine gösterilmesi gereken durumlarda stil tanımı */
.table td.no-truncate {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

/* A_I_CURSOR: Dropdown menüler için iyileştirmeler */
.nav-dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown .dropdown-toggle::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.open .dropdown-toggle::after {
    transform: rotate(90deg);
}

.nav-dropdown-menu {
    display: none;
    padding: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 1rem;
    border-radius: 8px;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.nav-dropdown-menu li a {
    padding: 0 1rem 0 2.5rem;
    height: calc(var(--sidebar-menu-item-height) - 10px);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.nav-dropdown-menu li a i {
    font-size: 1rem;
    width: 20px;
}

.nav-dropdown-menu li a:hover, 
.nav-dropdown-menu li a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* A_I_CURSOR: Menü kategorileri için iyileştirmeler */
.menu-category {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    padding: 1.5rem 1.5rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* A_I_CURSOR: Dış bağlantı için özel stil */
.admin-menu a.text-success {
    color: #10b981 !important;
}

.admin-menu a.text-success:hover {
    background-color: rgba(16, 185, 129, 0.15);
    color: #ecfdf5 !important;
}

.admin-menu a.text-success i {
    color: #10b981;
}

.admin-menu a.text-success:hover i {
    color: #ecfdf5;
}

/* A_I_CURSOR: Admin logo alanı için iyileştirmeler */
.admin-logo {
    position: relative;
    padding: 1.75rem 1.5rem;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.admin-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--theme-color-1), var(--theme-color-3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.75rem;
    color: white;
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

.admin-logo .logo-icon:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.admin-logo h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 4px;
}

.admin-logo .small {
    margin-top: 0;
    font-size: 0.8rem;
    opacity: 0.7;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* A_I_CURSOR: Admin sidebar iyileştirmeleri */
.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.admin-sidebar {
    background: linear-gradient(135deg, var(--theme-dark-1), var(--theme-dark-2));
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.15);
}

/* A_I_CURSOR: Mobil menü için iyileştirmeler */
@media (max-width: 991.98px) {
    .admin-menu a {
        margin: 0 0.75rem;
        padding: 0 1rem;
    }
    
    .nav-dropdown-menu {
        margin: 0 0.75rem;
    }
    
    .admin-menu i {
        margin-right: 10px;
    }
    
    .admin-sidebar.show {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    }
}

/* A_I_CURSOR: Admin sayfasını görüntüle butonu iyileştirmeleri */
.admin-header-right .btn-outline-success {
    border-color: var(--success-color);
    color: var(--success-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.admin-header-right .btn-outline-success:hover {
    background-color: var(--success-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.admin-header-right .btn-outline-success i {
    margin-right: 6px;
}

/* A_I_CURSOR: Admin user dropdown iyileştirmeleri */
.user-dropdown .dropdown-toggle {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.user-dropdown .dropdown-toggle:hover,
.user-dropdown .dropdown-toggle:focus {
    background-color: var(--theme-light-2);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.user-dropdown .dropdown-toggle i {
    font-size: 1.25rem;
    color: var(--theme-color-2);
}

.user-dropdown .dropdown-menu {
    min-width: 200px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    animation: fadeInDown 0.3s ease;
}

.user-dropdown .dropdown-item {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--theme-dark-2);
    transition: all 0.2s ease;
}

.user-dropdown .dropdown-item:hover {
    background-color: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-color);
    transform: translateX(3px);
}

.user-dropdown .dropdown-item i {
    width: 20px;
    font-size: 1rem;
}

.user-dropdown .dropdown-item.text-danger {
    color: var(--danger-color) !important;
}

.user-dropdown .dropdown-item.text-danger:hover {
    background-color: rgba(var(--danger-rgb), 0.08);
}

.user-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* A_I_CURSOR: Content alanı iyileştirmeleri */
.admin-content {
    padding: var(--content-padding);
    background-color: var(--theme-light-1);
    min-height: calc(100vh - var(--header-height));
}

/* Sayfa geçişi animasyonu */
.admin-content > *:not(script) {
    animation: fadeIn 0.3s ease-in-out;
}

/* Tablo Hover Efektleri */
.table-hover > tbody > tr {
    transition: all 0.2s ease;
}

.table-hover > tbody > tr:hover {
    background-color: rgba(var(--primary-rgb), 0.04);
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.02);
}

/* Card Gölgelendirme ve Hover Efektleri */
.card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.card.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* Form Elemanları ve Butonlar İyileştirme */
.form-control:focus, 
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.15);
}

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: translateX(0);
}

/* Alert İyileştirmeleri */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    background-color: rgba(var(--light-rgb), 0.5);
}

.alert i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-left: 3px solid #047857;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border-left: 3px solid #b45309;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border-left: 3px solid #b91c1c;
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-left: 3px solid #1e40af;
}

/* Yardımcı Sınıflar */
.text-muted {
    color: #6c757d !important;
}

.font-weight-bold, .fw-bold {
    font-weight: 600 !important;
}

.border-focus {
    border: 1px solid transparent;
    transition: border 0.2s ease;
}

.border-focus:focus, 
.border-focus:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
}

/* Status İndikatörler için Evrensel Stil */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
}

.status-indicator.active {
    background-color: var(--success-color);
}

.status-indicator.inactive {
    background-color: var(--danger-color);
}

.status-indicator.pending {
    background-color: var(--warning-color);
}

.status-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.2;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.status-indicator.active::after {
    color: var(--success-color);
}

.status-indicator.inactive::after {
    color: var(--danger-color);
}

.status-indicator.pending::after {
    color: var(--warning-color);
}

.table tr:hover .status-indicator::after {
    transform: scale(1);
}

/* Sayfalama İyileştirmesi */
.pagination {
    gap: 3px;
}

.pagination .page-item .page-link {
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    min-width: 36px;
    text-align: center;
    font-weight: 500;
    color: var(--theme-dark-2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.2s ease;
}

.pagination .page-item .page-link:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--theme-color-1), var(--theme-color-2));
    border-color: var(--theme-color-1);
    color: white;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
} 