/* Ana Renkler */
:root {
    --primary-color: #2e8a57; /* Ana yeşil ton */
    --primary-light: #4ead78; /* Açık yeşil */
    --primary-dark: #236945; /* Koyu yeşil */
    --secondary-color: #3474b4; /* Mavi ton */
    --secondary-light: #4c8dcb; /* Açık mavi */
    --secondary-dark: #285a8e; /* Koyu mavi */
    --neutral-color: #6c757d; /* Nötr gri */
    --neutral-light: #adb5bd; /* Açık gri */
    --neutral-dark: #495057; /* Koyu gri */
    --light-bg: #f8f9fa; /* Açık arka plan */
    --card-bg: #ffffff; /* Kart arka planı */
    --text-color: #333333; /* Ana metin rengi */
    --border-color: #e9ecef; /* Kenarlık rengi */
}

/* Bootstrap 4 uyumluluk için özel container */
.custom-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 1200px) {
    .custom-container {
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    .custom-container {
        max-width: 1340px;
    }
}

.donation-section {
    background-color: var(--light-bg);
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Proje Tabları */
.project-tabs {
    margin-bottom: 40px;
    position: relative;
    border: none;
    background: transparent;
    box-shadow: none;
}

.project-tab-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow-x: auto;
    scrollbar-width: thin;
}

.project-tab-list::-webkit-scrollbar {
    height: 4px;
}

.project-tab-list::-webkit-scrollbar-track {
    background: var(--border-color);
}

.project-tab-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.project-tab-list .nav-item {
    margin: 0;
}

.project-tab-list .nav-link {
    position: relative;
    border: none;
    padding: 15px 25px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
    background: transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-bottom: -1px;
}

.project-tab-list .nav-link i,
.project-tab-list .nav-link img.project-icon {
    margin-right: 10px;
    font-size: 20px;
}

.project-tab-list .nav-link i {
    color: var(--primary-color);
}

.project-tab-list .nav-link img.project-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.project-tab-list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.project-tab-list .nav-link.active {
    color: var(--primary-color);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-bottom: none;
}

.project-tab-list .nav-link.active::after {
    background: var(--primary-color);
}

.project-tab-list .nav-link.active i {
    color: var(--primary-color);
}

.project-tab-list .nav-link:hover:not(.active) {
    color: var(--secondary-color);
}

.project-tab-list .nav-link:hover:not(.active) i {
    color: var(--secondary-color);
}

.project-tab-list .nav-link:hover:not(.active)::after {
    background: var(--secondary-color);
    opacity: 0.5;
}

/* Proje İçeriği */
.project-content {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.project-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-image:hover img {
    transform: scale(1.02);
}

.project-details {
    padding: 0px 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(46, 138, 87, 0.05), rgba(194, 160, 85, 0.05));
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 15px;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.project-description {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

/* Bağış Kartları Bölümü */
.donation-types {
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(46, 138, 87, 0.03), rgba(194, 160, 85, 0.03));
    border-radius: 0 0 15px 15px;
    position: relative;
}

/* Bağış türleri kartları arası mesafe ayarlama */
.donation-types .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

/* Yeni Bağış Kartları - Minimal Tasarım */
.donation-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: relative;
}

.donation-card:hover {
    transform: none;
    box-shadow: 0 5px 12px rgba(46, 138, 87, 0.1);
    border-color: rgba(46, 138, 87, 0.3);
}

.donation-card-image {
    position: relative;
    overflow: hidden;
}

.donation-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.donation-card:hover .donation-card-image img {
    transform: scale(1.1);
}

.donation-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.donation-card:hover .donation-card-image::after {
    opacity: 1;
}

.donation-badge {
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 2;
}

.badge-fixed, 
.badge-custom {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.badge-fixed {
    background: var(--secondary-color);
}

.badge-custom {
    background: #c2a055;
}

.donation-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.donation-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px;
}

.donation-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.donation-card-description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.donation-card-price {
    margin-bottom: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.price-display {
    text-align: center;
}

.price-amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    display: block;
}

.price-input .price-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.price-input .form-control {
    height: 45px;
    font-size: 18px;
    font-weight: 600;
    color: #2e8a57;
    border: 2px solid rgba(46, 138, 87, 0.3);
    border-radius: 8px 0 0 8px;
    text-align: center;
}

.price-input .input-group-text {
    background-color: #2e8a57;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
}

.donation-card-actions {
    margin-top: auto;
}

.quantity-control {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.quantity-control label {
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
    display: block;
    font-size: 13px;
}

.quantity-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.quantity-buttons button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #555;
    border: none;
    font-size: 14px;
    padding: 0;
    transition: all 0.2s ease;
}

.quantity-buttons button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.quantity-input {
    flex: 1;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #333;
    padding: 0 10px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 15px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: 0 3px 8px rgba(35, 105, 69, 0.12);
}

.add-to-cart-btn::before {
    display: none;
}

.add-to-cart-btn i {
    margin-right: 6px;
    font-size: 14px;
}

/* Projects Grid */
.projects-grid-container {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.project-card {
    flex: 0 0 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.project-card-inner {
    padding: 15px 8px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 138, 87, 0.1);
    height: 100%;
    min-height: 90px;
}

.project-card.active .project-card-inner {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(46, 138, 87, 0.15);
}

.project-card-icon {
    margin-bottom: 10px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.project-card img.project-icon {
    height: 36px;
    width: auto;
    max-width: 36px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.project-card-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--primary-dark);
    margin: 0;
    transition: all 0.3s ease;
}

.project-card.active .project-card-title {
    color: #ffffff;
}

.project-card.active i,
.project-card.active img.project-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.project-card:hover:not(.active) .project-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(46, 138, 87, 0.1);
    border-color: rgba(46, 138, 87, 0.3);
}

.project-card:hover:not(.active) i,
.project-card:hover:not(.active) img.project-icon {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1400px) {
    .project-card {
        flex: 0 0 120px;
    }
}

@media (max-width: 1200px) {
    .project-card {
        flex: 0 0 120px;
    }
}

@media (max-width: 991px) {
    .project-card {
        flex: 0 0 110px;
    }
    
    .project-card-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        gap: 10px;
    }
    
    .project-card {
        flex: 0 0 100px;
    }
    
    .project-card-inner {
        padding: 12px 8px;
        min-height: 90px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        gap: 8px;
    }
    
    .project-card {
        flex: 0 0 90px;
    }
    
    .project-card-inner {
        padding: 10px 5px;
    }
    
    .project-card-icon {
        margin-bottom: 8px;
        height: 30px;
    }
    
    .project-card i {
        font-size: 22px;
    }
    
    .project-card img.project-icon {
        height: 30px;
        max-width: 30px;
    }
    
    .project-card-title {
        font-size: 14px;
    }
}

