/* ============================================
   İkram Derneği – Yeşil-Sarı Tema
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Ana renkler */
    --ikram-green-900: #0d3d1a;
    --ikram-green-700: #1a5c2e;
    --ikram-green-600: #228b3a;
    --ikram-green-500: #2e9e47;
    --ikram-green-400: #4caf6a;
    --ikram-green-100: #e2f0e6;
    --ikram-yellow-600: #c9a227;
    --ikram-yellow-500: #e6b82e;
    --ikram-yellow-400: #f0c84a;
    --ikram-yellow-300: #f7dc6a;
    --ikram-yellow-100: #fef9e0;
    --ikram-white: #fefefe;
    --ikram-gray-100: #f5f5f5;
    --ikram-gray-200: #e8e8e8;
    --ikram-gray-600: #555;
    --ikram-gray-800: #2c2c2c;
    /* Kullanım */
    --color-primary: var(--ikram-green-700);
    --color-primary-hover: var(--ikram-green-600);
    --color-accent: var(--ikram-yellow-500);
    --color-accent-hover: var(--ikram-yellow-400);
    --color-bg: var(--ikram-white);
    --color-bg-alt: var(--ikram-gray-100);
    --color-text: var(--ikram-gray-800);
    --color-text-muted: var(--ikram-gray-600);
    /* Tipografi */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    /* Gölge & radius */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    margin: 0;
    padding: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ikram-green-900);
}

/* ========== Header & Nav ========== */
.ikram-header {
    background: linear-gradient(135deg, var(--ikram-green-800, #1a5c2e) 0%, var(--ikram-green-700) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1030;
}

    .ikram-header .navbar {
        padding: 0.6rem 0;
        padding-top: 1rem;
    }

.ikram-header-container {
    position: relative;
    min-height: 64px;
}

/* Header logo – sadece logo, yuvarlak, absolute */
.ikram-brand {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    text-decoration: none;
    flex-shrink: 0;
    margin-top: 1.6rem; /* logo yukarıdan ~25px aşağı */
}

    .ikram-brand:hover .ikram-logo-header {
        opacity: 0.92;
    }

.ikram-logo-header {
    position: absolute;
    left: 0;
    top: 40px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Header butonları arası boşluk */
.ikram-header-buttons {
    gap: 1.25rem;
}

.ikram-logo-footer {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.95;
    display: block;
}

.ikram-nav .nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

    .ikram-nav .nav-link:hover {
        color: var(--ikram-yellow-300) !important;
        background: rgba(255,255,255,0.1);
    }

    .ikram-nav .nav-link.active {
        background: rgba(255,255,255,0.15);
        color: var(--ikram-yellow-300) !important;
    }

.ikram-btn-donate-nav {
    background: var(--ikram-yellow-500);
    color: var(--ikram-green-900) !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius);
    border: none;
    transition: background 0.2s, transform 0.15s;
}

    .ikram-btn-donate-nav:hover {
        background: var(--ikram-yellow-400);
        color: var(--ikram-green-900) !important;
        transform: translateY(-1px);
    }

.ikram-btn-login {
    color: rgba(255,255,255,0.95) !important;
    font-weight: 500;
}

    .ikram-btn-login:hover {
        color: var(--ikram-yellow-300) !important;
    }

.navbar-toggler {
    border-color: rgba(255,255,255,0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobilde logo küçült */
@media (max-width: 991.98px) {
    .ikram-brand {
        width: 90px;
        height: 90px;
        margin-top: 0;
    }

    .ikram-logo-header {
        width: 90px;
        height: 90px;
        position: unset !important;
    }

    .ikram-header .navbar {
        padding-top: 0;
    }
    .carousel-item img{
        height: 500px;
    }
    .ikram-carousel-caption {
        padding-bottom: 1.5rem !important;
    }
}

@media (min-width: 992px) {
    .ikram-header-container {
        position: relative;
    }

    .ikram-brand {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        margin-top: 0;
    }

    .ikram-navbar-collapse {
        margin-left: 200px;
    }
}

/* ========== Buttons – Bootstrap override (profesyonel görünüm) ========== */
.btn {
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    padding: 0.55rem 1.25rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
}

    .btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(26, 92, 46, 0.35);
    }

.btn-primary {
    background: var(--ikram-green-700);
    color: white;
    border: none;
}

    .btn-primary:hover {
        background: var(--ikram-green-600);
        color: white;
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
    }

.btn-secondary {
    background: var(--ikram-gray-200);
    color: var(--ikram-gray-800);
}

    .btn-secondary:hover {
        background: var(--ikram-gray-600);
        color: white;
        transform: translateY(-1px);
    }

.btn-success {
    background: var(--ikram-green-600);
    color: white;
}

    .btn-success:hover {
        background: var(--ikram-green-500);
        color: white;
        transform: translateY(-1px);
    }

.btn-outline-primary {
    background: transparent;
    color: var(--ikram-green-700);
    border: 2px solid var(--ikram-green-600);
}

    .btn-outline-primary:hover {
        background: var(--ikram-green-100);
        color: var(--ikram-green-800);
        border-color: var(--ikram-green-600);
        transform: translateY(-1px);
    }

.btn-outline-secondary {
    background: transparent;
    color: var(--ikram-gray-600);
    border: 2px solid var(--ikram-gray-300);
}

    .btn-outline-secondary:hover {
        background: var(--ikram-gray-100);
        color: var(--ikram-gray-800);
        border-color: var(--ikram-gray-400);
    }

.btn-link {
    font-weight: 600;
    color: var(--ikram-green-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
}

    .btn-link:hover {
        color: var(--ikram-green-700);
        text-decoration: underline;
        background: var(--ikram-green-100);
    }

.btn-sm {
    padding: 0.35rem 0.9rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.7rem 1.6rem;
    font-size: 1.05rem;
}

/* İkram özel butonlar (mevcut) */
.btn-ikram-primary {
    background: var(--color-primary);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
}

    .btn-ikram-primary:hover {
        background: var(--color-primary-hover);
        color: white;
        transform: translateY(-1px);
    }

.btn-ikram-accent {
    background: var(--color-accent);
    color: var(--ikram-green-900);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
}

    .btn-ikram-accent:hover {
        background: var(--color-accent-hover);
        color: var(--ikram-green-900);
        transform: translateY(-1px);
    }

/* ========== Carousel Overlay ========== */
#ikramCarousel {
  position: relative;
}
#ikramCarousel .carousel-item {
  position: relative;
}
.ikram-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 40, 18, 0.85) 0%,
    rgba(10, 40, 18, 0.45) 40%,
    rgba(10, 40, 18, 0.15) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
.ikram-carousel-caption {
  z-index: 2;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 1.5rem 2rem;
  display: block !important;
}
.ikram-carousel-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  letter-spacing: -0.02em;
  margin-bottom: .35rem;
}
.ikram-carousel-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
  margin-bottom: 0;
}
.ikram-carousel-btn {
  background: var(--ikram-green-600, #2e7d32);
  color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  padding: .5rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  border-radius: .5rem;
  transition: all .25s;
}
.ikram-carousel-btn:hover {
  background: var(--ikram-green-700, #1b5e20);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}
#ikramCarousel .carousel-indicators {
  z-index: 3;
  margin-bottom: 1rem;
}
#ikramCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  opacity: .7;
  transition: all .3s;
}
#ikramCarousel .carousel-indicators button.active {
  background: #fff;
  border-color: #fff;
  opacity: 1;
  transform: scale(1.2);
}
#ikramCarousel .carousel-control-prev,
#ikramCarousel .carousel-control-next {
  z-index: 3;
  width: 3rem;
  opacity: .7;
  transition: opacity .2s;
}
#ikramCarousel .carousel-control-prev:hover,
#ikramCarousel .carousel-control-next:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .ikram-carousel-title {
    font-size: 2.75rem;
  }
  .ikram-carousel-subtitle {
    font-size: 1.15rem;
  }
  .ikram-carousel-caption {
    bottom: 3rem;
  }
}

