﻿.hero-slider {
    position: relative;
    overflow: hidden;
}

.stats-t .stat-card {
    height: 180px;
}
/*
.feature-text {
    background: var(--gradient-primary);
   
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
}

    .feature-text .feature-info a {
        text-decoration: none;
        color: #fff;
        font-size: 1rem;
    }*/
.hero-slide {
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content2 {
    z-index: 2;
    position: relative;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-indicators button {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 0 4px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Facility Cards */
.facility-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.facility-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .facility-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc107;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 47, 121, 0.9) 0%, rgba(26, 68, 128, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facility-card:hover .facility-overlay {
    opacity: 1;
}

.facility-info {
    text-align: center;
    color: white;
    padding: 20px;
}

    .facility-info h4 {
        margin-bottom: 10px;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .facility-info p {
        margin-bottom: 20px;
        opacity: 0.9;
    }

.facility-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.btn-facility-view {
    background: #fff;
    color: #0f2f79;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .btn-facility-view:hover {
        background: #f8f9fa;
        transform: scale(1.05);
    }

.btn-facility-contact {
    background: #28a745;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-facility-contact:hover {
        background: #218838;
        transform: scale(1.1);
        color: white;
    }

.facility-content {
    padding: 20px;
}

.facility-title {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2f79;
}

.facility-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.facility-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.facility-phone,
.facility-hours {
    color: #666;
    font-size: 0.85rem;
}

/* İstatistik kartları için facility ikonu */
.stat-icon.facility {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* ========== YENİ HOMEPAGE SECTION'LARI - TEMA UYUMLU ========== */

/* İstatistik Kartları */
.stats-section {
    background: var(--genel-background);
    position: relative;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(var(--primary-color-rgb), 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        animation: float 20s ease-in-out infinite;
    }

.stat-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .stat-card:hover {
        transform: translateY(-9px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
}

    .stat-icon.news {
        background: var(--gradient-primary);
    }

    .stat-icon.announcement {
        background: var(--gradient-accent);
    }

    .stat-icon.gallery {
        background: var(--gradient-success);
    }

    .stat-icon.users {
        background: var(--gradient-warning);
    }

    .stat-icon::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: inherit;
        z-index: -1;
        animation: rotate 4s linear infinite;
    }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-detail {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
}

    .section-icon::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: var(--gradient-primary);
        z-index: -1;
        animation: rotate 4s linear infinite;
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Duyuru Bölümü */
.announcements-section {
    background: var(--genel-background);
    position: relative;
}

    .announcements-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(var(--accent-color-rgb, var(--primary-color-rgb)), 0.2) 0%, transparent 50%);
        animation: float 25s ease-in-out infinite reverse;
    }

.announcement-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

    .announcement-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.3);
    }

.announcement-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.important-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.announcement-content {
    padding: 2rem;
    color: white;
}

.announcement-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: white;
}

.announcement-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-announcement {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--default-button-shadow);
}

    .btn-announcement:hover {
        transform: translateY(-2px);
        box-shadow: var(--default-button-shadow-hover);
        color: white;
    }

/* Haber Bölümü */
.news-section {
    background: var(--genel-background);
    position: relative;
}

    .news-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(var(--secondary-color-rgb, var(--primary-color-rgb)), 0.2) 0%, transparent 50%);
        animation: float 30s ease-in-out infinite;
    }

.featured-news-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

    .featured-news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

.news-image-large {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.breaking-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.news-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-news-content {
    padding: 2rem;
    color: white;
}

.featured-news-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: white;
}

.featured-news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-meta-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-news-read {
    background: var(--gradient-success);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--default-button-shadow);
}

    .btn-news-read:hover {
        transform: translateY(-2px);
        box-shadow: var(--default-button-shadow-hover);
        color: white;
    }

/* Küçük Haber Listesi */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.news-item-small {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    color: white;
}

    .news-item-small:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

.news-image-small {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
}

.breaking-mini {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.news-content-small {
    flex: 1;
}

.news-title-small {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: white;
}

    .news-title-small a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .news-title-small a:hover {
            color: var(--accent-color);
        }

.news-meta-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.category-small {
    background: var(--gradient-accent);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
}

/* Galeri Bölümü */
.gallery-section {
    background: var(--genel-background);
    position: relative;
}

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 60% 40%, rgba(var(--success-color-rgb, var(--primary-color-rgb)), 0.2) 0%, transparent 50%);
        animation: float 35s ease-in-out infinite;
    }

.gallery-card-home {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 250px;
    position: relative;
    z-index: 2;
}

    .gallery-card-home:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

.gallery-image-home {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .gallery-image-home img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.gallery-card-home:hover .gallery-image-home img {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.gallery-card-home:hover .gallery-overlay-home {
    opacity: 0.95;
}

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white;
}

.btn-gallery-view {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-gallery-view:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
        color: white;
    }

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-accent);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
}

