/* ==========================================
   STK Bağış Platformu - Ana Stil Dosyası
   Font: Google Poppins
   Framework: Bootstrap 5
========================================== */

/* Contract Modal Styles */
.contract-content {
    line-height: 1.8;
    font-size: 0.95rem;
}

.contract-content h1,
.contract-content h2,
.contract-content h3,
.contract-content h4,
.contract-content h5,
.contract-content h6 {
    color: #29b372;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contract-content h1 {
    font-size: 1.8rem;
    border-bottom: 2px solid #29b372;
    padding-bottom: 0.5rem;
}

.contract-content h2 {
    font-size: 1.5rem;
}

.contract-content h3 {
    font-size: 1.3rem;
}

.contract-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.contract-content ul,
.contract-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.contract-content li {
    margin-bottom: 0.5rem;
}

.contract-content strong {
    color: #29b372;
    font-weight: 600;
}

.contract-content .highlight {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #29b372;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

/* Modal özel stilleri */
#contractModal .modal-dialog {
    max-width: 800px;
}

#contractModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#contractModal .modal-header {
    background: linear-gradient(135deg, #29b372 0%, #017a8f 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

#contractModal .modal-header .btn-close {
    filter: invert(1);
}

#contractModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 2rem;
}

#contractModal .modal-footer {
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

/* Bootstrap Override - bg-dark */
.bg-dark {
    background-color: #000 !important;
}

/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Dil Seçici (Language Selector) */
#languageDropdown {
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#languageDropdown:hover {
    color: #29b372 !important;
}

#languageDropdown .bi-globe2 {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

#languageDropdown:hover .bi-globe2 {
    transform: rotate(15deg);
}

/* Dil seçici dropdown menü */
#languageDropdown + .dropdown-menu {
    min-width: 150px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

#languageDropdown + .dropdown-menu .dropdown-item {
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

#languageDropdown + .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #29b372 0%, #017a8f 100%);
    color: white !important;
    padding-left: 1.5rem;
}

#languageDropdown + .dropdown-menu .dropdown-item.active {
    background: linear-gradient(135deg, #29b372 0%, #017a8f 100%);
    color: white;
    font-weight: 600;
}

#languageDropdown + .dropdown-menu .dropdown-item i {
    font-size: 1rem;
}