/* ========== Hero / Quick Donation ========== */
.ikram-hero {
    background: linear-gradient(160deg, var(--ikram-green-100) 0%, var(--ikram-yellow-100) 100%);
    padding: 2.5rem 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 2rem;
}

.ikram-quick-donate {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    border: 1px solid var(--ikram-gray-200);
}

    .ikram-quick-donate label {
        font-weight: 600;
        color: var(--ikram-green-800, #1a5c2e);
    }

    .ikram-quick-donate .form-select,
    .ikram-quick-donate .form-control {
        border-radius: var(--radius);
        border-color: var(--ikram-gray-200);
    }

        .ikram-quick-donate .form-select:focus,
        .ikram-quick-donate .form-control:focus {
            border-color: var(--ikram-green-500);
            box-shadow: 0 0 0 0.2rem rgba(44, 158, 71, 0.2);
        }

/* ========== Section titles ========== */
.ikram-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ikram-green-900);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

    .ikram-section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 56px;
        height: 4px;
        background: var(--ikram-yellow-500);
        border-radius: 2px;
    }

/* ========== Cards ========== */
.ikram-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ikram-gray-200);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
}

    .ikram-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .ikram-card .card-img-top {
        height: 180px;
        object-fit: cover;
        background: var(--ikram-gray-200);
    }

    .ikram-card .card-body {
        padding: 1.25rem;
    }

    .ikram-card .card-title {
        font-family: var(--font-heading);
        font-weight: 600;
        color: var(--ikram-green-800, #1a5c2e);
        font-size: 1.1rem;
    }

    .ikram-card .card-text {
        color: var(--color-text-muted);
        font-size: 0.95rem;
    }

/* ========== Progress (kampanya) ========== */
.ikram-campaign {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ikram-gray-200);
    padding: 1.5rem;
    height: 100%;
}

    .ikram-campaign .progress {
        height: 10px;
        border-radius: 5px;
        background: var(--ikram-gray-200);
    }

    .ikram-campaign .progress-bar {
        background: linear-gradient(90deg, var(--ikram-green-500), var(--ikram-yellow-500));
        border-radius: 5px;
    }

    .ikram-campaign .campaign-title {
        font-weight: 600;
        color: var(--ikram-green-800, #1a5c2e);
        margin-bottom: 0.5rem;
    }

    .ikram-campaign .campaign-meta {
        font-size: 0.9rem;
        color: var(--color-text-muted);
        margin-bottom: 0.75rem;
    }

/* ========== Footer ========== */
.ikram-footer {
    background: linear-gradient(180deg, var(--ikram-green-800, #1a5c2e) 0%, var(--ikram-green-900) 100%);
    color: rgba(255,255,255,0.9);
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
}

    .ikram-footer h5 {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .ikram-footer a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        transition: color 0.2s;
    }

        .ikram-footer a:hover {
            color: var(--ikram-yellow-300);
        }

    .ikram-footer .footer-placeholder {
        color: rgba(255,255,255,0.6);
        font-style: italic;
    }

    .ikram-footer .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-top: 2rem;
        padding-top: 1rem;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
    }

/* ========== Blog / İlim Köşesi ========== */
.ikram-blog-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--ikram-gray-200);
    overflow: hidden;
    transition: box-shadow 0.2s;
    height: 100%;
}

    .ikram-blog-card:hover {
        box-shadow: var(--shadow-md);
    }

    .ikram-blog-card .blog-date {
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

    .ikram-blog-card .blog-title {
        font-weight: 600;
        color: var(--ikram-green-800, #1a5c2e);
        font-size: 1rem;
    }

    .ikram-blog-card .btn-link {
        color: var(--ikram-green-600);
        font-weight: 500;
    }

        .ikram-blog-card .btn-link:hover {
            color: var(--ikram-green-700);
        }

/* ========== FAQ ========== */
.ikram-faq .accordion-button {
    font-weight: 600;
    color: var(--ikram-green-800, #1a5c2e);
    background: var(--ikram-gray-100);
    border: none;
}

    .ikram-faq .accordion-button:not(.collapsed) {
        background: var(--ikram-green-100);
        color: var(--ikram-green-800, #1a5c2e);
        box-shadow: none;
    }

    .ikram-faq .accordion-button:focus {
        box-shadow: 0 0 0 0.2rem rgba(44, 158, 71, 0.25);
        border-color: transparent;
    }

.ikram-faq .accordion-body {
    background: white;
    color: var(--color-text);
}

/* ========== Utility ========== */
.ikram-bg-alt {
    background: var(--color-bg-alt);
}

/* ========== Sayfa hero (alt sayfalar) – profesyonel başlık alanı ========== */
.ikram-page-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ikram-green-900);
    color: white;
    margin-bottom: 2.5rem;
    overflow: hidden;
    border-bottom: 4px solid var(--ikram-yellow-500);
    background-image: url("/images/gallery/dernek-dis.webp");
    background-size: cover;
    background-position: center;
}

    .ikram-page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(26, 92, 46, 0.88) 0%, rgba(15, 61, 30, 0.92) 100%);
        pointer-events: none;
    }

    .ikram-page-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.6;
        pointer-events: none;
    }

    .ikram-page-hero .ikram-page-hero-bg {
        position: absolute;
        inset: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        opacity: 0.35;
    }

    .ikram-page-hero .ikram-page-hero-inner {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 2rem 1rem;
    }

    .ikram-page-hero h1 {
        color: white;
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 0.35rem;
        letter-spacing: -0.02em;
    }

    .ikram-page-hero .ikram-page-hero-inner > p {
        font-size: 0.95rem;
        opacity: 0.88;
        margin: 0;
    }

    .ikram-page-hero .breadcrumb {
        background: none;
        padding: 0;
        margin: 0 0 0.75rem 0;
        justify-content: center;
        font-size: 0.85rem;
    }

    .ikram-page-hero .breadcrumb-item a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
    }

    .ikram-page-hero .breadcrumb-item.active {
        color: var(--ikram-yellow-300);
    }

