/* Ana Sayfa CSS - Blok Yapısı */

/* Anasayfa için body padding-top'u kaldır */
body.index-page {
    padding-top: 0 !important;
    background-color: transparent; /* Anasayfada slider arka planı görünsün */
}

/* Genel Blok Stili */
.page-block {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* 1. Blok: Slider - Her zaman ekran çözünürlüğü kadar */
.block-slider {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 0;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(34, 74, 152, 0.8);
    border: none;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 102;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-nav:hover {
    background-color: rgba(34, 74, 152, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-nav span {
    line-height: 1;
    font-weight: bold;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 101;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slider Alt Menüler */
.slider-bottom-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    padding: 40px 20px 30px;
    background-image: url('../images/shortcuts-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    pointer-events: auto;
}

.slider-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background-color: #224a98;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.slider-menu-item:hover {
    background-color: #1a3a7a;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}


.slider-menu-icon {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.slider-menu-item i {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.slider-menu-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
}

.slider-menu-title {
    font-size: 16px;
    /*font-weight: 600;*/
    text-align: left;
    margin-bottom: 0;
    line-height: 1.3;
    display: block;
}

.slider-menu-desc {
    font-size: 12px;
    text-align: left;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
    line-height: 1.2;
}

/* Slider Menü Sidebar (Yukarı Açılan) */
.slider-menu-sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 350px;
    min-width: 200px;
    max-width: 500px;
    max-height: 80vh;
    background-color: #f5a623;
    box-shadow: 2px 0 15px rgba(0,0,0,0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.3s ease, bottom 0.3s ease, width 0.3s ease;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.slider-menu-sidebar.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.slider-sidebar-close {
    display: none; /* Kapatma butonunu gizle */
}

.slider-sidebar-content {
    padding: 15px 10px 15px;
    height: 100%;
    overflow-y: auto;
}

.slider-sidebar-title {
    display: none; /* Başlığı gizle */
}

.slider-sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slider-sidebar-menu-list li {
    margin-bottom: 5px;
}

.slider-sidebar-menu-list a {
    display: flex;
    align-items: center;
    padding: 10px 8px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.slider-sidebar-menu-list a::before {
    content: "→";
    margin-right: 6px;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.slider-sidebar-menu-list a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.slider-sidebar-menu-list a:hover::before {
    transform: translateX(3px);
}

.slider-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* Hover modunda tıklamaları engelle */
}

.slider-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Aktifken tıklamalara izin ver */
}

/* Slider menü toggle butonu için özel stil */
.slider-menu-toggle {
    border: none;
    font-family: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-menu-sidebar {
        width: 100%;
        max-height: 90vh;
    }
}
@media (max-width: 992px) {
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 35px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-menu-container {
        gap: 15px;
    }
    
    .slider-menu-item {
        min-width: 150px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .block-slider {
        height: calc(100vh - 300px); /* Navigation butonları için daha fazla alan */
        min-height: calc(100vh - 300px);
    }
    
    .hero-slider {
        height: 100%;
        top: 0; /* Üstten başla */
    }
    
    .slider-nav {
        display: none; /* Mobilde okları gizle */
    }
    
    .slider-indicators {
        bottom: 80px; /* Navigation butonlarının üstünde */
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-bottom-menu {
        padding: 30px 15px 20px;
    }
    
    .slider-menu-container {
        gap: 10px;
    }
    
    .slider-menu-item {
        min-width: 140px;
        padding: 12px 15px;
        gap: 10px;
    }
    
    .slider-menu-title {
        font-size: 14px;
    }
    
    .slider-menu-desc {
        font-size: 11px;
    }
    
    .slider-menu-icon,
    .slider-menu-item i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .slider-menu-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .slider-menu-item {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        gap: 12px;
    }
    
    .slider-menu-icon,
    .slider-menu-item i {
        font-size: 24px;
    }
    
    .slider-menu-title {
        font-size: 13px;
    }
    
    .slider-menu-desc {
        font-size: 10px;
    }
}

/* 2. Blok: Hızlı İşlemler */
.block-quick-actions {
    width: 100%;
    position: relative;
    z-index: 10;
    /*background-color: #f5f5f5;*/
    padding: 40px 40px;
    margin: 0;
    margin-top: 100vh; /* Slider yüksekliği kadar boşluk */
}

.quick-actions-section {
    width: 100%;
    /*background-color: #f5f5f5;*/
    padding: 0;
    margin: 0;
    text-align: left;
}

.quick-actions-container {
    max-width: 1000px;
    margin: 10px 0;
    margin-left: 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.quick-actions-title {
    margin-bottom: 0;
    text-align: left;
    grid-column: 1;
    align-self: start;
}

.quick-actions-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0080c9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
    text-align: left !important;
    display: block;
    width: auto;
    margin-left: 0;
    margin-right: auto;
}

.quick-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    margin-top: 0;
    grid-column: 2;
    width: 100%;
}

.quick-actions-nav {
    background-color: #0080c9;
    border: none;
    width: 40px;
    height: 100%;
    min-height: 150px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.quick-actions-nav:hover {
    background-color: #1a3a7a;
}

.quick-actions-nav span {
    line-height: 1;
    font-weight: bold;
}

.quick-actions-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.quick-actions-menu {
    display: flex;
    gap: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.quick-actions-menu-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 5);
    min-width: calc(100% / 5);
    padding: 20px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    border-right: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.quick-action-item:last-child {
    border-right: none;
}

.quick-action-item:hover {
    transform: translateY(-3px);
    color: #0080c9;
    background-color: #f8f9fa;
}

.quick-action-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s ease;
}

.quick-action-item:hover .quick-action-icon {
    color: #0080c9;
}

.quick-action-item i {
    font-size: 32px;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s ease;
}

.quick-action-item:hover i {
    color: #0080c9;
}

.quick-action-text {
    font-size: 16px;
    text-align: center;
    line-height: 1.3;
}

/* Mobil Hızlı İşlemler - Masaüstünde gizli */
.quick-actions-mobile-section {
    display: none;
}

/* Responsive Hızlı İşlemler */
@media (max-width: 992px) {
    .quick-actions-title h2 {
        font-size: 28px;
    }
    
    .quick-actions-nav {
        width: 40px;
        min-height: 180px;
        font-size: 30px;
    }
    
    .quick-action-item {
        width: calc(100% / 4);
        min-width: calc(100% / 4);
        padding: 15px 10px;
    }
    
    .quick-action-icon,
    .quick-action-item i {
        font-size: 28px;
    }
    
    .quick-action-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .quick-actions-section {
       /*padding: 30px 15px;*/
    }
    
    .quick-actions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-actions-title {
        grid-column: 1;
    }
    
    .quick-actions-wrapper {
        grid-column: 1;
    }
    
    .quick-actions-title h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .quick-actions-nav {
        width: 35px;
        min-height: 160px;
        font-size: 28px;
    }
    
    .quick-actions-menu {
        padding: 15px 0;
    }
    
    .quick-action-item {
        width: calc(100% / 3);
        min-width: calc(100% / 3);
        padding: 15px 10px;
    }
    
    .quick-action-icon,
    .quick-action-item i {
        font-size: 26px;
    }
    
    .quick-action-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quick-actions-title h2 {
        font-size: 20px;
    }
    
    .quick-actions-nav {
        width: 30px;
        min-height: 140px;
        font-size: 24px;
    }
    
    .quick-action-item {
        width: calc(100% / 2);
        min-width: calc(100% / 2);
        padding: 12px 8px;
    }
    
    .quick-action-icon,
    .quick-action-item i {
        font-size: 24px;
    }
    
    .quick-action-text {
        font-size: 13px;
    }
}

/* 3. Blok: Haberler, Duyurular, İhaleler */
.block-news {
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: #fff;
    padding: 50px 20px;
    margin: 0;
}

.news-announcements-section {
    width: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.news-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0080c9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-family: "Bebas Neue", cursive;
}

/* Haberler Kolonu */
.news-column {
    display: flex;
    flex-direction: column;
}

/* Haberler Slider */
.news-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.news-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.news-slide.active {
    opacity: 1;
    visibility: visible;
}

.news-slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.news-slide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.news-slide-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.news-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-slide:hover .news-slide-image img {
    transform: scale(1.05);
}

.news-slide-text {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-slide-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: "Bebas Neue", cursive;
}

.news-slide-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-slide-date {
    font-size: 13px;
    color: #999;
    text-align: right;
    font-style: italic;
}

.news-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 128, 201, 0.9);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.news-slider-nav:hover {
    background-color: rgba(0, 128, 201, 1);
    transform: translateY(-50%) scale(1.1);
}

.news-slider-prev {
    left: 15px;
}

.news-slider-next {
    right: 15px;
}

.news-slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    z-index: 10;
}

.news-pagination-all {
    background-color: #0080c9;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-pagination-all:hover {
    background-color: #1a3a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 201, 0.3);
}

.news-slider-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-number-btn {
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: 2px solid rgba(255, 255, 255, 0.9);
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-number-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.news-number-btn.active {
    background-color: #0080c9;
    color: #fff;
    border-color: #0080c9;
}

.news-main-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-main-item-link:hover {
    transform: translateY(-5px);
}

.news-main-item-link:hover .news-main-item {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.news-main-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.news-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: "Bebas Neue", cursive;
}

.news-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-item-small {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 15px;
}

.news-item-small .news-image {
    flex: 0 0 120px;
    height: 80px;
    margin-bottom: 0;
}

.news-item-small .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-small .news-content {
    flex: 1;
    padding: 0;
}

.news-item-small .news-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.news-item-small .news-description {
    font-size: 13px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-small .news-date {
    font-size: 12px;
}

.news-date {
    font-size: 13px;
    color: #999;
    text-align: right;
    font-style: italic;
}

.news-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn {
    background-color: #0080c9;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: #0066a3;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background-color: #e0e0e0;
}

.pagination-number.active {
    background-color: #0080c9;
    color: #fff;
}

.pagination-all {
    background-color: #0080c9;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: auto;
}

.pagination-all:hover {
    background-color: #0066a3;
    transform: translateY(-2px);
}

/* Duyurular Kolonu */
.announcements-column {
    display: flex;
    flex-direction: column;
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.announcement-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.announcement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.announcement-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.announcement-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: "Bebas Neue", cursive;
}

.announcement-date {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* İhaleler Kolonu */
.tenders-column {
    display: flex;
    flex-direction: column;
}

.tenders-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 200px;
}

.tenders-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tender-list-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.tender-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tender-list-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.tender-list-link:hover {
    color: #0080c9;
}

.tender-list-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tender-list-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.tender-list-link:hover .tender-list-title {
    color: #0080c9;
}

.tender-list-number {
    font-size: 13px;
    color: #666;
}

.tender-list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tender-date {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.tender-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-completed {
    background-color: #f8d7da;
    color: #721c24;
}

.tender-list-link-btn {
    margin-top: 8px;
}

.btn-tender-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #0080c9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-tender-link:hover {
    background-color: #1a3a7a;
    color: #fff;
    transform: translateY(-1px);
}

.btn-tender-link i {
    font-size: 11px;
}

.tender-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.tender-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.tender-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tender-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tender-date {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.footer-developer-link{
    text-decoration: none;
    color: #fff;

}

/* Etkinlikler Kolonu */
.events-column {
    display: flex;
    flex-direction: column;
}

.events-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item-link {
    text-decoration: none;
    color: inherit;
}

.event-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.event-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image .event-logo-fallback {
    object-fit: contain !important;
    background: #f0f0f0;
    padding: 10px;
}

.event-featured-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 193, 7, 0.95);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.event-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-date {
    font-size: 12px;
    color: #0080c9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-date i {
    font-size: 11px;
}

.event-location {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-location i {
    font-size: 11px;
    color: #0080c9;
}

.events-more {
    margin-top: 10px;
    text-align: center;
}

.btn-events-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0080c9;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-events-all:hover {
    background: #1a3a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 201, 0.3);
}


/* Responsive */
@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .news-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-announcements-section {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .announcement-item {
        padding: 10px;
    }
    
    .announcement-image {
        width: 60px;
        height: 60px;
    }
    
    .announcement-title {
        font-size: 13px;
    }
}