/* Sepet */
.donation-cart {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(46, 138, 87, 0.1);
    overflow: hidden;
    border: 1px solid rgba(46, 138, 87, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.sticky-cart {
    position: sticky;
    top: 90px;
}

.cart-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-header h4 i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.9);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

.cart-items {
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-dark) #f0f0f0;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--secondary-dark);
    border-radius: 10px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: #888;
    text-align: center;
}

.empty-cart i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
}

.empty-cart p {
    font-size: 16px;
    margin: 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.cart-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-info {
    flex: 1;
    padding-right: 12px;
}

.cart-item-title {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-item-details {
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.cart-item-price {
    margin-right: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.cart-item-quantity-controls {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    width: fit-content;
}

.cart-item-quantity-decrease,
.cart-item-quantity-increase {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f0f0f0;
    color: #555;
    font-size: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cart-item-quantity-decrease:hover,
.cart-item-quantity-increase:hover {
    background: var(--secondary-color);
    color: #fff;
}

.cart-item-quantity-input {
    width: 40px;
    height: 26px;
    text-align: center;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2e8a57;
}

.cart-item-remove {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    background: #dc3545;
    color: #fff;
}

.cart-summary {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.summary-row {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555;
}

.summary-row.subtotal-row {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 5px;
    padding-bottom: 12px;
}

.summary-row.total-row {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    padding-top: 12px;
    border-top: 1px dashed #ddd;
    margin-top: 5px;
}

.cart-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.empty-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #fff;
    color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-cart-btn:hover:not(:disabled) {
    background: #dc3545;
    color: #fff;
}

.empty-cart-btn i {
    margin-right: 8px;
}

.empty-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.proceed-to-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.proceed-to-payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.proceed-to-payment:hover:not(:disabled)::before {
    opacity: 1;
}

.proceed-to-payment:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 138, 87, 0.2);
}

.proceed-to-payment i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.proceed-to-payment:hover:not(:disabled) i {
    transform: translateX(5px);
}

.proceed-to-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Proje Slider */
.projects-slider-container {
    position: relative;
    margin-bottom: 30px;
    padding: 0 40px;
}

.projects-slider {
    position: relative;
}

.projects-slider .owl-stage {
    display: flex;
    align-items: center;
}

.projects-slider .owl-item {
    padding: 5px;
}

.project-slide {
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-slide-inner {
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 138, 87, 0.1);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.project-slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 138, 87, 0.05), rgba(46, 138, 87, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-slide:hover:not(.active) .project-slide-inner::before {
    opacity: 1;
}

.project-slide-icon {
    margin-bottom: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-slide-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.project-slide.active .project-slide-inner {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(46, 138, 87, 0.15);
}

.project-slide.active .project-slide-title {
    color: #ffffff;
}

.project-slide:hover:not(.active) .project-slide-inner {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(46, 138, 87, 0.1);
    border-color: rgba(46, 138, 87, 0.3);
}

.project-slide i,
.project-slide img.project-icon {
    margin-right: 0;
    transition: all 0.3s ease;
}

.project-slide i {
    font-size: 28px;
    color: var(--primary-color);
}

.project-slide img.project-icon {
    height: 40px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
}

.project-slide.active i,
.project-slide.active img.project-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.project-slide:hover:not(.active) i,
.project-slide:hover:not(.active) img.project-icon {
    transform: scale(1.1);
}

/* Owl Carousel Navigation */
.projects-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.projects-slider .owl-nav button {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 11;
}

.projects-slider .owl-nav button::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.projects-slider .owl-nav button.owl-prev::before {
    content: "\f104";
}

.projects-slider .owl-nav button.owl-next::before {
    content: "\f105";
}

.projects-slider .owl-nav button:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.projects-slider .owl-nav button.owl-prev {
    margin-left: -40px;
}

.projects-slider .owl-nav button.owl-next {
    margin-right: -40px;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .projects-slider-container {
        padding: 0 30px;
    }
    
    .project-slide-inner {
        padding: 15px 12px;
    }
    
    .project-slide-title {
        font-size: 13px;
    }
    
    .project-slide-icon {
        height: 35px;
    }
    
    .project-slide i {
        font-size: 24px;
    }
    
    .project-slide img.project-icon {
        height: 35px;
        max-width: 35px;
    }
}

@media (max-width: 767px) {
    .projects-slider-container {
        padding: 0 20px;
    }
    
    .project-slide-inner {
        padding: 12px 10px;
    }
    
    .project-slide-title {
        font-size: 12px;
    }
    
    .project-slide-icon {
        height: 30px;
        margin-bottom: 10px;
    }
    
    .project-slide i {
        font-size: 22px;
    }
    
    .project-slide img.project-icon {
        height: 30px;
        max-width: 30px;
    }
    
    .projects-slider .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .projects-slider .owl-nav button.owl-prev {
        margin-left: -30px;
    }
    
    .projects-slider .owl-nav button.owl-next {
        margin-right: -30px;
    }
}

/* Owl Carousel Dots */
.projects-slider .owl-dots {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.projects-slider .owl-dot {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.projects-slider .owl-dot:hover,
.projects-slider .owl-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Modal Stilleri */
.modal-content {
    overflow: hidden;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-bottom: none;
    padding: 15px 20px;
}

.modal-title {
    font-weight: 600;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close-white:hover {
    opacity: 1;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 15px 20px;
}

#confirmDonation {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#confirmDonation:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

#cancelDonation {
    color: var(--neutral-dark);
    background-color: #f8f9fa;
    border-color: #eee;
}

#cancelDonation:hover {
    background-color: #eee;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 138, 87, 0.25);
}

.form-control[readonly] {
    background-color: #f8f9fa;
}

textarea.form-control {
    resize: none;
}