/* Fotoğraf alanları – placeholder ve gerçek görsel */
.ikram-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ikram-gray-200);
}

.ikram-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(145deg, var(--ikram-gray-100) 0%, var(--ikram-gray-200) 100%);
    border: 2px dashed var(--ikram-gray-200);
}

    .ikram-img-placeholder.ratio-16x9 {
        aspect-ratio: 16/9;
    }

    .ikram-img-placeholder.ratio-4x3 {
        aspect-ratio: 4/3;
    }

    .ikram-img-placeholder.ratio-1x1 {
        aspect-ratio: 1/1;
    }

    .ikram-img-placeholder.ratio-card {
        aspect-ratio: 4/3;
        min-height: 180px;
    }

.ikram-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ikram-img-logo {
    object-fit: contain;
    padding: 1rem;
    background: var(--ikram-gray-100);
}

/* Galeri grid */
.ikram-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

    .ikram-gallery .ikram-img-wrap {
        aspect-ratio: 4/3;
    }

/* İçerik sayfası gövde */
.ikram-page-body {
    margin-bottom: 3rem;
}

    .ikram-page-body .lead {
        color: var(--color-text-muted);
        font-size: 1.1rem;
    }

.text-ikram-green {
    color: var(--ikram-green-700);
    font-weight: 600;
}