/* Navbar Bağış Yap Butonu */
.navbar .btn-danger {
    background: linear-gradient(135deg, #29b372 0%, #017a8f 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem !important;
    box-shadow: 0 4px 15px rgba(1, 145, 168, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbar .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 145, 168, 0.4);
    background: linear-gradient(135deg, #017a8f 0%, #29b372 100%);
}

.navbar .btn-danger:active {
    transform: translateY(0);
}

.navbar .btn-danger i {
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(0.9); }
}

/* Navbar Dropdown */
.navbar .dropdown-menu {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 280px;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    padding: 0.6rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    color: #29b372;
    padding-left: 1.5rem;
}

.navbar .dropdown-item.fw-bold {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    color: #29b372;
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================
   AUTH PAGES
========================================== */

.auth-page {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    min-height: 100vh;
}

.auth-container {
    position: relative;
    z-index: 1;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card-header {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    padding: 2.5rem 2rem;
    text-align: center;
}

.auth-logo-text {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.auth-logo-img {
    max-height: 60px;
    max-width: 200px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.auth-logo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

.auth-card-body {
    padding: 2.5rem 2rem;
}

.auth-title {
    color: #2d3748;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-description {
    color: #718096;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form .form-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #29b372;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-form .form-check-input {
    border-radius: 4px;
    border: 1px solid #cbd5e0;
}

.auth-form .form-check-input:checked {
    background-color: #29b372;
    border-color: #29b372;
}

.auth-form .form-check-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.btn-auth {
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary.btn-auth {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    border: none;
}

.btn-primary.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.auth-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.auth-links p {
    color: #718096;
    font-size: 0.9rem;
}

.auth-link {
    color: #29b372;
    font-weight: 500;
}

.auth-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert ul {
    padding-left: 1.25rem;
}

/* Test Users Section */
.test-users-section {
    margin-top: 2rem;
}

.test-user-card {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.test-user-card:hover {
    background: #fff;
    border-color: #29b372;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.test-user-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.test-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.test-user-info strong {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 600;
}

.test-user-info small {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 400;
}

.test-users-section code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #29b372;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

/* ==========================================
   ADMIN PANEL - Modern & Minimal Design
========================================== */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f8f9fa;
}

.admin-sidebar {
    width: 280px;
    background: #ffffff;
    color: #2d3748;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    border-right: 1px solid #e2e8f0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.03);
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Custom Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.admin-sidebar-header {
    padding: 1rem;
    background: transparent;
    text-align: center;
    border-bottom: 2px solid #e2e2e2;
}

.admin-sidebar-header img {
    height: 60px !important;
    object-fit: contain;
    max-width: 100%;
}

.admin-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.admin-logo i {
    font-size: 1.5rem;
}

.admin-nav {
    padding: 1.5rem 0.75rem;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    margin-bottom: 0.35rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.admin-nav-item i {
    font-size: 1.1rem;
    width: 24px;
    transition: all 0.3s ease;
}

.admin-nav-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    color: #29b372;
    transform: translateX(4px);
    text-decoration: none;
}

.admin-nav-item.active {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.admin-nav-item.active i {
    transform: scale(1.1);
}

/* Nav Item Hover Effect */
.admin-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.admin-nav-item:hover::before {
    height: 70%;
}

.admin-nav-item.active::before {
    height: 0;
}

/* Accordion Menu Styles */
.admin-nav .accordion-item {
    border: none !important;
}

.admin-nav-group {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.admin-nav-group:hover {
    color: #29b372;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%) !important;
}

.admin-nav-group:not(.collapsed) {
    color: #29b372;
}

.admin-nav-group::after {
    margin-left: auto;
    font-size: 0.8rem;
}

.admin-nav .accordion-body .admin-nav-item {
    font-size: 0.9rem;
    padding-left: 3rem !important;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    background: #f8f9fa;
    min-height: 100vh;
}

.admin-header {
    background: #ffffff;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

.admin-header h5 {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

.admin-header .d-flex {
    background: #f8f9fa;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.admin-header .d-flex i {
    color: #29b372;
    font-size: 1.25rem;
}

.admin-header .d-flex strong {
    color: #334155;
    font-weight: 600;
}

.admin-main {
    padding: 2.5rem;
}

.admin-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.admin-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* transform: translateY(-2px); - Geçici olarak kaldırıldı */
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f1f5f9;
}

.admin-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-card-title i {
    color: #29b372;
}

/* Stats Cards */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover .stat-icon::before {
    transform: translateX(100%);
}

.stat-icon i {
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.admin-card .bg-primary {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%) !important;
}

.admin-card .bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.admin-card .bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.admin-card .bg-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.admin-card .bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

/* Table Styles */
.admin-card .table {
    margin-bottom: 0;
}

.admin-card .table thead th {
    background: #f8f9fa;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
    padding: 1rem;
}

.admin-card .table tbody tr {
    transition: all 0.2s ease;
}

.admin-card .table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.admin-card .table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #334155;
    font-size: 0.9rem;
}

/* Badges */
.badge {
    padding: 0.5rem 0.875rem;
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff6651 0%, #bf4635 100%);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
    color: #29b372;
    border-color: #29b372;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Empty State */
.admin-card .text-center.py-5 {
    padding: 4rem 2rem !important;
}

.admin-card .text-center.py-5 i {
    color: #cbd5e0;
}

.admin-card .text-center.py-5 .text-muted {
    color: #94a3b8 !important;
}

/* ==========================================
   FAQ / SSS
========================================== */

.accordion-item {
    border: 1px solid #e2e8f0 !important;
    overflow: hidden;
}

.accordion-button {
    background: #ffffff;
    color: #2d3748;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #29b372;
    box-shadow: none;
}

.accordion-button:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #29b372;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

/* ==========================================
   SLIDER
========================================== */

.slider-section {
    position: relative;
    overflow: visible;
}

/* Slider Üzeri Floating Resim - En Sağda */
.slider-floating-image {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    pointer-events: none;
}

.slider-floating-image-link {
    display: block;
    pointer-events: all;
    transition: transform 0.3s ease;
}

.slider-floating-image-link:hover {
    transform: scale(1.05);
}

.slider-floating-image-wrapper {
    position: relative;
    padding: 4px;
    background: linear-gradient(135deg, #29b373 0%, #1e8e5a 25%, #29b373 50%, #1e8e5a 75%, #29b373 100%);
    background-size: 200% 200%;
    border-radius: 12px;
    animation: gradient-border 3s ease infinite;
    box-shadow: 0 4px 20px rgba(41, 179, 115, 0.4);
}

.slider-floating-img {
    display: block;
    width: 350px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 992px) {
    .slider-floating-image {
        top: 15px;
        right: 15px;
    }
    
    .slider-floating-img {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .slider-floating-image {
        top: 10px;
        right: 10px;
    }
    
    .slider-floating-img {
        width: 120px;
    }
    
    .slider-floating-image-wrapper {
        padding: 3px;
    }
}



.slider-image {
   

    object-fit: cover;
    width: 100%;
}

.carousel-item {
    position: relative;
}
.carousel-caption {
    z-index: 2;
    text-align: left;
    left: 0;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 0;
    padding-bottom: 0;
}

.slider-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slider-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.6;
}

.slider-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.slider-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
    }
    
    .slider-buttons .btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        text-align: center;
    }
    
    .slider-subtitle {
        font-size: 0.9rem;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-description {
        font-size: 1rem;
    }
    
    .slider-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #ffffff;
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #29b373;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Fade Animation */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials-section {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIxIiBmaWxsPSIjZjhmOGY4IiBvcGFjaXR5PSIwLjMiLz4KICAgICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMC41IiBmaWxsPSIjZjhmOGY4IiBvcGFjaXR5PSIwLjIiLz4KICAgICAgPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMC41IiBmaWxsPSIjZjhmOGY4IiBvcGFjaXR5PSIwLjIiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPgo8L3N2Zz4K');
    background-repeat: repeat;
    background-position: center center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Mobile Responsive - Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 0 !important;
    }
    
    .testimonials-section .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 !important;
        padding: 0 1rem !important;
    }
    
    .testimonials-section .col-lg-4,
    .testimonials-section .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 0.5rem 0 0 !important;
        padding: 0 !important;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
        min-width: calc(100% - 1rem);
    }
    
    .testimonial-card .card-body {
        padding: 1.5rem !important;
    }
    
    .testimonial-card .card-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .testimonial-card .card-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .testimonial-card .text-muted {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 1.5rem 0 !important;
    }
    
    .testimonials-section .row {
        padding: 0 0.5rem !important;
    }
    
    .testimonial-card {
        min-width: calc(100% - 0.5rem);
    }
    
    .testimonial-card .card-body {
        padding: 1rem !important;
    }
    
    .testimonial-card .card-text {
        font-size: 0.85rem !important;
    }
    
    .testimonial-card .card-title {
        font-size: 0.9rem !important;
    }
    
    .testimonial-card .text-muted {
        font-size: 0.75rem !important;
    }
}

/* ==========================================
   ADMIN STAT CARDS (Modern & Minimal)
========================================== */

.admin-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--stat-color, #29b372) 0%, var(--stat-color-light, #764ba2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.admin-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.admin-stat-card:hover .stat-icon::after {
    transform: translate(-50%, -50%) scale(2);
}

.stat-icon.bg-primary {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
}

.stat-icon.bg-success {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.stat-icon.bg-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.bg-warning {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.stat-icon.bg-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.bg-secondary {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
}

.stat-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Heebo', sans-serif;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.7rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
}

/* Legacy support for old admin-stat-icon and admin-stat-content classes */
.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.admin-stat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.admin-stat-card:hover .admin-stat-icon::after {
    transform: translate(-50%, -50%) scale(2);
}

.admin-stat-icon.bg-primary {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
}

.admin-stat-icon.bg-success {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.admin-stat-icon.bg-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.admin-stat-icon.bg-warning {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.admin-stat-icon.bg-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.admin-stat-icon.bg-secondary {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
}

.admin-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Heebo', sans-serif;
    letter-spacing: -0.5px;
}

.admin-stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-stat-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1rem;
    }
    
    .admin-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .admin-stat-number {
        font-size: 1.5rem;
    }
    
    .admin-stat-label {
        font-size: 0.75rem;
    }
}

/* Animation on load */
@keyframes statCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-stat-card {
    animation: statCardFadeIn 0.5s ease forwards;
}

.admin-stat-card:nth-child(1) { animation-delay: 0.1s; }
.admin-stat-card:nth-child(2) { animation-delay: 0.2s; }
.admin-stat-card:nth-child(3) { animation-delay: 0.3s; }
.admin-stat-card:nth-child(4) { animation-delay: 0.4s; }
.admin-stat-card:nth-child(5) { animation-delay: 0.5s; }
.admin-stat-card:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================
   AUTH PAGES (Modern Authentication)
========================================== */

/* Auth Page Layout */
.auth-page {
    font-family: 'Heebo', sans-serif;
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.auth-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sol Taraf - Görsel */
.auth-visual {
    flex: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-visual-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 2rem;
    max-width: 500px;
}

.auth-visual-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

.auth-visual-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auth-visual-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.auth-visual-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.auth-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

/* Sağ Taraf - Form */
.auth-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

.auth-form-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #29b372;
    margin-bottom: 0.5rem;
}

.auth-logo-img {
    max-height: 60px;
    max-width: 200px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.auth-logo-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Form Stilleri */
.auth-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.auth-description {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.auth-form {
    margin-top: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-label i {
    color: #29b372;
}

.auth-input {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.auth-input:focus {
    border-color: #29b372;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.auth-input::placeholder {
    color: #a0aec0;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #29b372;
}

/* Form Check */
.form-check-input {
    border: 2px solid #e2e8f0;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #29b372;
    border-color: #29b372;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-check-label {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Auth Button */
.btn-auth {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn-auth:active {
    transform: translateY(0);
}

/* Auth Links */
.auth-link {
    color: #29b372;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.auth-links {
    margin-top: 1.5rem;
}

.auth-links p {
    font-size: 0.95rem;
    color: #4a5568;
}

/* Auth Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    background: #ffffff;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
    position: relative;
}

/* Test Users Section (Development) */
.test-users-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.test-user-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.test-user-card:hover {
    border-color: #29b372;
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.test-user-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.test-user-info strong {
    display: block;
    font-size: 0.9rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.test-user-info small {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-wrapper {
        flex-direction: column;
    }
    
    .auth-visual {
        min-height: 300px;
        flex: none;
    }
    
    .auth-visual-content {
        padding: 1rem;
    }
    
    .auth-visual-title {
        font-size: 2rem;
    }
    
    .auth-visual-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .auth-visual-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .auth-form-container {
        padding: 1.5rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .auth-visual-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .auth-form-container {
        padding: 1rem;
    }
    
    .row .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================
   STORIES (Instagram Tarzı)
========================================== */

/* Story Carousel Wrapper */
#storyCarousel {
    position: relative;
    overflow: visible;
    padding: 0 80px;
    margin: 0 -80px;
}

#storyCarousel .carousel-inner {
    overflow: visible;
}

#storyCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Story Container Slide */
.story-container-slide {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    padding: 10px 0;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .story-container-slide {
        flex-wrap: nowrap;
        justify-content: center;
    }
}

/* Story Carousel Navigation */
.story-carousel-prev,
.story-carousel-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #29b372;
    font-size: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-carousel-prev {
    left: -70px;
}

.story-carousel-next {
    right: -70px;
}

.story-carousel-prev:hover,
.story-carousel-next:hover {
    opacity: 1;
    background: #29b372;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 145, 168, 0.3);
}

.story-carousel-prev i,
.story-carousel-next i {
    font-size: 20px;
}

/* Bootstrap carousel control override for stories */
#storyCarousel .carousel-control-prev,
#storyCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #29b372;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

#storyCarousel .carousel-control-prev {
    left: -70px;
}

#storyCarousel .carousel-control-next {
    right: -70px;
}

#storyCarousel .carousel-control-prev:hover,
#storyCarousel .carousel-control-next:hover {
    opacity: 1;
    background: #29b372;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 145, 168, 0.3);
}

#storyCarousel .carousel-control-prev-icon,
#storyCarousel .carousel-control-next-icon {
    background: none;
    width: auto;
    height: auto;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#storyCarousel .carousel-control-prev-icon::before,
#storyCarousel .carousel-control-next-icon::before {
    content: '';
    display: none;
}

#storyCarousel .carousel-control-prev i,
#storyCarousel .carousel-control-next i {
    font-size: 20px;
    line-height: 1;
}

/* Testimonials Carousel Navigation */
.testimonial-carousel-prev,
.testimonial-carousel-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #29b372;
    font-size: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-carousel-prev {
    left: -70px;
}

.testimonial-carousel-next {
    right: -70px;
}

.testimonial-carousel-prev:hover,
.testimonial-carousel-next:hover {
    opacity: 1;
    background: #29b372;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 145, 168, 0.3);
}

.testimonial-carousel-prev i,
.testimonial-carousel-next i {
    font-size: 24px;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #29b372;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

#testimonialsCarousel .carousel-control-prev {
    left: -70px;
}

#testimonialsCarousel .carousel-control-next {
    right: -70px;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    opacity: 1;
    background: #29b372;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 145, 168, 0.3);
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    background: none;
    width: auto;
    height: auto;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#testimonialsCarousel .carousel-control-prev-icon::before,
#testimonialsCarousel .carousel-control-next-icon::before {
    content: '';
    display: none;
}

#testimonialsCarousel .carousel-control-prev i,
#testimonialsCarousel .carousel-control-next i {
    font-size: 24px;
    line-height: 1;
}

/* Testimonials Section Container */
.testimonials-section .container {
    overflow: visible;
}

#testimonialsCarousel {
    position: relative;
}

/* Responsive - Story Carousel */
@media (max-width: 992px) {
    .story-carousel-prev {
        left: -50px;
    }
    
    .story-carousel-next {
        right: -50px;
    }
    
    #storyCarousel .carousel-control-prev {
        left: -50px;
    }
    
    #storyCarousel .carousel-control-next {
        right: -50px;
    }
}

/* Stories Web Grid - 8 adet yan yana */
.story-grid-web {
    display: flex;
    flex-wrap: nowrap;
}

.story-col-web {
    flex: 0 0 12.5%;
    max-width: 12.5%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Mobil Stories Carousel */
#storyCarouselMobile {
    position: relative;
}

#storyCarouselMobile .carousel-control-prev,
#storyCarouselMobile .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #29b372;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 6px rgba(1, 145, 168, 0.3);
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

#storyCarouselMobile .carousel-control-prev {
    left: 5px;
}

#storyCarouselMobile .carousel-control-next {
    right: 5px;
}

#storyCarouselMobile .carousel-control-prev:hover,
#storyCarouselMobile .carousel-control-next:hover {
    opacity: 1;
    background: #29b372;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 145, 168, 0.4);
}