.image-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* CTA Section */
.cta-section {
    background: var(--genel-background);
    position: relative;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(var(--accent-color-rgb, var(--primary-color-rgb)), 0.3) 0%, transparent 50%);
        animation: float 40s ease-in-out infinite;
    }

.cta-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    z-index: 2;
}

    .cta-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-colored);
}

.cta-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    gap: 1rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.btn-cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--default-button-shadow);
}

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--default-button-shadow-hover);
        color: white;
    }

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        color: white;
    }

/* Genel Section More Button */
.btn-section-more {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

    .btn-section-more:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        color: white;
        border-color: var(--primary-color);
    }

/* MEVCUT STİLLER AYNI KALACAK */

/* ========== BEYAZ ARKAPLAN İÇİN YENİ STİLLER ========== */

/* Dark (Koyu) Section Headers - Beyaz arkaplan için */
.section-icon-dark {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: var(--shadow-colored);
}

    .section-icon-dark::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: var(--gradient-primary);
        z-index: -1;
        animation: rotate 4s linear infinite;
    }

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle-dark {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin: 0;
}

/* Beyaz Arkaplan İçin Duyuru Kartları */
.announcement-card-white {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

    .announcement-card-white:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.announcement-content-white {
    padding: 2rem;
    color: var(--dark-color);
}

.announcement-title-dark {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--dark-color);
}

.announcement-excerpt-dark {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.announcement-meta-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Beyaz Arkaplan İçin Galeri Kartları */
.gallery-card-home-white {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 250px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

    .gallery-card-home-white:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

/* Beyaz Arkaplan İçin Section More Button */
.btn-section-more-dark {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--default-button-shadow);
}

    .btn-section-more-dark:hover {
        transform: translateY(-2px);
        box-shadow: var(--default-button-shadow-hover);
        color: white;
    }

/* ========== GRADIENT ARKAPLAN STİLLERİ (MEVCUT) ========== */

/* İstatistik Kartları - Gradient arkaplan */
.stats-section {
    background: #fff;
    position: relative;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(var(--primary-color-rgb), 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        animation: float 20s ease-in-out infinite;
    }

.stat-card {
    background: var(--genel-background);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Haber Bölümü - Gradient arkaplan */
.news-section {
    background: var(--genel-background);
    position: relative;
}

    .news-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(var(--secondary-color-rgb, var(--primary-color-rgb)), 0.2) 0%, transparent 50%);
        animation: float 30s ease-in-out infinite;
    }

.featured-news-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* CTA Section - Gradient arkaplan */
.cta-section {
    background: var(--genel-background);
    position: relative;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(var(--accent-color-rgb, var(--primary-color-rgb)), 0.3) 0%, transparent 50%);
        animation: float 40s ease-in-out infinite;
    }

.cta-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    z-index: 2;
}

/* ========== COMMON STİLLER ========== */

/* Tüm icon'lar için animasyon */
.stat-icon::before,
.section-icon::before,
.section-icon-dark::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

/* Tüm butonlar için tema uyumlu renkler */
.btn-announcement,
.btn-news-read,
.btn-section-more,
.btn-section-more-dark,
.btn-cta-primary {
    box-shadow: var(--default-button-shadow);
}

    .btn-announcement:hover,
    .btn-news-read:hover,
    .btn-section-more:hover,
    .btn-section-more-dark:hover,
    .btn-cta-primary:hover {
        box-shadow: var(--default-button-shadow-hover);
    }

.ihale-card-home {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
}

    .ihale-card-home:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.ihale-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.ihale-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ihale-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #718096;
}

.ihale-dates {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .date-row:last-child {
        margin-bottom: 0;
    }

.date-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.date-value {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 600;
}

.deadline-warning {
    color: #dc3545 !important;
    animation: pulse 2s infinite;
}

.ihale-actions {
    padding: 1rem 1.5rem;
    text-align: center;
}

.btn-ihale-detail-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-ihale-detail-home:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        color: white;
    }

.urgent-ihale {
    border-left: 4px solid #dc3545;
    background: linear-gradient(90deg, #fff5f5 0%, #ffffff 100%);
}

    .urgent-ihale .ihale-title {
        color: #dc3545;
    }

.min-vh-tam {
    min-height: 100vh !important;
}
/* Responsive güncellemeleri */
@media (max-width: 768px) {
    /*    .hero-slider {
        display: none;
    }*/

    .exa-widht-yuzde30 {
        margin-bottom: 3%;
        width: 50%;
    }

    .min-vh-tam {
        min-height: 50vh !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .section-title,
    .section-title-dark {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }
}

/* Animasyonlar */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}