.ikram-bank-info {
    background: var(--ikram-green-100);
    border: 1px solid var(--ikram-green-400);
    color: var(--ikram-gray-800);
}

/* ========== Ödeme sayfası ========== */
.ikram-payment-summary {
    background: white;
    border: 1px solid var(--ikram-gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.ikram-payment-tabs .nav-link {
    font-weight: 600;
    color: var(--color-text-muted);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
}

    .ikram-payment-tabs .nav-link:hover {
        color: var(--ikram-green-700);
        border-color: transparent;
    }

    .ikram-payment-tabs .nav-link.active {
        color: var(--ikram-green-700);
        background: transparent;
        border-bottom-color: var(--ikram-yellow-500);
    }

.ikram-payment-tabs .nav-tabs {
    border-bottom: 2px solid var(--ikram-gray-200);
}

@media (min-width: 768px) {
    .ikram-hero {
        padding: 3rem 0;
    }

    .ikram-page-hero {
        min-height: 220px;
    }

        .ikram-page-hero h1 {
            font-size: 2.25rem;
        }
}

/* ========== Scrollbar Özelleştirmesi ========== */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: var(--ikram-gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--ikram-green-500), var(--ikram-green-700));
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--ikram-green-700);
    }

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--ikram-green-500) var(--ikram-gray-100);
}

/* ========== Metin Seçimi ========== */
::selection {
    background: var(--ikram-green-500);
    color: #fff;
}

::-moz-selection {
    background: var(--ikram-green-500);
    color: #fff;
}

/* ========== Scroll to Top Butonu ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ikram-green-600) 0%, var(--ikram-green-800, #1a5c2e) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(26, 92, 46, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .scroll-to-top:hover {
        background: linear-gradient(135deg, var(--ikram-green-500) 0%, var(--ikram-green-600) 100%);
        box-shadow: 0 6px 24px rgba(26, 92, 46, 0.55);
        transform: translateY(-3px) scale(1.07);
    }

    .scroll-to-top:focus-visible {
        outline: 3px solid var(--ikram-yellow-400);
        outline-offset: 3px;
    }

/* ========== Navbar Scroll Efekti ========== */
.ikram-header {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

    .ikram-header.ikram-header--scrolled {
        box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
    }

/* Aktif nav link alt çizgisi */
.ikram-nav .nav-link {
    position: relative;
}

    .ikram-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        right: 50%;
        height: 2px;
        background: var(--ikram-yellow-400);
        border-radius: 1px;
        transition: left 0.25s ease, right 0.25s ease;
    }

    .ikram-nav .nav-link:hover::after,
    .ikram-nav .nav-link.active::after {
        left: 10%;
        right: 10%;
    }

/* ========== Focus Stilleri ========== */
:focus-visible {
    outline: 3px solid var(--ikram-yellow-500);
    outline-offset: 2px;
    border-radius: 4px;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--ikram-green-500) !important;
    box-shadow: 0 0 0 0.2rem rgba(46, 158, 71, 0.2) !important;
}

/* ========== Kart Geliştirmeleri ========== */
.ikram-card {
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

    .ikram-card:hover {
        box-shadow: 0 8px 28px rgba(26, 92, 46, 0.13);
        transform: translateY(-5px);
        border-color: var(--ikram-green-400);
    }

/* Kampanya kartı hover */
.ikram-campaign {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

    .ikram-campaign:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

/* ========== Bağış butonu vurgu animasyonu ========== */
@keyframes ikram-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 184, 46, 0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230, 184, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 184, 46, 0);
    }
}

.ikram-btn-donate-nav {
    animation: ikram-pulse-ring 2.5s ease-out infinite;
}

/* ========== İlerleme Çubuğu Animasyonu ========== */
@keyframes progress-grow {
    from {
        width: 0 !important;
    }
}

.ikram-campaign .progress-bar {
    animation: progress-grow 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* ========== Section alt bg ========== */
.ikram-section-alt {
    background: linear-gradient(135deg, var(--ikram-green-100) 0%, var(--ikram-yellow-100) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

/* ========== Blog kartı geliştirme ========== */
.ikram-blog-card {
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    border: 3px solid transparent;
}

    .ikram-blog-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: var(--ikram-green-500);
    }

/* ========== Footer sosyal ikonlar placeholder ========== */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 0.85rem;
        transition: background 0.2s, transform 0.2s;
        text-decoration: none;
    }

        .footer-social a:hover {
            background: var(--ikram-yellow-500);
            color: var(--ikram-green-900) !important;
            transform: translateY(-2px);
        }

/* ================================================================
   ÖDEME SAYFASI – PROFESSIONAL CUSTOM STYLES
   ================================================================ */

/* ── Özet Kutusu ── */
.ikram-payment-summary {
    background: white;
    border: 4px solid var(--ikram-green-500);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.ips-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.ips-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ikram-green-900);
}