#storyCarouselMobile .carousel-control-prev-icon,
#storyCarouselMobile .carousel-control-next-icon {
    background-image: none;
    background: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#storyCarouselMobile .carousel-control-prev-icon i,
#storyCarouselMobile .carousel-control-next-icon i {
    color: white;
    font-size: 14px;
    line-height: 1;
}

#storyCarouselMobile .carousel-control-prev-icon::before,
#storyCarouselMobile .carousel-control-next-icon::before {
    content: '';
    display: none;
}

@media (max-width: 768px) {
    .story-carousel-prev,
    .story-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .story-carousel-prev {
        left: 10px;
    }
    
    .story-carousel-next {
        right: 10px;
    }
    
    #storyCarousel .carousel-control-prev,
    #storyCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    #storyCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #storyCarousel .carousel-control-next {
        right: 10px;
    }
}

/* Responsive - Testimonials Carousel */
@media (max-width: 992px) {
    .testimonial-carousel-prev {
        left: -50px;
    }
    
    .testimonial-carousel-next {
        right: -50px;
    }
    
    #testimonialsCarousel .carousel-control-prev {
        left: -50px;
    }
    
    #testimonialsCarousel .carousel-control-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .testimonial-carousel-prev,
    .testimonial-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .testimonial-carousel-prev {
        left: 10px;
    }
    
    .testimonial-carousel-next {
        right: 10px;
    }
    
    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    #testimonialsCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #testimonialsCarousel .carousel-control-next {
        right: 10px;
    }
}

/* Legacy - Keep for backwards compatibility */
.story-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
}

.story-container::-webkit-scrollbar {
    height: 6px;
}

.story-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.story-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Story Grid - Web'de 8, Mobilde 4 */
@media (min-width: 768px) {
    .story-col-web {
        flex: 0 0 12.5% !important; /* 100/8 = 12.5% - Web'de 8 tane */
        max-width: 12.5% !important;
        width: 12.5% !important;
    }
}

/* Mobilde col-3 zaten 4 tane gösteriyor (12/3 = 4) */

.story-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
}

