/* ====================================
   CSS RESET VE TEMEL STİLLER
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ana Renkler */
    --primary: #2d9670;
    --secondary: #29404c;
    --accent: #9eccf9;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    
    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, #2d9670 0%, #4db88a 100%);
    --gradient-secondary: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    
    /* Efektler */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    
    /* Z-Index Değerleri */
    --z-dropdown: 1000;
    --z-modal: 2000;
    --z-overlay: 9999;
    --z-country-list: 999999;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #f9fafb;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ====================================
   TİPOGRAFİ
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

h1 { font-size: 3.75rem; letter-spacing: -1.5px; }
h2 { font-size: 2.75rem; letter-spacing: -0.5px; }
h3 { font-size: 2rem; letter-spacing: -0.25px; }

p { margin-bottom: 1.2rem; }

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
li {
	list-style: none;
}

/* ====================================
   LAYOUT / DÜZEN
   ==================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    flex: 1;
    padding: 0 1.5rem;
}

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

/* ====================================
   HEADER VE NAVİGASYON
   ==================================== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-dropdown);
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo:hover svg {
    transform: rotate(10deg);
}

.logo svg {
    transition: transform 0.4s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
    font-weight: 700;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigasyon */
nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Vesile Ol Özel Butonu */
nav ul li a[href="https://www.kurbiyet.org.tr/vesile-ol/"] {
    color: white;
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 5px 15px rgba(45, 150, 112, 0.3)
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul li a[href="https://www.kurbiyet.org.tr/vesile-ol/"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

nav ul li a[href="https://www.kurbiyet.org.tr/vesile-ol/"]::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

nav ul li a[href="https://www.kurbiyet.org.tr/vesile-ol/"]::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* ====================================
   HERO BÖLÜMÜ (ANA SAYFA)
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background-color: #f8f9fa;
    background-image: 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='%23e63946' fill-opacity='0.05'%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");
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: visible;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease;
}

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

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 24px;
    color: white;
    font-weight: 600;
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-badge-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-badge-text {
    font-size: 1rem;
    max-width: 100px;
    line-height: 1.4;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    z-index: -1;
}

.hero-shape-1 {
    top: 15%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(230, 57, 70, 0.1);
    transform: rotate(45deg);
    animation: float 5s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: rgba(29, 53, 87, 0.05);
    animation: float 6s ease-in-out infinite;
}

/* Hero Image Slider */
.image-slider-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-slider-container:hover .slider-controls {
    opacity: 1;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.slider-btn svg {
    width: 18px;
    height: 18px;
}

#hero-slider-image {
    transition: opacity 0.5s ease;
}

/* ====================================
   BREADCRUMB
   ==================================== */


/* ====================================
   YENİ MODERN BREADCRUMB TASARIMI
   ==================================== */
.breadcrumb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 1.5rem 2.5rem;
    margin: 2rem 0 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e63946' fill-opacity='0.03'%3E%3Cpath d='M20 20m-2 0a2 2 0 1 1 4 0a2 2 0 1 1 -4 0'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.breadcrumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin: 0 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.breadcrumb li:hover::after {
    opacity: 1;
    transform: translateX(2px);
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.breadcrumb a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.breadcrumb a:hover::before {
    left: 0;
}

.breadcrumb li:last-child {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    backdrop-filter: blur(5px);
}

/* Geliştirilmiş Breadcrumb - Alternatif Tasarım */
.breadcrumb-v2 {
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 0;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.breadcrumb-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.breadcrumb-v2 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 2rem;
    position: relative;
}

.breadcrumb-v2 li {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb-v2 li:not(:last-child)::after {
    content: '>';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 1rem;
    opacity: 0.7;
}

.breadcrumb-v2 a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-v2 a:hover {
    color: var(--primary);
    background: rgba(230, 57, 70, 0.05);
}

.breadcrumb-v2 li:last-child {
    color: var(--primary);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 8px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0 2rem;
        border-radius: 16px;
    }
    
    .breadcrumb ul {
        gap: 0.25rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        border-left-width: 6px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        margin: 0 0.5rem;
    }
    
    .breadcrumb a,
    .breadcrumb li:last-child {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .breadcrumb-v2 {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-v2 ul {
        padding: 0 1.5rem;
    }
    
    .breadcrumb-v2 li:not(:last-child)::after {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        padding: 0.75rem 1rem;
        margin: 1rem 0 1.5rem;
    }
    
    .breadcrumb ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        display: none;
    }
    
    .breadcrumb li {
        width: 100%;
    }
    
    .breadcrumb a,
    .breadcrumb li:last-child {
        width: 100%;
        text-align: left;
    }
    
    /* Küçük ekranlarda basit ok kullan */
    .breadcrumb li:not(:last-child)::before {
        content: '↓';
        color: var(--primary);
        font-weight: bold;
        margin-top: 0.25rem;
        align-self: flex-start;
    }
}


/* ====================================
   SAYFA HERO (BLOG SAYFALARI)
   ==================================== */
.page-hero {
    padding: 12rem 0 6rem;
    background-color: var(--white);
    background-image: 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='%23e63946' fill-opacity='0.05'%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");
    text-align: center;
}

/* Page Header (Product Pages) */
.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    background-image: 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='%23e63946' fill-opacity='0.05'%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");
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-icon {
    color: var(--primary);
}

/* ====================================
   BLOG İÇERİK BÖLÜMÜ
   ==================================== */
.blog-content-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-featured-image {
    margin-bottom: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.blog-featured-image img {
    width: 100%;
    border-radius: 0;
    transition: transform 0.5s ease;
}

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

.blog-text h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.blog-text h3 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-text p {
    margin-bottom: 1.5rem;
}

.blog-text ul, .blog-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-text li {
    margin-bottom: 0.5rem;
}

.blog-text blockquote {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.blog-text blockquote p:last-child {
    margin-bottom: 0;
}

.blog-text img {
    margin: 2rem 0;
}

.blog-text .highlight {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Blog Alt Bölümü */
.blog-footer {
    border-top: 1px solid var(--light-gray);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-tag {
    display: inline-block;
    background-color: var(--light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-share {
    display: flex;
    gap: 1rem;
}

.blog-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.blog-share-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background-color: var(--light);
    transition: all 0.3s ease;
    width: 48%;
}

.blog-nav-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-nav-link.prev {
    flex-direction: row-reverse;
}

.blog-nav-title {
    font-weight: 600;
}

/* ====================================
   ÜRÜN DETAY BÖLÜMÜ
   ==================================== */
.product-section {
    padding: 8rem 0 4rem;
    background-color: var(--white);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 500px;
    min-height: 500px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-short-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Phone input with country selector */
.phone-input-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.country-select {
    position: relative;
}

.country-select select {
    padding: 1rem 1rem 1rem 0.5rem;
    border: 1px solid var(--light-gray);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    appearance: none;
    background-color: var(--white);
    cursor: pointer;
    color: var(--secondary);
}

.country-select select:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-input-container input {
    flex: 1;
    border-radius: 0 12px 12px 0;
}

/* Quantity input */
.quantity-input {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn.minus {
    border-radius: 12px 0 0 12px;
}

.quantity-btn.plus {
    border-radius: 0 12px 12px 0;
}

.quantity-btn:hover {
    background-color: var(--light-gray);
}

.quantity-input input {
    width: 50px;
    height: 40px;
    border: 1px solid var(--light-gray);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
    padding: 0;
}

.quantity-input input:focus {
    outline: none;
}

.quantity-input input::-webkit-inner-spin-button, 
.quantity-input input::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    margin: 0;
}

/* Add to cart button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.add-to-cart-btn svg {
    width: 24px;
    height: 24px;
}

/* Product Description */
.product-description {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.product-description h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.product-description h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    left: 0;
    bottom: 0;
}

.description-content {
    color: var(--gray);
}

.description-content p {
    margin-bottom: 1.25rem;
}

.description-content strong {
    color: var(--secondary);
}

/* ====================================
   TELEFON INPUT ÖZEL STİLLER
   ==================================== */
.phone-group {
    width: 100%;
}

#phone {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    height: auto;
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

#phone:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* ====================================
   ÜRÜN BÖLÜMÜ
   ==================================== */
.products-section {
    padding: 4rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* Aspect ratio 4:3 */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0;
}

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

.product-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
}

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

.product-category {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-title a:hover {
    color: var(--primary);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-details {
    background-color: var(--light-gray);
    color: var(--secondary);
}

.btn-details:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-donate {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-donate:hover {
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* ====================================
   NO PRODUCTS BÖLÜMÜ
   ==================================== */
.no-products {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.no-products-title {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-products-text {
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-call:hover {
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
    transform: translateY(-5px);
}

/* ====================================
   SIDEBAR VE WİDGET'LAR
   ==================================== */
.sidebar {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.widget {
    margin-bottom: 2.5rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

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

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--light-gray);
}

.category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.category-link span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.category-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    border-radius: 12px;
    background-color: var(--light-gray);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.subcategory-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
    display: none;
}

.subcategory-item {
    margin-bottom: 0.75rem;
}

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

.subcategory-link {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subcategory-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* ====================================
   BUTONLAR
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(45, 150, 112, 0.3));
}

.btn-primary:hover {
	box-shadow: 0 8px 25px rgb(54 159 119 / 52%);
    transform: translateY(-5px);
}

.btn-secondary {
    background: rgba(29, 53, 87, 0.1);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: rgba(29, 53, 87, 0.15);
    transform: translateY(-5px);
}

.btn-lg {
    padding: 1.2rem 2.75rem;
    font-size: 1.1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ====================================
   HİZMETLER BÖLÜMÜ
   ==================================== */
.services {
    padding: 8rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.8rem;
}

.service-title {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.4rem;
}

/* ====================================
   ÖZEL FEATURED HİZMETLER
   ==================================== */
.featured-services {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
    overflow: visible;
}

.featured-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.featured-grid {
      display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    align-items: start;
    overflow: visible;
    width: 95%;
    margin: 0 auto;
}


.featured-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: visible !important;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    min-height: 550px;
    position: relative;
    z-index: 1;
}

.featured-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
    z-index: 2;
}

.featured-card:has(.iti--show-dropdown) {
    z-index: 999997 !important;
}

.featured-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    border-radius: 24px 24px 0 0;
}

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

.featured-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
}

.featured-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary);
	width:99%;
}

.featured-price {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Featured Form Fields */
.featured-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.input-field-wrapper {
    position: relative;
    min-height: 48px;
}

.tel-input-wrapper {
    position: relative;
    min-height: 70px;
    z-index: 2 !important;
}

.featured-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.featured-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.featured-input::placeholder {
    color: #adb5bd;
}

.featured-input.error {
    border-color: #e63946 !important;
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2) !important;
}

.featured-input.success {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

/* ====================================
   TELEFON INPUT (ITI)
   ==================================== */

/* intl-tel-input Mobil Düzeltme - Bu CSS'i ekle */

/* Ana container z-index düzeltmesi */
.featured-card {
    position: relative;
    overflow: visible !important; /* Bu çok önemli */
}

.tel-input-wrapper {
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

/* ITI Container */
.iti {
    position: relative !important;
    z-index: 11;
    overflow: visible !important;
}

/* Dropdown Content Container */
.iti__dropdown-content {
    position: absolute !important;
    z-index: 999999 !important;
    overflow: visible !important;
}

/* Country List - ANA DÜZELTME */
.iti__country-list {
    position: fixed !important;
    z-index: 999999 !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    width: 300px !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Desktop için normal pozisyon */
@media (min-width: 769px) {
    .iti__country-list {
        position: absolute !important;
        left: 0 !important;
        top: 100% !important;
        margin-top: 2px !important;
        width: 300px !important;
    }
}

/* Tablet için merkez */
@media (max-width: 768px) and (min-width: 577px) {
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 320px !important;
        max-width: 90vw !important;
        max-height: 60vh !important;
    }
}

/* Mobil için merkez - BAŞLIĞI PROBLEM BÖLÜMÜ */
@media (max-width: 576px) {
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 280px !important;
        max-width: 85vw !important;
        max-height: 50vh !important;
        z-index: 999999 !important;
    }
    
    /* Dropdown açıkken body scroll kilitle */
    body.iti-mobile-open {
        overflow: hidden !important;
    }
    
    /* Featured grid mobilde daha geniş spacing */
    .featured-grid {
        overflow: visible !important;
    }
    
    /* Container overflow düzeltmeleri */
    .featured-services {
        overflow: visible !important;
    }
    
    .container {
        overflow: visible !important;
    }
}

/* Country item styling */
.iti__country {
    padding: 12px 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.iti__country:hover {
    background-color: #f8f9fa !important;
}

.iti__country.iti__highlight {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Search input styling */
.iti__search-input {
    width: 100% !important;
    padding: 10px 15px !important;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    font-size: 14px !important;
    outline: none !important;
}

/* Hide/show animation */
.iti__dropdown-content.iti__hide {
    display: none !important;
}

.iti__dropdown-content:not(.iti__hide) {
    display: block !important;
}

/* Scrollbar styling */
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Modal overlay effect for mobile */
@media (max-width: 576px) {
    .iti__dropdown-content:not(.iti__hide)::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999998;
        pointer-events: auto;
    }
}
/* ====================================
   HAKKIMIZDA BÖLÜMÜ
   ==================================== */
.about, .about-hero {
    padding: 8rem 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.about-hero {
    background-color: var(--white);
    margin-top: 5rem;
}

.about-shape {
    position: absolute;
    z-index: 0;
}

.about-shape-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: rgba(230, 57, 70, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s linear infinite alternate;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: var(--secondary);
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transform: translateY(-50%);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Misyon ve Vizyon */
.mission-vision {
    padding: 8rem 0;
    background-color: #f9fafb;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mv-icon svg {
    width: 35px;
    height: 35px;
}

.mission-card h3,
.vision-card h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--gray);
}

/* İstatistikler */
.stats-section {
    padding: 8rem 0;
    background-color: var(--secondary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ====================================
   KURBAN KESİM SLIDER
   ==================================== */
.slaughter {
    padding: 8rem 0;
    background-color: #f9fafb;
    position: relative;
}

.slaughter-videos {
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
}

.video-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-container::-webkit-scrollbar {
    display: none;
}

.video-wrapper {
    flex: 0 0 560px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px 20px 0 0;
    border: none;
}

.video-title {
    padding: 1.25rem 1.5rem 0.5rem;
    margin: 0;
    font-size: 1.25rem;
    color: var(--secondary);
}

.video-date {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Video Slider Controls - Alt kısımda ortalanmış */
.slaughter .slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: static;
    opacity: 1;
    transform: none;
    padding: 0;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* ====================================
   BLOG BÖLÜMÜ
   ==================================== */
.blog {
    padding: 8rem 0;
    background-color: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

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

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
}

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

.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 10px 0 0;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.blog-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.blog-link:hover::after {
    transform: translateX(5px);
}

.blog-more {
    margin-top: 3rem;
}

/* Pagination Styles */
.pagination-container {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 3rem;
}

.pagination li {
    margin: 0;
}

.page-item {
    display: flex;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 50%;
    font-weight: 500;
    color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
}

.page-link:hover {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(45, 150, 112, 0.3);
}

.page-item.active .page-link,
.page-link.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.3);
}

.page-link.ellipsis {
    background: none;
    box-shadow: none;
    width: auto;
    padding: 0 5px;
}

.page-link.ellipsis:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

/* Previous ve Next butonları */
.page-link-prev, 
.page-link-next {
    width: auto;
    min-width: auto;
    padding: 0 1.25rem;
    border-radius: 50px;
    gap: 0.5rem;
    font-weight: 600;
}

.page-link-prev:hover,
.page-link-next:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.page-link i {
    font-size: 0.9rem;
}

/* Disabled state */
.page-link[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ====================================
   İLETİŞİM BÖLÜMÜ
   ==================================== */
.contact {
    padding: 8rem 0;
    background-color: #f9fafb;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.contact-icon {
    margin: 0 auto 1.25rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-method {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form .btn-icon {
    width: 18px;
    height: 18px;
}

/* ====================================
   FAQ BÖLÜMÜ
   ==================================== */
.faq {
    padding: 8rem 0;
    background-color: var(--white);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(230, 57, 70, 0.02);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--secondary);
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

/* Active State */
.faq-item.active .faq-question {
    background-color: rgba(230, 57, 70, 0.05);
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-item.active .faq-icon {
    background-color: var(--secondary);
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ====================================
   ÇAĞRI BÖLÜMÜ
   ==================================== */
.cta {
    padding: 8rem 0;
	background: linear-gradient(135deg, rgba(158, 204, 249, 0.7), rgba(135, 185, 245, 0.6), rgba(120, 175, 240, 0.7));
    color: var(--secondary);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23ffffff' fill-opacity='0.05'%3E%3Cg transform='translate(10,15)'%3E%3C!-- Hilal --%3E%3Cpath d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15c1.933 0 3.773-.365 5.464-.992C16.483 26.709 13 21.142 13 15s3.483-11.709 7.464-14.008C18.773.365 16.933 0 15 0z'/%3E%3C!-- Yıldız --%3E%3Cpath d='m25 10-2.351 4.764L17 15.528l4.298 4.19-1.015 5.918L25 22.764l4.717 2.872-1.015-5.918L33 15.528l-5.649-.764L25 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.cta-title-white {
	color:var(--secondary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ====================================
   BAĞIŞ BÖLÜMÜ
   ==================================== */
.donation {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.donation-shape {
    position: absolute;
    z-index: 0;
}

.donation-shape-1 {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(29, 53, 87, 0.05);
    border-radius: 50%;
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.donation-text {
    max-width: 500px;
}

.donation-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.donation-form-title {
    margin-bottom: 2rem;
    color: var(--secondary);
    text-align: center;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.donation-option {
    padding: 1rem 0.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-option.active {
    border-color: var(--primary);
    background-color: rgba(230, 57, 70, 0.05);
}

.donation-option:hover {
    border-color: var(--primary);
}

.donation-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
}

/* ====================================
   BANKA HESAP BİLGİLERİ
   ==================================== */
.bank-details {
    padding: 8rem 0;
    background-color: #f9fafb;
}

.bank-section {
    max-width: 1200px;
    margin: 0 auto;
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.bank-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bank-header {
    padding: 1.5rem;
    background-color: var(--secondary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bank-branch {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bank-info {
    padding: 1.5rem;
}

.bank-field {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
}

.bank-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bank-field label {
    font-weight: 600;
    color: #6b7280;
    width: 120px;
    flex-shrink: 0;
}

.bank-field span {
    font-weight: 500;
    color: var(--secondary);
}

.account-number, .iban {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.bank-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.note-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-card svg {
    color: var(--primary);
    flex-shrink: 0;
}

.note-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.note-text p {
    color: #6b7280;
    margin-bottom: 0;
}

/* ====================================
   MODAL VE OVERLAY STİLLERİ
   ==================================== */
.payment-modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.payment-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s ease;
}

.payment-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: calc(var(--z-modal) + 1);
}

.payment-modal-close:hover {
    color: var(--primary);
}

.payment-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-option {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option:hover {
    border-color: var(--primary);
    background-color: rgba(230, 57, 70, 0.05);
    transform: translateY(-5px);
}

.payment-option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: rgba(41, 64, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.payment-option-icon svg {
    width: 30px;
    height: 30px;
}

.payment-option h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.payment-option p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Success Modal */
.success-content {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.bank-mini-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.bank-mini-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
}

.bank-mini-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
	background:rgb(255 255 255);
}

.bank-mini-iban {
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.reminder-note {
    background-color: rgba(230, 57, 70, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

#reference-number {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: var(--z-overlay);
    justify-content: center;
    align-items: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary);
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loading-content p {
    margin-bottom: 0;
    color: var(--secondary);
    font-weight: 500;
}

/* ====================================
   FOOTER
   ==================================== */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 3fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: white;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ====================================
   MOBİL BOTTOM MENU
   ==================================== */
.mobile-bottom-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: var(--z-dropdown);
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 8px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 33.33%;
    height: 100%;
}

.menu-item:hover {
    background-color: rgba(41, 64, 76, 0.05);
}

.menu-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.menu-item span {
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.menu-item-primary {
    color: white;
    background: var(--gradient-primary);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(45, 150, 112, 0.3);
    transform: translateY(-15px);
    margin-top: -10px;
    padding: 12px 5px;
}

.menu-item-primary svg {
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
}

/* ====================================
   MOBİL MENÜ
   ==================================== */
.mobile-menu-container {
    position: fixed;
    left: -100%;
    top: 0;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-container.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;  /* flex-end yerine space-between */
    align-items: center;             /* Logo ve butonu hizalar */
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;       /* Hafif arka plan rengi */
}

/* Logo Stilleri - YENİ */
.mobile-menu-logo {
    flex: 1;
}

.mobile-menu-logo img {
    max-width: 120px;
    height: auto;
    display: block;
}

/* Kapatma Butonu - Güncellendi */
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: var(--secondary);
    padding: 5px 10px;
    flex-shrink: 0;  /* Butonun küçülmesini engeller */
}

.close-icon {
    display: block;
}

#mobile-nav-menu {
    display: block;
    padding: 20px;
    margin: 0;
    list-style: none;
}

#mobile-nav-menu li {
    margin-bottom: 15px;
}

#mobile-nav-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
}

#mobile-nav-menu li a[href="https://www.kurbiyet.org.tr/vesile-ol/"] {
    color: white;
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#mobile-nav-menu li a[href="https://www.kurbiyet.org.tr/vesile-ol/"]::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================================
   ANİMASYONLAR
   ==================================== */
@keyframes float {
    0% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
    100% { transform: translateY(0) rotate(45deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

@keyframes errorSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 9999;
    transform-origin: 0%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ====================================
   RESPONSİVE TASARIM - MOBİL DÜZELTME
   ==================================== */
@media (max-width: 1200px) {
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.5rem; }
    
    .services-grid, .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 3;
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .hero-container, 
    .donation-content,
    .about-grid,
    .mv-grid,
    .contact-content,
    .product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image,
    .about-image,
    .product-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-nav-link {
        width: 100%;
    }
    
    /* MOBİL GRİD DÜZELTMESİ - EN ÖNEMLİ */
    .featured-services .featured-grid,
    .services-grid, 
    .featured-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 2rem !important;
    }
    
    nav ul { display: none; }
    .mobile-menu-btn { 
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 991;
        height: 40px;
    }
    
    .mobile-menu-btn .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 3px auto;
        background-color: var(--secondary);
        transition: all 0.3s ease-in-out;
    }
    
    .header-container {
        position: relative;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        margin: 0;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter { grid-column: span 2; }
    
    .mobile-bottom-menu { display: flex; }  /*flex*/
    body { padding-bottom: 65px; }
    body.viewing-bank-details { padding-bottom: 85px; }
    
    .iti__country-list {
        width: 280px;
        left: -60px;
    }
    
    .video-container {
        gap: 1.5rem;
    }
    
    .video-wrapper {
        flex: 0 0 450px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #vesile-ol { display: none !important; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .page-title { font-size: 3rem; }
    .product-title { font-size: 2rem; }
    .product-price { font-size: 1.75rem; }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-description {
        padding: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    /* FEATURED GRID MOBİL DÜZELTMESİ - EKSİK OLAN KISIM */
    .featured-services .featured-grid,
    .services-grid, 
    .featured-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 1.5rem !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .featured-card { 
        min-height: 480px; 
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .donation-options { grid-template-columns: repeat(2, 1fr); }
    .payment-options { flex-direction: column; }
    
    .payment-modal-content {
        margin: 15% auto;
        padding: 2rem;
        width: 90%;
    }
    
    .bank-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .bank-notes { grid-template-columns: 1fr; }
    .bank-accounts-grid { grid-template-columns: 1fr; }
    
    .bank-field {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bank-field label { width: auto; }
    
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-newsletter { grid-column: span 1; }
    .footer-about { text-align: center; }
    
    .footer-logo {
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    
    .footer-title { text-align: center; }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links { align-items: center; }
    .social-links { justify-content: center; }
    
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 280px !important;
        max-width: 90vw !important;
        z-index: 999999 !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-height: 60vh !important;
    }
    
    .error-message {
        font-size: 0.7rem;
        bottom: -20px;
    }
    
    .tel-input-wrapper { min-height: 65px; }
    
    .video-container {
        gap: 1rem;
    }
    
    .video-wrapper {
        flex: 0 0 350px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }

    .about-hero,
    .mission-vision,
    .stats-section,
    .contact {
        padding: 6rem 0;
    }

    .about-text {
        max-width: none;
    }

    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
    }

    .mv-icon svg {
        width: 30px;
        height: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1.5rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .pagination {
        gap: 0.3rem;
    }
}

@media (max-width: 576px) {
    .container { padding: 0 1.5rem; }
    .btn { padding: 0.75rem 1.5rem; }
    .hero { min-height: 70vh; }
    
    .page-hero { padding: 10rem 0 4rem; }
    .page-title { font-size: 2.5rem; }
    .product-title { font-size: 1.75rem; }
    .product-price { font-size: 1.5rem; }
    
    .add-to-cart-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-description {
        padding: 1.5rem;
    }
    
    .breadcrumb {
        padding: 0.5rem;
    }
    
    .breadcrumb ul {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
    }
    
    .donation-form-container { padding: 2rem 1.5rem; }
    .breadcrumb {
        padding: 0.5rem;
    }
    
    .breadcrumb ul {
        font-size: 0.9rem;
    }
    
    .footer-bottom { font-size: 0.8rem; }
    
    /* FEATURED GRID KÜÇÜK EKRANLAR İÇİN EKSİK DÜZELTMELER */
    .featured-services .container .featured-grid,
    .featured-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    .featured-card { 
        min-height: 450px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .tel-input-wrapper { min-height: 60px; }
    
    .btn-product {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        margin-top: 2rem;
    }
    
    .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .page-link-prev, 
    .page-link-next {
        padding: 0 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Çok fazla sayfa varsa sadece birkaçını göster */
    .page-item:not(.active):not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
        display: none;
    }
    
    .iti__country-list {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 250px !important;
        max-width: 85vw !important;
        max-height: 50vh !important;
        z-index: 999999 !important;
    }
    
    .video-wrapper {
        flex: 0 0 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-hero {
        padding: 5rem 0;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding-left: 30px;
    }

    .section-subtitle::before {
        width: 20px;
    }

    .about-image img {
        border-radius: 16px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-icon svg {
        width: 25px;
        height: 25px;
    }

    footer {
        padding: 4rem 0 0;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 6rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Desktop görünümünde mobil menüyü gizle */
@media (min-width: 993px) {
    .mobile-menu-container,
    .mobile-menu-overlay,
    .mobile-menu-btn {
        display: none !important;
    }
}

/* ====================================
   ÇALIŞAN TELEFON INPUT CSS
   ==================================== */

/* ====================================
   ÇALIŞAN TELEFON INPUT CSS
   ==================================== */

/* Telefon input wrapper */
.working-phone-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.working-phone-input-row {
    display: flex;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
	position:relative;
}

.working-phone-input-row:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Country Button */
.working-country-btn {
    display: flex;
    align-items: center;         /* Dikey ortalama */
    justify-content: center;     /* Yatay ortalama */
    background: #f8f9fa;
    border: none;
    border-right: 1px solid var(--light-gray);
    cursor: pointer;
    min-width: 80px;
    width: 80px;                 /* Sabit genişlik */
    height: 100%;                /* Kutunun sonuna kadar aşağı */
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.working-country-btn:hover {
    background: #e9ecef;
}

.working-country-flag {
    width: 24px;
    height: 18px;
    margin-right: 8px;
    border-radius: 2px;
    object-fit: cover;
}

.working-country-code {
    font-weight: 600;
    margin-right: 8px;
    color: var(--secondary);
    font-size: 1rem;
}

.working-dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: var(--gray);
}

.working-country-btn.open .working-dropdown-icon {
    transform: rotate(180deg);
}

.working-phone-number {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    text-indent: 5rem; /* Daha sağdan başlar */
}

.working-phone-number::placeholder {
    color: #adb5bd;
}

/* Dropdown */
.working-country-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    border: 1px solid var(--light-gray) !important;
    border-radius: 12px !important;
    margin-top: 5px !important;
    max-height: 250px !important;
    overflow: hidden !important;
    z-index: 999999 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    display: none !important;
}

.working-country-dropdown.show {
    display: block !important;
}

.working-search-box {
    padding: 12px 16px !important;
    border: none !important;
    border-bottom: 1px solid var(--light-gray) !important;
    width: 100% !important;
    outline: none !important;
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box !important;
}

.working-countries-list {
    max-height: 200px !important;
    overflow-y: auto !important;
}

.working-country-option {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(233, 236, 239, 0.5) !important;
    transition: all 0.3s ease !important;
}

.working-country-option:last-child {
    border-bottom: none !important;
}

.working-country-option:hover {
    background: #f8f9fa !important;
}

.working-country-option.selected {
    background: rgba(230, 57, 70, 0.1) !important;
    color: var(--primary) !important;
}

.working-country-name {
    flex: 1 !important;
    margin-left: 12px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

.working-country-dial {
    font-weight: 600 !important;
    color: var(--gray) !important;
    font-size: 0.9rem !important;
}

.working-country-option.selected .working-country-name,
.working-country-option.selected .working-country-dial {
    color: var(--primary) !important;
}

/* Mobile uyumlu */
@media (max-width: 768px) {
    .working-country-dropdown {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 350px !important;
        max-height: 60vh !important;
    }

    .working-country-btn {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }

    .working-phone-number {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 576px) {
    .working-country-btn {
        min-width: 90px;
        padding: 0.8rem 0.75rem;
    }

    .working-country-code {
        font-size: 0.9rem;
    }

    .working-country-flag {
        width: 20px;
        height: 15px;
        margin-right: 6px;
    }

    .working-phone-number {
        padding: 0.8rem 0.75rem;
        font-size: 0.9rem;
    }
}

.breadcrumb {
    background-color: var(--light);
    padding: 1rem 0;
    margin-top: 120px;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}
 .category-menu {
            padding: 6rem 0;
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .category-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 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='%23e63946' fill-opacity='0.03'%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");
            z-index: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .section-subtitle {
            display: inline-block;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            padding-left: 40px;
        }

        .section-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 30px;
            height: 2px;
            background-color: var(--primary);
            transform: translateY(-50%);
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Kategori Butonları */
        .category-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-btn {
            display: flex;
            align-items: center;
            justify-content: center;
			padding: 0.6rem 0.6rem;
            background: var(--white);
            border: 2px solid rgba(230, 57, 70, 0.1);
            border-radius: 50px;
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            cursor: pointer;
            white-space: nowrap;
            min-width: fit-content;
        }

        .category-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }

        .category-btn:hover {
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }

        .category-btn:hover::before {
            left: 0;
        }

        .category-btn:active {
            transform: translateY(-4px);
        }

        /* Mobil Uyumluluk */
        @media (max-width: 1200px) {
            .category-grid {
                gap: 0.75rem;
            }

            .category-btn {
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .category-menu {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .category-grid {
                gap: 0.5rem;
            }

            .category-btn {
                padding: 0.75rem 1rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1.5rem;
            }

            .category-grid {
                gap: 0.375rem;
                flex-wrap: wrap;
            }

            .category-btn {
                padding: 0.625rem 0.875rem;
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            /* Küçük ekranlarda 2 satıra böl */
            .category-btn:nth-child(n+6) {
                margin-top: 0.5rem;
            }
        }

        /* Animasyonlar */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
	  .category-btn:nth-child(1) { animation-delay: 0.1s; }
        .category-btn:nth-child(2) { animation-delay: 0.2s; }
        .category-btn:nth-child(3) { animation-delay: 0.3s; }
        .category-btn:nth-child(4) { animation-delay: 0.4s; }
        .category-btn:nth-child(5) { animation-delay: 0.5s; }
        .category-btn:nth-child(6) { animation-delay: 0.6s; }
        .category-btn:nth-child(7) { animation-delay: 0.7s; }
        .category-btn:nth-child(8) { animation-delay: 0.8s; }
        .category-btn:nth-child(9) { animation-delay: 0.9s; }
        .category-btn:nth-child(10) { animation-delay: 1.0s; }

/* Kurban Süreci Adım Adım Bölümü Stilleri */
.kurban-process-section {
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.kurban-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%23e63946' fill-opacity='0.03'%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");
    z-index: 0;
}

.kurban-process-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.kurban-steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.kurban-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    position: relative;
    min-width: 0; /* Taşmayı önlemek için */
}

.kurban-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kurban-step-connector {
    flex: 0 0 30px;
    height: 3px;
    background: linear-gradient(to right, #e63946 0%, #f48c8c 100%);
    margin-top: 28px;
    position: relative;
    z-index: 0;
    align-self: center;
    display: block;
}

.kurban-step-icon {
    background: var(--gradient-primary);
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    margin-bottom: 1rem;
}

.kurban-step-icon svg {
    width: 24px;
    height: 24px;
}

.kurban-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kurban-step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.kurban-step-description {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.kurban-proof-section {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(230, 57, 70, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.kurban-proof-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.kurban-proof-icon svg {
    width: 28px;
    height: 28px;
}

.kurban-proof-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.kurban-proof-description {
    color: var(--gray);
    margin-bottom: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .kurban-steps-container {
        overflow-x: auto;
        padding-bottom: 1rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .kurban-step {
        min-width: 180px;
    }
    
    .kurban-step-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .kurban-process-section {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .kurban-process-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .kurban-step {
        padding: 1.25rem 1rem;
        min-width: 160px;
    }
    
    .kurban-step-title {
        font-size: 1rem;
    }
    
    .kurban-proof-section {
        flex-direction: column;
        text-align: center;
    }
    
    .kurban-proof-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .kurban-process-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .kurban-process-title {
        font-size: 1.5rem;
    }
    
    .kurban-step {
        min-width: 140px;
        padding: 1rem 0.75rem;
    }
    
    .kurban-step-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .kurban-step-icon svg {
        width: 20px;
        height: 20px;
    }
}


/* ====================================
   BANKA HESAP SEÇİMİ STİLLERİ
   ==================================== */

/* Banka Seçimi Ana Container */
.bank-selection {
    background-color: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
	color:black;
}

.bank-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e63946' fill-opacity='0.02'%3E%3Cpath d='M20 20m-2 0a2 2 0 1 1 4 0a2 2 0 1 1 -4 0'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.bank-selection:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
}

.bank-selection label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Selectbox Stilleri */
.bank-selection select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.bank-selection select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
}

.bank-selection select:hover {
    border-color: rgba(230, 57, 70, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
}

.bank-selection select option {
    padding: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--dark);
    background-color: var(--white);
}

.bank-selection select option:first-child {
    color: var(--gray);
    font-style: italic;
}

/* Banka Bilgileri Container */
.bank-info-container {
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bank-info-container[style*="block"] {
    opacity: 1;
    transform: translateY(0);
}

/* Banka Mini Kartları */
.bank-mini-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-mini-card {
    background: var(--white);
    border: 2px solid rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bank-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bank-mini-card:hover::before {
    transform: scaleX(1);
}

.bank-mini-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 8px 25px rgba(45, 150, 112, 0.3);
    transform: translateY(-3px);
}

/* Banka Bilgi Satırları */
.bank-mini-name,
.bank-mini-iban {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    transition: all 0.3s ease;
}

.bank-mini-name:last-child,
.bank-mini-iban:last-child {
    margin-bottom: 0;
}

.bank-mini-name:hover,
.bank-mini-iban:hover {
    background-color: rgba(248, 249, 250, 0.95);
    border-color: rgba(230, 57, 70, 0.1);
}

.bank-mini-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.bank-mini-iban {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Span'lar için özel stiller */
.bank-mini-name span,
.bank-mini-iban span {
    word-break: break-word;
    width: 100%;
}

.bank-mini-iban span {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    letter-spacing: 1.5px;
    padding: 0.75rem;
    background-color: rgba(230, 57, 70, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(230, 57, 70, 0.2);
    text-align: center;
}

/* Label'lar için stil */
.bank-mini-name > strong,
.bank-mini-iban > strong {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

/* Kopyala Butonları */
.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.2);
    min-width: 90px;
    text-align: center;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
}

.copy-btn:hover::before {
    left: 100%;
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.2);
}
#unvan-text{
	color:var(--primary);
}
/* Kopyalandı durumu */
.copy-btn.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

.copy-btn.copied:hover {
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Success Modal İçindeki Özel Stiller */
.success-content .bank-selection {
    background-color: rgba(230, 57, 70, 0.02);
    border-color: rgba(45, 150, 112, 0.3);
}

.success-content .bank-selection label {
    color: var(--primary);
    font-weight: 700;
}

.success-content .bank-selection select {
    border-color: rgba(230, 57, 70, 0.2);
    background-color: rgba(255, 255, 255, 0.95);
	color:black;
}

.success-content .bank-selection select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 150, 112, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .bank-selection {
        padding: 1.25rem;
        margin: 1rem 0;
    }
    
    .bank-selection select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .bank-mini-card {
        padding: 1.25rem;
    }
    
    .bank-mini-name,
    .bank-mini-iban {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .copy-btn {
        align-self: stretch;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .bank-mini-iban span {
        font-size: 0.9rem;
        letter-spacing: 1px;
        word-break: break-all;
        line-height: 1.4;
        padding: 0.625rem;
    }
    
    #copy-description {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .bank-selection {
        padding: 1rem;
        margin: 0.75rem 0;
    }
    
    .bank-selection label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .bank-selection select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .bank-mini-card {
        padding: 1rem;
    }
    
    .bank-mini-name,
    .bank-mini-iban {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .bank-mini-name {
        font-size: 0.9rem;
    }
    
    .bank-mini-iban span {
        font-size: 0.85rem;
        padding: 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .copy-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    #copy-description {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        min-width: 65px;
    }
    
    /* Reminder note içindeki div responsive */
    .success-content .reminder-note > div {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    #copy-description {
        width: 100%;
        text-align: center;
    }
}

/* Loading ve Animasyon Efektleri */
@keyframes bankInfoSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes copySuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.bank-info-container.animate-in {
    animation: bankInfoSlideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.copy-btn.success-animation {
    animation: copySuccess 0.3s ease;
}

/* Gelişmiş Hover Efektleri */
.bank-selection:hover {
    background-color: rgba(248, 249, 250, 0.95);
}

.bank-mini-card:hover .bank-mini-name span,
.bank-mini-card:hover .bank-mini-iban span {
    color: var(--primary);
}

/* Focus Göstergeleri */
.bank-selection select:focus,
.copy-btn:focus {
    outline: 2px solid rgba(230, 57, 70, 0.5);
    outline-offset: 2px;
}

/* Copy Description Button */
#copy-description {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.2);
    min-width: 80px;
    text-align: center;
    white-space: nowrap;
}

#copy-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

#copy-description:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
}

#copy-description:hover::before {
    left: 100%;
}

#copy-description:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.2);
}

/* Kopyalandı durumu */
#copy-description.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

#copy-description.copied:hover {
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* SUCCESS MODAL İÇİNDEKİ INLINE CSS'LERİN YERİNE GEÇENLER */

/* Banka seçimi margin'ları */
.success-content .bank-selection {
    margin: 20px 0;
}

.success-content .bank-selection label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.success-content .bank-selection select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Bank info container */
.success-content #bank-info-container {
    display: none; /* Default gizli */
}

.success-content #bank-info-container.show {
    display: block; /* JavaScript ile show class'ı eklenince görün */
}

/* Bank mini card içindeki butonlar */
.success-content .bank-mini-name button,
.success-content .bank-mini-iban button {
    margin-left: 10px;
    padding: 4px 8px;
    font-size: 12px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Reminder note içindeki inline style'lar */
.success-content .reminder-note {
    background-color: #f0f8ff;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.success-content .reminder-note > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.success-content #copy-description {
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* WhatsApp button */
.success-content .btn.btn-primary {
    width: 100%;
    margin-top: 15px;
}

/* Dark Mode Uyumluluğu (Opsiyonel) */
@media (prefers-color-scheme: dark) {
    .bank-selection {
        background-color: rgba(33, 37, 41, 0.8);
        border-color: rgba(230, 57, 70, 0.2);
    }
    
    .bank-selection select {
        background-color: rgba(33, 37, 41, 0.9);
        color: rgba(255, 255, 255, 0.9);
        border-color: rgba(108, 117, 125, 0.3);
    }
    
    .bank-mini-card {
        background: linear-gradient(135deg, rgba(33, 37, 41, 0.95) 0%, rgba(52, 58, 64, 0.9) 100%);
        border-color: rgba(230, 57, 70, 0.2);
    }
    
    .bank-mini-name,
    .bank-mini-iban {
        background-color: rgba(52, 58, 64, 0.7);
        border-color: rgba(230, 57, 70, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }
}