.ips-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ikram-green-600);
    font-family: var(--font-heading);
}

.ips-note {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Payment Tabs ── */
.ikram-payment-tabs {
    gap: 0.25rem;
    border-bottom: 2px solid var(--ikram-gray-200);
    padding-bottom: 0;
}

    .ikram-payment-tabs .nav-link {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--color-text-muted);
        border: none;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        padding: 0.7rem 1.1rem;
        border-radius: 0;
        display: flex;
        align-items: center;
        transition: color 0.2s, border-color 0.2s;
        background: transparent;
    }

        .ikram-payment-tabs .nav-link:hover {
            color: var(--ikram-green-700);
        }

        .ikram-payment-tabs .nav-link.active {
            color: var(--ikram-green-700);
            border-bottom-color: var(--ikram-yellow-500);
            background: transparent;
        }

/* ── 3D Kart Modeli ── */
.ikram-card-3d-wrap {
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 220px;
}

.ikram-card-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

    .ikram-card-3d.is-flipped {
        transform: rotateY(180deg);
    }

.ikram-card-front,
.ikram-card-back {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Ön yüz – yeşil degrade */
.ikram-card-front {
    background: linear-gradient(135deg, #1a5c2e 0%, #228b3a 40%, #2e9e47 70%, #1a5c2e 100%);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

    .ikram-card-front::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        pointer-events: none;
    }

    .ikram-card-front::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -30px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
        pointer-events: none;
    }

/* Chip */
.ikram-card-chip {
    width: 46px;
    height: 36px;
    position: relative;
    z-index: 1;
}

    .ikram-card-chip svg {
        width: 100%;
        height: 100%;
        border-radius: 4px;
    }

/* NFC */
.ikram-card-logo-nfc {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 28px;
    height: 28px;
    opacity: 0.5;
}

    .ikram-card-logo-nfc svg {
        width: 100%;
        height: 100%;
    }

/* Kart numarası */
.ikram-card-number {
    font-size: 1.35rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.2em;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    margin: 0 0 4px;
}

/* Alt bilgi satırı */
.ikram-card-info-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.ikram-card-info-col {
    display: flex;
    flex-direction: column;
}

.ikram-card-info-col--right {
    margin-left: 1rem;
}

.ikram-card-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 2px;
}

.ikram-card-name,
.ikram-card-expiry {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: white;
}

.ikram-card-network {
    margin-left: auto;
    width: 50px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .ikram-card-network svg {
        width: 100%;
        height: 100%;
    }

/* Arka yüz */
.ikram-card-back {
    background: linear-gradient(135deg, #0d3d1a 0%, #1a5c2e 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    color: white;
}

.ikram-card-magnetic {
    width: 100%;
    height: 44px;
    background: linear-gradient(180deg, #111 0%, #222 50%, #111 100%);
    margin-top: 28px;
}

.ikram-card-sig-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.ikram-card-sig-strip {
    flex: 1;
    height: 36px;
    background: repeating-linear-gradient( 90deg, #e8e8e8 0px, #e8e8e8 6px, #fff 6px, #fff 12px );
    border-radius: 4px;
}

.ikram-card-cvv-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 6px;
    padding: 6px 14px;
    min-width: 60px;
}

.ikram-card-cvv-label {
    font-size: 0.6rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.ikram-card-cvv-val {
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.1em;
}

.ikram-card-back-note {
    font-size: 0.65rem;
    opacity: 0.5;
    padding: 0 20px;
    margin-top: auto;
    margin-bottom: 14px;
    text-align: center;
}

/* ── Form Kutusu ── */
.ikram-payment-form-box {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ikram-gray-200);
    padding: 2rem;
}

/* ── Custom Input Sistemi ── */
.ikram-field {
    position: relative;
}

.ikram-field-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ikram-green-800, #1a5c2e);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.45rem;
}

.ikram-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ikram-input-icon {
    position: absolute;
    left: 14px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 2;
}

.ikram-input {
    width: 100%;
    padding: 0.7rem 0.9rem 0.7rem 2.6rem;
    border: 2px solid var(--ikram-gray-200);
    border-radius: var(--radius);
    font-size: 0.97rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--ikram-gray-100);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

    .ikram-input::placeholder {
        color: #aaa;
        font-size: 0.9rem;
    }

    .ikram-input:focus {
        border-color: var(--ikram-green-500);
        background: white;
        box-shadow: 0 0 0 3px rgba(46, 158, 71, 0.15);
    }

        .ikram-input:focus + .ikram-input-icon,
        .ikram-input-wrap:focus-within .ikram-input-icon {
            color: var(--ikram-green-500);
        }

/* Hata durumu */
.ikram-field.has-error .ikram-input {
    border-color: #dc3545;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.ikram-field.has-error .ikram-input-icon {
    color: #dc3545;
}

/* Geçerli durumu */
.ikram-field.is-valid .ikram-input {
    border-color: var(--ikram-green-500);
    background: #f0fdf4;
}

.ikram-field-error {
    display: none;
    font-size: 0.78rem;
    color: #dc3545;
    margin-top: 0.3rem;
    padding-left: 2px;
}

.ikram-field.has-error .ikram-field-error {
    display: block;
}

/* Kart ağı badge (input içinde) */
.ikram-input-badge {
    position: absolute;
    right: 12px;
    width: 38px;
    height: 24px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

    .ikram-input-badge svg {
        width: 100%;
        height: 100%;
    }

/* CVV hint ikonu */
.ikram-cvv-hint {
    color: var(--color-text-muted);
    cursor: help;
}

/* ── Güvenlik Rozeti ── */
.ikram-secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    background: var(--ikram-gray-100);
    border: 1px solid var(--ikram-gray-200);
    border-radius: var(--radius);
    padding: 0.55rem 0.9rem;
}

.ikram-secure-badge-3d {
    margin-left: auto;
    background: var(--ikram-green-700);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* ── Ödeme Butonu ── */
.ikram-btn-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, var(--ikram-yellow-600) 0%, var(--ikram-yellow-500) 50%, var(--ikram-yellow-400) 100%);
    color: var(--ikram-green-900);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    position: relative;
    overflow: hidden;
}

    .ikram-btn-pay::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
        pointer-events: none;
    }

    .ikram-btn-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
        filter: brightness(1.04);
    }

    .ikram-btn-pay:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
    }