.story-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, #1d1d1e 0%, #312e34 100%);
    margin: 0 auto 8px;
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #aa0b26;
}

.story-title {
    font-size: 0.85rem;
    margin: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    color: #2d3748;
}

/* Story Modal */
.story-modal-content {
    background: #000;
    border: none;
    border-radius: 0;
}

.story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1060;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.story-close:hover {
    background: rgba(255, 255, 255, 0.5);
}

.story-content {
    position: relative;
    height: 100vh;
    max-height: 800px;
}

.story-image-container {
    width: 100%;
    height: 100%;
}

.story-full-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px 30px;
    color: white;
    text-align: center;
}

.story-overlay-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.story-overlay-description {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Stories section mobile padding */
    .py-4 {
        padding: 1rem 0 !important;
    }
    
    #storyCarousel {
        padding: 0 40px;
        margin: 0 -40px;
    }
    
    .story-circle {
        width: 60px;
        height: 60px;
    }
    
    .story-title {
        font-size: 0.7rem;
        max-width: 60px;
        margin-top: 0.5rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .story-overlay-title {
        font-size: 1.5rem;
    }
    
    .story-overlay-description {
        font-size: 1rem;
    }
    
    .story-content {
        max-height: 100vh;
    }
    
    /* Mobil görünümde 5 adet story göster */
    .story-container-slide {
        display: flex;
        gap: 6px;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 0.5rem 0;
    }
    
    .story-container-slide .story-item {
        flex: 0 0 calc(20% - 4.8px);
        max-width: calc(20% - 4.8px);
        text-align: center;
    }
    
    .story-container-slide .story-item:nth-child(n+6) {
        display: none;
    }
}

@media (max-width: 576px) {
    /* Stories section extra small padding */
    .py-4 {
        padding: 0.75rem 0 !important;
    }
    
    #storyCarousel {
        padding: 0 30px;
        margin: 0 -30px;
    }
    
    .story-carousel-prev,
    .story-carousel-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
        opacity: 0.8;
    }
    
    #storyCarousel .carousel-control-prev,
    #storyCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
        opacity: 0.8;
    }
    
    #storyCarousel .carousel-control-prev-icon,
    #storyCarousel .carousel-control-next-icon {
        font-size: 14px;
    }
    
    /* Küçük ekranlarda da 5 adet story göster */
    .story-container-slide {
        display: flex;
        gap: 4px;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 0.25rem 0;
    }
    
    .story-container-slide .story-item {
        flex: 0 0 calc(20% - 3.2px);
        max-width: calc(20% - 3.2px);
        text-align: center;
    }
    
    .story-container-slide .story-item:nth-child(n+6) {
        display: none;
    }
    
    .story-circle {
        width: 50px;
        height: 50px;
    }
    
    .story-title {
        font-size: 0.65rem;
        max-width: 50px;
        margin-top: 0.25rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================
   COUNTERS / STATISTICS
========================================== */

.counter-item {
  /*   padding: 2rem 1rem;*/
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.counter-number {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .counter-number {
        font-size: 1.5rem;
    }
    
    .counter-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .counter-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .counter-section .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 -0.5rem !important;
    }
    
    .counter-section .col-lg-3,
    .counter-section .col-md-6 {
        flex: 0 0 calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        margin: 0 0.5rem 1rem 0.5rem !important;
        padding: 0 !important;
    }
    
    .counter-item {
        margin-bottom: 1rem;
    }
    
    .counter-number {
        font-size: 1.25rem;
    }
    
    .counter-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .counter-title {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .counter-section .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 -0.25rem !important;
    }
    
    .counter-section .col-lg-3,
    .counter-section .col-md-6 {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
        margin: 0 0.25rem 0.75rem 0.25rem !important;
        padding: 0 !important;
    }
    
    .counter-item {
        margin-bottom: 0.75rem;
    }
    
    .counter-number {
        font-size: 1.1rem;
    }
    
    .counter-icon {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .counter-title {
        font-size: 0.6rem;
    }
}

/* ==========================================
   VIDEOS
========================================== */

.video-card-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-card-thumbnail:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.video-player iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

/* ==========================================
   BLOG
========================================== */

.blog-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2d3748;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #29b372;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4a5568;
}

.blog-content a {
    color: #29b372;
    text-decoration: underline;
}

.blog-content a:hover {
    color: #764ba2;
}

/* ==========================================
   PUBLIC FRONTEND
========================================== */

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: #ffffff;
    padding: 0.5rem 1rem;
    transition: color 0.3s 
ease;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #29b372;
}