/* ── Modal ── */
.ikram-modal-3d .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.ikram-modal-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
}

.ikram-spinner-ring {
    width: 48px;
    height: 48px;
    border: 4px solid var(--ikram-gray-200);
    border-top-color: var(--ikram-green-500);
    border-radius: 50%;
    animation: ikram-spin 0.8s linear infinite;
}

@keyframes ikram-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── EFT Kutusu ── */
.ikram-eft-box {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ikram-gray-200);
    overflow: hidden;
}

.ikram-eft-header {
    background: linear-gradient(135deg, var(--ikram-green-700) 0%, var(--ikram-green-600) 100%);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ikram-eft-table {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ikram-eft-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--ikram-gray-100);
    font-size: 0.9rem;
}

    .ikram-eft-row:last-child {
        border-bottom: none;
    }

.ikram-eft-key {
    min-width: 90px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.ikram-eft-val {
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ikram-iban {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
}

.ikram-iban-copy {
    background: none;
    border: 1px solid var(--ikram-gray-200);
    border-radius: 5px;
    padding: 3px 6px;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

    .ikram-iban-copy:hover {
        background: var(--ikram-green-100);
        color: var(--ikram-green-700);
        border-color: var(--ikram-green-400);
    }

    .ikram-iban-copy.copied {
        background: var(--ikram-green-500);
        color: white;
        border-color: var(--ikram-green-500);
    }

.ikram-eft-note {
    margin: 0 1.5rem 1.25rem;
    background: var(--ikram-green-100);
    border: 1px solid var(--ikram-green-400);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--ikram-gray-800);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

    .ikram-eft-note a {
        color: var(--ikram-green-700);
        font-weight: 600;
    }

/* ================================================================
   İLETİŞİM SAYFASI – CUSTOM STYLES
   ================================================================ */

/* İletişim bilgi bloğu */
.ikram-contact-info-block {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ikram-gray-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.ikram-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--ikram-gray-100);
    transition: background 0.2s;
}

    .ikram-contact-info-item:last-child {
        border-bottom: none;
    }

    .ikram-contact-info-item:hover {
        background: var(--ikram-gray-100);
    }

.ikram-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ikram-green-100);
    color: var(--ikram-green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ikram-contact-info-content .contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.ikram-contact-info-content .contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.ikram-contact-info-content a {
    color: var(--ikram-green-700);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

    .ikram-contact-info-content a:hover {
        color: var(--ikram-green-500);
        text-decoration: underline;
    }

/* Banka kutusu – iletişim */
.ikram-bank-card {
    background: linear-gradient(135deg, var(--ikram-green-100) 0%, #edf7f0 100%);
    border: 1px solid var(--ikram-green-400);
    border-left: 4px solid var(--ikram-green-500);
    border-radius: var(--radius);
    padding: 1.25rem;
}

    .ikram-bank-card .bank-name {
        font-weight: 700;
        color: var(--ikram-green-800, #1a5c2e);
        font-size: 1rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ikram-bank-card .bank-row {
        display: flex;
        gap: 8px;
        font-size: 0.87rem;
        margin-bottom: 0.3rem;
        color: var(--color-text);
    }

        .ikram-bank-card .bank-row .bank-key {
            min-width: 80px;
            color: var(--color-text-muted);
            font-size: 0.8rem;
        }

/* İletişim formu */
.ikram-contact-form {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ikram-gray-200);
    padding: 2rem;
}

    .ikram-contact-form .ikram-field-label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--ikram-green-800, #1a5c2e);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.4rem;
    }

    .ikram-contact-form .ikram-input,
    .ikram-contact-form .ikram-textarea {
        width: 100%;
        padding: 0.7rem 0.9rem;
        border: 2px solid var(--ikram-gray-200);
        border-radius: var(--radius);
        font-size: 0.97rem;
        font-family: var(--font-body);
        color: var(--color-text);
        background: var(--ikram-gray-100);
        transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        outline: none;
        -webkit-appearance: none;
        appearance: none;
    }

        .ikram-contact-form .ikram-input:focus,
        .ikram-contact-form .ikram-textarea:focus {
            border-color: var(--ikram-green-500);
            background: white;
            box-shadow: 0 0 0 3px rgba(46, 158, 71, 0.15);
        }

    .ikram-contact-form .ikram-textarea {
        resize: vertical;
        min-height: 120px;
    }

        .ikram-contact-form .ikram-input::placeholder,
        .ikram-contact-form .ikram-textarea::placeholder {
            color: #bbb;
        }

/* ================================================================
   ANA SAYFA – GELİŞTİRMELER
   ================================================================ */

/* Hızlı bağış hero */
.ikram-hero {
    background: linear-gradient(155deg, var(--ikram-green-100) 0%, var(--ikram-yellow-100) 60%, #fff 100%);
    padding: 3rem 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 2.5rem;
    border-bottom: 3px solid var(--ikram-yellow-400);
}

/* Hızlı bağış form – select özelleştirmesi */
.ikram-quick-donate .form-select {
    border: 2px solid var(--ikram-gray-200);
    border-radius: var(--radius);
    background-color: var(--ikram-gray-100);
    font-size: 0.95rem;
    padding: 0.65rem 2.5rem 0.65rem 0.9rem;
    color: var(--color-text);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

    .ikram-quick-donate .form-select:focus {
        border-color: var(--ikram-green-500);
        background-color: white;
        box-shadow: 0 0 0 3px rgba(46, 158, 71, 0.15);
        outline: none;
    }

.ikram-quick-donate .form-control {
    border: 2px solid var(--ikram-gray-200);
    border-radius: var(--radius);
    background-color: var(--ikram-gray-100);
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

    .ikram-quick-donate .form-control:focus {
        border-color: var(--ikram-green-500);
        background: white;
        box-shadow: 0 0 0 3px rgba(46, 158, 71, 0.15);
        outline: none;
    }

/* Kampanya kartı iyileştirme */
.ikram-campaign {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--ikram-green-500);
    padding: 1.5rem;
    height: 100%;
}

    .ikram-campaign .campaign-title {
        font-weight: 700;
        font-family: var(--font-heading);
        color: var(--ikram-green-800, #1a5c2e);
        margin-bottom: 0.4rem;
        font-size: 1rem;
    }

    .ikram-campaign .campaign-meta {
        font-size: 0.88rem;
        color: var(--color-text-muted);
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .ikram-campaign .progress {
        height: 8px;
        border-radius: 4px;
        background: var(--ikram-gray-200);
        margin: 0.75rem 0 0.4rem;
        overflow: hidden;
    }

    .ikram-campaign .progress-bar {
        background: linear-gradient(90deg, var(--ikram-green-600), var(--ikram-yellow-500));
        border-radius: 4px;
        animation: progress-grow 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }

    .ikram-campaign .campaign-stats {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: var(--color-text-muted);
        margin-bottom: 1rem;
    }

/* Blog kartları iyileştirme */
.ikram-blog-card {
    background: white;
    border-radius: var(--radius);
    border: 3px solid transparent;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

    .ikram-blog-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: var(--ikram-yellow-500);
    }

    .ikram-blog-card .card-body {
        padding: 1.25rem;
    }

    .ikram-blog-card .blog-date {
        font-size: 0.75rem;
        color: var(--color-text-muted);
        font-weight: 500;
        letter-spacing: 0.03em;
    }

    .ikram-blog-card .blog-title {
        font-weight: 700;
        font-family: var(--font-heading);
        color: var(--ikram-green-800, #1a5c2e);
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

/* Son haberler listesi */
.ikram-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ikram-news-list li {
        border-bottom: 1px solid var(--ikram-gray-100);
    }

        .ikram-news-list li:last-child {
            border-bottom: none;
        }

    .ikram-news-list a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.9rem 0;
        text-decoration: none;
        color: var(--color-text);
        font-weight: 500;
        font-size: 0.93rem;
        transition: color 0.2s, padding-left 0.2s;
    }

        .ikram-news-list a::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--ikram-yellow-500);
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .ikram-news-list a:hover {
            color: var(--ikram-green-700);
            padding-left: 4px;
        }

            .ikram-news-list a:hover::before {
                background: var(--ikram-green-500);
            }

/* Accordion iyileştirme */
.ikram-faq .accordion-item {
    border: 1px solid var(--ikram-gray-200);
    border-radius: var(--radius) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.ikram-faq .accordion-button {
    font-weight: 600;
    color: var(--ikram-green-800, #1a5c2e);
    background: var(--ikram-gray-100);
    border: none;
    border-radius: var(--radius) !important;
    font-size: 0.95rem;
}

    .ikram-faq .accordion-button:not(.collapsed) {
        background: var(--ikram-green-100);
        color: var(--ikram-green-800, #1a5c2e);
        box-shadow: none;
    }

    .ikram-faq .accordion-button::after {
        filter: none;
    }

/* ───── Legal Pages ───── */
.ikram-legal-content {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

    .ikram-legal-content h2 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--ikram-green-800, #1a5c2e);
        margin-top: 2rem;
        margin-bottom: .75rem;
        padding-bottom: .5rem;
        border-bottom: 2px solid var(--ikram-green-100, #e8f5e9);
    }

        .ikram-legal-content h2:first-of-type {
            margin-top: .5rem;
        }

    .ikram-legal-content p,
    .ikram-legal-content li {
        color: #374151;
        line-height: 1.8;
        font-size: .95rem;
    }

    .ikram-legal-content ul {
        padding-left: 1.25rem;
    }

    .ikram-legal-content a {
        color: var(--ikram-green-600, #2e7d32);
        text-decoration: underline;
    }

/* ───── Footer enhancements ───── */
.ikram-footer-desc {
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
}

.ikram-footer-links li {
    margin-bottom: .4rem;
}

.ikram-footer-links a {
    font-size: .9rem;
    opacity: .8;
    transition: opacity .2s;
}

    .ikram-footer-links a:hover {
        opacity: 1;
    }

.ikram-footer-iban {
    background: rgba(255,255,255,.08);
    border-radius: .5rem;
    padding: .6rem .75rem;
}

/* ───── Bağışçı Tipi Seçimi ───── */
.ikram-donor-type {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
}

.ikram-donor-type-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: .75rem;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: #374151;
    transition: all .2s;
}

    .ikram-donor-type-btn:hover {
        border-color: var(--ikram-green-400, #66bb6a);
    }

    .ikram-donor-type-btn.active {
        border-color: var(--ikram-green-600, #2e7d32);
        background: var(--ikram-green-50, #f1f8e9);
        color: var(--ikram-green-800, #1a5c2e);
    }

    .ikram-donor-type-btn svg {
        flex-shrink: 0;
    }

/* ───── Sözleşme Onay ───── */
.ikram-agreement-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
}

    .ikram-agreement-box label {
        font-size: .87rem;
        color: #374151;
        line-height: 1.5;
        cursor: pointer;
    }

    .ikram-agreement-box a {
        color: var(--ikram-green-600, #2e7d32);
        font-weight: 600;
        text-decoration: underline;
    }

    .ikram-agreement-box .form-check-input:checked {
        background-color: var(--ikram-green-600, #2e7d32);
        border-color: var(--ikram-green-600, #2e7d32);
    }

/* Responsive */
@media (max-width: 575px) {
    .ikram-card-3d-wrap {
        height: 190px;
    }

    .ikram-card-number {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }

    .ikram-payment-form-box {
        padding: 1.25rem;
    }

    .ikram-contact-form {
        padding: 1.25rem;
    }

    .ikram-legal-content {
        padding: 1.25rem;
    }

    .ikram-donor-type {
        flex-direction: column;
    }
}

/* ───── Cookie Consent Banner ───── */
.ikram-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a2e;
    border-top: 3px solid var(--ikram-green-500, #4caf50);
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
    padding: 1rem 0;
    animation: cookieSlideUp .4s ease-out;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ikram-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ikram-cookie-text {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
}

.ikram-cookie-icon {
    color: var(--ikram-yellow-400, #ffd54f);
    margin-top: 2px;
}

.ikram-cookie-text a {
    color: var(--ikram-green-300, #81c784);
    text-decoration: underline;
    font-weight: 600;
}

.ikram-cookie-actions {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

.ikram-cookie-btn {
    border: none;
    border-radius: .5rem;
    padding: .55rem 1.25rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.ikram-cookie-btn--accept {
    background: var(--ikram-green-600, #2e7d32);
    color: #fff;
}

    .ikram-cookie-btn--accept:hover {
        background: var(--ikram-green-700, #1b5e20);
    }

.ikram-cookie-btn--reject {
    background: transparent;
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.25);
}

    .ikram-cookie-btn--reject:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
    }

@media (max-width: 575px) {
    .ikram-cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .ikram-cookie-text {
        justify-content: center;
    }

    .ikram-cookie-actions {
        width: 100%;
    }

    .ikram-cookie-btn {
        flex: 1;
    }
}