.hero-section {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.donation-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.donation-card-img {
    height: 220px;
    object-fit: cover;
}

.donation-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.donation-card-body {
    padding: 1.5rem;
}

.donation-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.donation-card-text {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.donation-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #29b372;
    margin-bottom: 1rem;
}

.btn-donation {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* ==========================================
   CATEGORIES SECTION (Ana Sayfa)
========================================== */

/* Kategoriler bölümü iconları */
.categories-section .admin-card i {
    color: #29b372 !important;
    transition: all 0.3s ease;
}

.categories-section .admin-card:hover i {
    transform: scale(1.1);
    color: #017a8f !important;
}

/* Kategoriler bölümü h5 başlıkları */
.categories-section .admin-card h5 {
    color: #29b372 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.categories-section .admin-card:hover h5 {
    color: #017a8f !important;
}

/* Kategoriler bölümü butonları */
.categories-section .admin-card .badge {
    background-color: #ff6651 !important;
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.categories-section .admin-card:hover .badge {
    background-color: #ff5537 !important;
    transform: translateY(-2px);
}

/* Kategoriler kart hover efekti */
.categories-section .admin-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.categories-section .admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(1, 145, 168, 0.15);
    border-color: rgba(1, 145, 168, 0.2);
}

/* ==========================================
   NAVBAR LAYOUT - YENİ TASARIM
========================================== */

/* Desktop Navbar */
.navbar {
    position: relative;
    background: #131619;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Navbar */
.navbar.d-lg-none {
    padding: 0.75rem 1rem;
    background: #131619;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.d-lg-none .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* Mobile Menu Toggle */
.navbar.d-lg-none .btn-link {
    color: #333 !important;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.navbar.d-lg-none .btn-link:hover {
    background: #f8f9fa;
    color: #29b372 !important;
}

/* Mobile Logo */
.navbar.d-lg-none .navbar-brand {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
}

.navbar.d-lg-none .navbar-brand:hover {
    color: #29b372;
}

/* Mobile Bağış Butonu */
.navbar.d-lg-none .btn-danger {
    background: linear-gradient(135deg, #29b372 0%, #017a8f 100%);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(1, 145, 168, 0.3);
    transition: all 0.3s ease;
}

.navbar.d-lg-none .btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 145, 168, 0.4);
    background: linear-gradient(135deg, #017a8f 0%, #29b372 100%);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #ffffff !important;
}

/* Mobile Offcanvas */
.offcanvas {
    width: 280px !important;
}

.offcanvas-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
}

.offcanvas-title {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.offcanvas-body {
    padding: 0;
}

/* Mobile Menu Items */
.offcanvas-body .list-group-item {
    border: none;
    border-bottom: 1px solid #f8f9fa;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.offcanvas-body .list-group-item:hover {
    background: #f8f9fa;
    padding-left: 2rem;
}

.offcanvas-body .list-group-item i {
    width: 20px;
    text-align: center;
}

/* Mobile Dropdown Menus */
.offcanvas-body .list-group-item .btn-link {
    color: #333 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offcanvas-body .list-group-item .btn-link:hover {
    color: #29b372 !important;
    background: #f8f9fa;
    text-decoration: none;
}

.offcanvas-body .list-group-item .btn-link:focus {
    color: #29b372 !important;
    box-shadow: none;
    text-decoration: none;
}

.offcanvas-body .list-group-item .btn-link i.bi-chevron-down {
    transition: transform 0.3s ease;
}

.offcanvas-body .list-group-item .btn-link[aria-expanded="true"] i.bi-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Content */
.offcanvas-body .collapse .dropdown-item {
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    background: #f8f9fa;
    border-left: 3px solid #29b372;
    margin: 0.25rem 0;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    display: block;
    color: #333;
    text-decoration: none;
}

.offcanvas-body .collapse .dropdown-item:hover {
    background: #e9ecef;
    padding-left: 3.5rem;
    color: #29b372;
    text-decoration: none;
}

.offcanvas-body .collapse .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Remove list styles from mobile dropdown */
.offcanvas-body .collapse li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-body .collapse ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-body .collapse .dropdown-item {
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    background: #f8f9fa;
    border-left: 3px solid #29b372;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    display: block;
    color: #333;
    text-decoration: none;
}

.offcanvas-body .collapse .dropdown-item:hover {
    background: #e9ecef;
    padding-left: 3.5rem;
    color: #29b372;
    text-decoration: none;
}

.offcanvas-body .collapse .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Gönüllü Ol Butonu */
.offcanvas-body .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.offcanvas-body .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, #ffc107 100%);
}

/* Mobile Giriş Yap Bölümü */
.offcanvas-body .p-3 {
    background: #ffffff;
}

.offcanvas-body .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.offcanvas-body .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Dil Seçimi */
.offcanvas-body .border-top {
    border-color: #e9ecef !important;
}

.offcanvas-body .btn-group .btn {
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.offcanvas-body .btn-group .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.offcanvas-body .btn-group .btn-primary {
    background: linear-gradient(135deg, #29b372 0%, #017a8f 100%);
    border-color: #29b372;
}

.offcanvas-body .btn-group .btn-outline-primary {
    color: #29b372;
    border-color: #29b372;
}

.offcanvas-body .btn-group .btn-outline-primary:hover {
    background: #29b372;
    color: white;
}

/* Üst bar - Sepet, dil, kullanıcı */
.navbar-top {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0.5rem 0;
}

.navbar-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.navbar-top .nav-item {
    margin: 0;
}

.navbar-top .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: none;
}

.navbar-top .nav-link:hover {
    color: #29b372;
}

/* Ana navbar - Logo ve menü */
.navbar-main {
    padding: 1rem 0;
}

.navbar-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo alanı - Sol taraf */
.navbar-brand {
    flex-shrink: 0;
    margin-right: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #29b372;
}

/* Menü alanı - Orta */
.navbar-nav.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

/* Sağ taraf butonlar */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile toggler */
.navbar-toggler {
    order: 3;
    border: none;
    background: none;
    font-size: 1.25rem;
    color: #29b372;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .navbar-top {
        padding: 0.25rem 0;
    }
    
    .navbar-top .container {
        gap: 0.5rem;
    }
    
    .navbar-top .nav-link {
        padding: 0.125rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .navbar-main {
        padding: 0.75rem 0;
    }
    
    .navbar-nav.main-nav {
        position: static;
        transform: none;
        left: auto;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-actions {
        position: absolute;
        top: 50%;
        right: 70px; /* Toggler'dan önce */
        transform: translateY(-50%);
        gap: 0.5rem;
    }
    
    .navbar-actions .nav-item {
        margin: 0;
    }
    
    .navbar-actions .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .navbar-top {
        padding: 0.125rem 0;
    }
    
    .navbar-top .nav-link {
        padding: 0.125rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .navbar-main {
        padding: 0.5rem 0;
    }
    
    .navbar-actions {
        right: 60px;
        gap: 0.25rem;
    }
    
    .navbar-actions .nav-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* ==========================================
   BANK ACCOUNTS PAGE
========================================== */

/* Bank logo responsive sizing */
@media (max-width: 768px) {
    .admin-card img[style*="height: 35px"] {
        height: 25px !important;
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .admin-card img[style*="height: 35px"] {
        height: 20px !important;
        max-width: 60px;
    }
}

/* Bank name font size */
.admin-card h3[style*="font-size: 1rem"] {
    font-size: 1rem !important;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .admin-card h3[style*="font-size: 1rem"] {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .admin-card h3[style*="font-size: 1rem"] {
        font-size: 0.85rem !important;
    }
}

/* ==========================================
   FAQ PAGE
========================================== */

/* FAQ category titles */
.faq-category-title {
    font-size: 1.3rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .faq-category-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-category-title {
        font-size: 1.1rem;
    }
}

/* ==========================================
   SIMILAR DONATIONS CARD BODY
========================================== */

/* Benzer Bağışlar bölümündeki card-body padding */
.donations-view .donation-card .card-body {
    padding: 10px !important;
}

/* ==========================================
   FOOTER CONTACT ICONS
========================================== */

/* Footer ana container */
footer .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Footer row */
footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Footer columns */
footer .col-lg-4,
footer .col-md-6,
footer .col-sm-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Footer iletişim bilgileri iconları */
footer .col-lg-4 .bi-geo-alt-fill,
footer .col-lg-4 .bi-telephone-fill,
footer .col-lg-4 .bi-envelope-fill,
footer .col-lg-4 .bi-whatsapp {
    color: #29b372 !important;
}

/* WhatsApp iconu özel olarak primary color yap */
footer .col-lg-4 .bi-whatsapp {
    color: #29b372 !important;
}

/* ==========================================
   WHATSAPP LIVE SUPPORT BUTTON
========================================== */

.whatsapp-support-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #075E54;
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-support-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-support-btn i {
    font-size: 24px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
}

/* Pulse animasyonu */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-support-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 15px 20px;
        justify-content: center;
        box-shadow: 0 -2px 10px rgba(37, 211, 102, 0.3);
        animation: none;
        margin: 0;
        box-sizing: border-box;
    }
    
    .whatsapp-text {
        display: inline;
        font-size: 16px;
        font-weight: 600;
    }
    
    .whatsapp-support-btn i {
        font-size: 24px;
        margin-right: 10px;
    }
    
    .whatsapp-support-btn:hover {
        transform: none;
        background: #128C7E;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .whatsapp-support-btn {
        padding: 12px 15px;
    }
    
    .whatsapp-text {
        font-size: 14px;
    }
    
    .whatsapp-support-btn i {
        font-size: 20px;
        margin-right: 8px;
    }
}

/* Add bottom padding to body on mobile to prevent content overlap */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
        overflow-x: hidden;
    }
    
    .whatsapp-support-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 15px 20px;
        box-sizing: border-box;
        transform: none;
        z-index: 1000;
    }
    
    /* Ensure no horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Fix any container issues */
    .container, .container-fluid {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ==========================================
   NEWSLETTER SECTION MOBILE RESPONSIVE
========================================== */

/* Newsletter section mobile adjustments */
@media (max-width: 768px) {
    /* Footer container mobile */
    footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Footer row mobile */
    footer .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Footer columns mobile */
    footer .col-lg-4,
    footer .col-md-6,
    footer .col-sm-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 1rem;
    }
    
    /* Newsletter section padding */
    footer .py-5 {
        padding: 2rem 0 !important;
    }
    
    /* Newsletter icon */
    footer .bi-envelope-at {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Newsletter title */
    footer h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Newsletter description */
    footer .fs-5 {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4;
    }
    
    /* Newsletter form */
    .newsletter-form .col-lg-8 {
        max-width: 100%;
    }
    
    /* Newsletter input group */
    .newsletter-form .input-group-lg {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form .input-group-lg .form-control {
        padding: 1.2rem 1.5rem !important;
        font-size: 1.1rem;
        border-radius: 0.375rem;
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
        margin-bottom: 0.5rem;
        width: 100%;
        min-height: 3.5rem;
    }
    
    .newsletter-form .input-group-lg .btn {
        min-width: 100% !important;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-radius: 0.375rem;
    }
    
    /* Newsletter privacy note */
    .newsletter-form small {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    /* Footer container extra small */
    footer .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Footer columns extra small */
    footer .col-lg-4,
    footer .col-md-6,
    footer .col-sm-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 0.75rem;
    }
    
    /* Newsletter section padding */
    footer .py-5 {
        padding: 1.5rem 0 !important;
    }
    
    /* Newsletter icon */
    footer .bi-envelope-at {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Newsletter title */
    footer h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Newsletter description */
    footer .fs-5 {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3;
    }
    
    /* Newsletter form */
    .newsletter-form .input-group-lg .form-control {
        padding: 1rem 1.2rem !important;
        font-size: 1rem;
        min-height: 3rem;
    }
    
    .newsletter-form .input-group-lg .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Newsletter privacy note */
    .newsletter-form small {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}

/* ==========================================
   FOOTER COPYRIGHT NOTICE
========================================== */

.footer-copyright-notice {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
}

.footer-copyright-notice .container {
    padding: 0 15px;
}

.footer-copyright-notice p {
    font-size: 0.6rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #6c757d;
}

.footer-copyright-notice .logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.footer-copyright-notice .logo-area img {
    max-height: 40px;
    object-fit: contain;
}

.footer-copyright-notice .logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 0.75rem;
}

.footer-copyright-notice .logo-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-copyright-notice .row {
        flex-direction: column;
    }
    
    .footer-copyright-notice .col-10 {
        margin-bottom: 1rem;
        order: 1;
    }
    
    .footer-copyright-notice .col-2 {
        text-align: center !important;
        order: 2;
        margin-top: 0.5rem;
    }
    
    .footer-copyright-notice p {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .footer-copyright-notice .logo-area {
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .footer-copyright-notice .col-10 {
        margin-bottom: 0.75rem;
    }
    
    .footer-copyright-notice .col-2 {
        margin-top: 0.25rem;
    }
    
    .footer-copyright-notice p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .footer-copyright-notice .logo-area img {
        max-height: 35px;
    }
}

/* ==========================================
   UTILITIES
========================================== */

.text-gradient {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(135deg, #29b372 0%, #764ba2 100%);
    border: none;
    color: #fff;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #764ba2 0%, #29b372 100%);
    color: #fff;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .admin-main {
        padding: 1.5rem;
    }
    
    .admin-header {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .auth-card-header {
        padding: 2rem 1.5rem;
    }
    
    .auth-card-body {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .admin-header h5 {
        font-size: 1.25rem;
    }
    
    .admin-card {
        padding: 0rem;
    }
    
    .admin-card-title {
        font-size: 1.15rem;
    }
    
    .test-user-card {
        padding: 0.75rem;
    }
}

/* Smooth Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-card {
    animation: slideIn 0.4s ease;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-primary {
    --bs-text-opacity: 1;
    color: #29b372  !important;
}

/* Popup Advertisement Styles */
.popup-ad-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-ad-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-ad-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-ad-overlay.show .popup-ad-container {
    transform: scale(1);
}

.popup-ad-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.popup-ad-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-ad-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.popup-ad-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 145, 168, 0.3);
}

/* Popup Link Styles */
.popup-ad-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.popup-ad-link:hover {
    transform: scale(1.02);
}

.popup-ad-link:focus {
    outline: 2px solid #29b372;
    outline-offset: 2px;
}

/* Mobile responsive popup */
@media (max-width: 768px) {
    .popup-ad-container {
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }
    
    .popup-ad-image {
        max-width: 100%;
        max-height: 80vh;
    }
    
    .popup-ad-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}

/* Popup animation effects */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-ad-container.animate {
    animation: popupFadeIn 0.3s ease-out;
}
a
{
    color:#29b372   ;
}
.fs-7
{   
    font-size: 0.7rem !important;
}
.fs-8
{   
    font-size: 0.8rem !important; 
}
.fs-9
{   
    font-size: 0.9rem !important;
}

/* ==========================================
   Admin Panel - Mobil Responsive
========================================== */

/* Mobil Header */
.admin-mobile-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-mobile-header .admin-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #29b372;
    text-decoration: none;
}

.admin-mobile-header .admin-logo i {
    font-size: 1.5rem;
}

/* Mobil Offcanvas */
.offcanvas-start {
    width: 280px !important;
    border-right: 1px solid #e9ecef;
}

.offcanvas-header {
    background: #29b372;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-header .admin-logo {
    color: white;
}

.offcanvas-header .admin-logo i {
    color: white;
}

.offcanvas-body {
    padding: 0;
}

/* Mobil Admin Nav */
.offcanvas-body .admin-nav {
    padding: 1rem 0;
}

.offcanvas-body .admin-nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #6c757d;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
}

.offcanvas-body .admin-nav-item:hover {
    background: #f8f9fa;
    color: #29b372;
    padding-left: 2rem;
}

.offcanvas-body .admin-nav-item.active {
    background: #e3f2fd;
    color: #29b372;
    border-right: 3px solid #29b372;
}

.offcanvas-body .admin-nav-item i {
    font-size: 1rem;
    margin-right: 0.75rem;
    width: 18px;
    text-align: center;
}

/* Mobil menü badge'leri */
.offcanvas-body .admin-nav-item .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Mobil Accordion */
.offcanvas-body .accordion-button {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.8rem;
}

.offcanvas-body .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #29b372;
    box-shadow: none;
}

.offcanvas-body .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.offcanvas-body .accordion-button::after {
    margin-left: auto;
    font-size: 0.8rem;
}

.offcanvas-body .accordion-body {
    padding: 0;
}

/* Mobil Admin Content */
@media (max-width: 992px) {
    .admin-main {
        padding: 0.5rem;
    }
    
    .admin-content {
        margin-left: 0 !important;
        padding-top: 0 !important;
    }
    
    .admin-header {
        padding: 1rem !important;
        border-bottom: 1px solid #e9ecef;
        background: #fff;
    }
    
    .admin-header h5 {
        font-size: 1.1rem !important;
    }
    
    .admin-card {
        margin: 1rem;
        border-radius: 10px;
    }
    
    .admin-card-header {
        padding: 1rem !important;
    }
    
    .admin-card-body {
        padding: 1rem !important;
    }
    
    .admin-card-title {
        font-size: 1rem !important;
    }
    
    /* Mobil tablolar */
    .table-responsive {
        border-radius: 8px;
    }
    
    .table th,
    .table td {
        padding: 0.5rem !important;
        font-size: 0.85rem;
    }
    
    /* Mobil butonlar */
    .btn-group-sm .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Mobil formlar */
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    /* Mobil modal */
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-content {
        border-radius: 10px;
    }
    
    /* Mobil alert */
    .alert {
        margin: 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 576px) {
    .admin-card {
        margin: 0rem;
    }
    
    .admin-header {
        padding: 0.75rem !important;
    }
    
    .admin-header h5 {
        font-size: 1rem !important;
    }
    
    .table th,
    .table td {
        padding: 0.25rem !important;
        font-size: 0.8rem;
    }
    
    .btn-group-sm .btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .alert {
        margin: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Dashboard Mobil Optimizasyonu */
    .stat-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.3px !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
    }
    
    .stat-icon {
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-icon i {
        font-size: 1rem !important;
    }
    
    /* Mobil kartlar için ekstra spacing */
    .g-3 > * {
        padding: 0.375rem !important;
    }
}

/* Dashboard İstatistik Kartları */
.stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.stat-icon i {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mobil Dashboard Kartları */
@media (max-width: 767.98px) {
    .stat-card {
        padding: 0.75rem !important;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* ==========================================
   CKEditor İçerik Stilleri
========================================== */

/* CKEditor içeriği genel stilleri */
.ckeditor-content {
    line-height: 1.8;
    color: #333;
}

.ckeditor-content p {
    margin-bottom: 1rem;
}

.ckeditor-content h1,
.ckeditor-content h2,
.ckeditor-content h3,
.ckeditor-content h4,
.ckeditor-content h5,
.ckeditor-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #29b372;
}

.ckeditor-content h1 {
    font-size: 2rem;
}

.ckeditor-content h2 {
    font-size: 1.75rem;
}

.ckeditor-content h3 {
    font-size: 1.5rem;
}

.ckeditor-content ul,
.ckeditor-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.ckeditor-content li {
    margin-bottom: 0.5rem;
}

.ckeditor-content blockquote {
    border-left: 4px solid #29b372;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.ckeditor-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.ckeditor-content table th,
.ckeditor-content table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.ckeditor-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.ckeditor-content a {
    color: #29b372;
    text-decoration: none;
}

.ckeditor-content a:hover {
    text-decoration: underline;
}

/* CKEditor resim stilleri */
.ckeditor-content figure.image {
    margin: 1.5rem 0;
    text-align: center;
}

.ckeditor-content figure.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ckeditor-content figure.image figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsive resimler - sabit boyutları kaldır */
.ckeditor-content img {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    aspect-ratio: unset !important;
}

/* Mobil için ekstra düzenlemeler */
@media (max-width: 768px) {
    .ckeditor-content h1 {
        font-size: 1.75rem;
    }
    
    .ckeditor-content h2 {
        font-size: 1.5rem;
    }
    
    .ckeditor-content h3 {
        font-size: 1.25rem;
    }
    
    .ckeditor-content figure.image {
        margin: 1rem 0;
    }
    
    .ckeditor-content table {
        font-size: 0.9rem;
    }
    
    .ckeditor-content table th,
    .ckeditor-content table td {
        padding: 0.5rem;
    }
}

/* Mobil Sepet Düzeni */
@media (max-width: 991.98px) {
    .cart-item-mobile {
        padding: 1rem !important;
    }
    
    .cart-item-mobile .flex-grow-1 {
        width: 100% !important;
    }
    
    .cart-item-mobile h6 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cart-item-mobile .input-group {
        width: 100px !important;
    }
    
    .cart-item-mobile .input-group .form-control {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cart-item-mobile .input-group .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .cart-item-mobile .btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Mobilde border-bottom'u kaldır, padding ekle */
    .cart-item-mobile:not(:last-child) {
        border-bottom: 1px solid #dee2e6 !important;
        margin-bottom: 0;
    }
    
    .cart-item-mobile:last-child {
        border-bottom: none !important;
    }
}

/* Kategori Tabs - Scrollable Yapı */
.category-tabs-wrapper {
    position: relative;
    padding: 0 40px;
}

.category-tabs-container {
    overflow: hidden;
    position: relative;
}

.category-tabs-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #dee2e6;
}

.category-tabs-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-tabs-scroll .nav-item {
    flex-shrink: 0;
    margin: 0;
}

.category-tabs-scroll .nav-link {
    white-space: nowrap;
    padding: 0.75rem 1.25rem;
    border: none;
    border-bottom: 2px solid transparent;
    color: #165341;
    background: transparent;
    transition: all 0.3s 
ease;
    font-weight: 700;
}

.category-tabs-scroll .nav-link:hover {
    color: #0d6efd;
    border-bottom-color: #dee2e6;
}

.category-tabs-scroll .nav-link.active {
    color: #000;
    border-bottom-color: #000;
    background: transparent;
}

.category-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-scroll-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.category-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.category-scroll-left {
    left: 0;
}

.category-scroll-right {
    right: 0;
}

.category-scroll-btn i {
    font-size: 1.2rem;
    color: #6c757d;
}

.category-scroll-btn:hover i {
    color: #0d6efd;
}

.category-scroll-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobil Görünüm */
@media (max-width: 991.98px) {
    .donations-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .category-tabs-wrapper {
        padding: 0 35px;
    }
    
    .category-scroll-btn {
        width: 32px;
        height: 32px;
    }
    
    .category-scroll-btn i {
        font-size: 1rem;
    }
    
    .category-tabs-scroll .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
}

/* ==========================================
   INLINE STYLES TO CSS CLASSES
========================================== */

/* Image cover styles */
.img-cover-300 {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.img-cover-400 {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.img-cover-150 {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.img-cover-200 {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.img-cover-250 {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Square image sizes */
.img-square-60 {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.img-square-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.img-square-150 {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Icon sizes */
.icon-4rem {
    font-size: 4rem;
}

.icon-5rem {
    font-size: 5rem;
}

/* Progress bar heights */
.progress-thin {
    height: 6px;
}

.progress-medium {
    height: 12px;
}

/* Cursor pointer */
.cursor-pointer {
    cursor: pointer;
}

/* Background colors */
.bg-primary-custom {
    background-color: #0189a0;
}

/* Font sizes */
.font-size-1-1 {
    font-size: 1.1rem;
}

.font-size-1-2 {
    font-size: 1.2rem;
}

/* Sticky top positions */
.sticky-top-100 {
    position: sticky;
    top: 100px;
}

/* Input group widths */
.input-group-100 {
    width: 100px;
}

.input-group-120 {
    width: 120px;
}

/* Display utilities */
.display-none {
    display: none;
}

/* ==========================================
   BREADCRUMB COMPACT
========================================== */
.breadcrumb-compact {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.breadcrumb-compact::-webkit-scrollbar {
    height: 4px;
}

.breadcrumb-compact::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.breadcrumb-compact::-webkit-scrollbar-thumb {
    background: #29b372;
    border-radius: 2px;
}

.breadcrumb-compact .breadcrumb {
    font-size: 0.85rem;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.breadcrumb-compact .breadcrumb-item {
    font-size: 0.85rem;
}

.breadcrumb-compact .breadcrumb-item + .breadcrumb-item::before {
    font-size: 0.85rem;
    padding: 0 0.5rem;
}

.breadcrumb-compact .breadcrumb-item a {
    font-size: 0.85rem;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.breadcrumb-compact .breadcrumb-item.active {
    font-size: 0.85rem;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb-compact .breadcrumb-item i {
    font-size: 1rem;
    color: #29b372;
}

.breadcrumb-compact .breadcrumb-item a:hover i {
    color: #764ba2;
}

/* ==========================================
   DONATION DETAIL PAGE - MOBILE PADDING
========================================== */
@media (max-width: 767.98px) {
    .donations-view .admin-card {
        padding: 1rem;
    }
}

.footer-bgfooter
{
    
    background:url('../../assets/images/footer-bg.jpg') no-repeat center center;
    background-size: cover;
}

/* Kadınlara Özel Alan Bölümü */
.kadinlara-ozel-alan-section {
    background-image: url('../images/hero-bg-shape.png');
    background-color: #131619;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.kadinlara-ozel-alan-section  h2{
    line-height: 1.8;
    font-size: 4rem;
    color: #fff;
}
.kadinlara-ozel-alan-text {
    line-height: 1.8;
    font-size: 1.6rem;
    color: #fff;
}

@media (max-width: 768px) {
    .kadinlara-ozel-alan-section h2 {
        line-height: 1.8;
        font-size: 2em;
        color: #fff;
    }
    
    .kadinlara-ozel-alan-text {
        line-height: 1.8;
        font-size: 1rem;
        color: #fff;
    }
}

/* Life Express Neler Bekliyor Section */
.life-express-bekliyor-title {
    font-weight: 900;
    font-size: 5rem;
}

@media (max-width: 768px) {
    .life-express-bekliyor-title {
        font-size: 2rem;
    }
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.video-hero-section .container {
    position: relative;
    z-index: 3;
}

.video-hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-hero-btn {
    background: linear-gradient(135deg, #29b373 0%, #1e8a5a 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 179, 115, 0.4);
}

.video-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(41, 179, 115, 0.6);
    color: #fff;
}

@media (max-width: 768px) {
    .video-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .video-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-hero-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* Kulüpler Listesi */
.branch-short-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    min-height: 4.5em;
}

/* Değişime Hazır Ol Section */
.degisime-hazir-ol-section {
    display: none;
}

.degisime-hazir-ol-title {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    position: relative;
    height: 1em;
}

.degisime-hazir-ol-word {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: degisime-hazir-ol-animation 9s infinite;
}

.degisime-hazir-ol-word:nth-child(1) {
    animation-delay: 0s;
    color: #29b373;
}

.degisime-hazir-ol-word:nth-child(2) {
    animation-delay: 3s;
    color: #29b373;
}

.degisime-hazir-ol-word:nth-child(3) {
    animation-delay: 6s;
    color: #29b373;
}

@keyframes degisime-hazir-ol-animation {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

@media (max-width: 768px) {
    .degisime-hazir-ol-title {
        font-size: 4rem;
    }
}

/* İçindeki Gücü Keşfet Section */
.icindeki-gucu-kesfet-section {
    min-height: 30vh;
    position: relative;
    background-image: url('https://lifeexpressfitness.com/wp-content/uploads/2025/03/Asset-8@8x.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.icindeki-gucu-sol {
    min-height: 30vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.icindeki-gucu-graphic {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 500px;
    opacity: 0.8;
    z-index: 1;
}

.icindeki-gucu-content {
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px !important;
}

.icindeki-gucu-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icindeki-gucu-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 90%;
    opacity: 0.95;
}

.icindeki-gucu-btn {
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-width: 2px;
    text-transform: uppercase;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
}

.icindeki-gucu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

.icindeki-gucu-sag {
    min-height: 30vh;
    padding: 0 !important;
}

.icindeki-gucu-image-placeholder {
    min-height:30vh;
    background: #f5f5f5;
}

.icindeki-gucu-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .icindeki-gucu-sol,
    .icindeki-gucu-sag {
        min-height: 60vh;
    }
    
    .icindeki-gucu-content {
        min-height: 60vh;
        padding: 60px 40px !important;
    }
    
    .icindeki-gucu-title {
        font-size: 2.5rem;
    }
    
    .icindeki-gucu-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .icindeki-gucu-graphic {
        width: 150px;
        height: 400px;
        left: -30px;
    }
}

@media (max-width: 768px) {
    .icindeki-gucu-kesfet-section {
        min-height: auto;
    }
    
    .icindeki-gucu-sol,
    .icindeki-gucu-sag {
        min-height: 50vh;
    }
    
    .icindeki-gucu-content {
        min-height: 50vh;
        padding: 40px 30px !important;
    }
    
    .icindeki-gucu-title {
        font-size: 2rem;
    }
    
    .icindeki-gucu-text {
        font-size: 0.95rem;
    }
    
    .icindeki-gucu-graphic {
        display: none;
    }
    
    .icindeki-gucu-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Spora Bahane Bırakmadık Section */
.spora-bahane-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #131619;
}

.spora-bahane-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.spora-bahane-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.spora-bahane-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .spora-bahane-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .spora-bahane-title {
        font-size: 2rem;
    }
    
    .spora-bahane-subtitle {
        font-size: 1.5rem;
    }
    
    .spora-bahane-description {
        font-size: 1rem;
    }
}

/* Grup Dersleri Kayma Bölümü */
.group-classes-marquee-section {
    background-color: #29b373;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.group-classes-marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.group-classes-marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.group-classes-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 1.1rem;
    margin: 0 1.5rem;
    color: #1a1a1a;
}

.group-classes-item a {
    color: #000000;
    font-weight: 700;
    transition: color 0.3s 
ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 2rem;
}

.group-classes-item a:hover {
    color: #000;
}

.group-classes-item .bi-circle-fill {
    color: #1a1a1a;
    font-size: 0.4rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover durumunda animasyonu durdur */
.group-classes-marquee-section:hover .group-classes-marquee-wrapper {
    animation-play-state: paused;
}

/* Mobil için daha hızlı animasyon */
@media (max-width: 768px) {
    .group-classes-marquee-wrapper {
        animation-duration: 30s;
    }
    
    .group-classes-item {
        font-size: 0.9rem;
        margin: 0 1rem;
    }
}


.custom-container {
    width: 90%;         /* container'dan geniş */
    max-width: 1500px;  /* container-fluid kadar genişlemez */
    margin: 0 auto;     /* ortalama */
}