/* ===============================
   KAÇIRILMAYACAK FIRSATLAR BÖLÜMÜ
   =============================== */

/* Ücretsiz İptal Banner */
.banner-section {
    width: 100%;
    padding: 60px 0 0 0;
    background: var(--gray-50);
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tur sayfasındaki banner için özel stil */
.tour-main-container .banner-section {
    width: 100%;
    padding: 20px 0;
    background: transparent;
}

.tour-main-container .banner-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.banner-mobile {
    display: none;
}

.banner-desktop {
    display: block;
}

.limited-offers-section {
    width: 100%;
    padding: 60px 0 0 0;
    background: var(--gray-50);
}

.limited-offers-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

/* Fırsat Kartı */
.offer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    aspect-ratio: 7 / 2.7;
}

.offer-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.offer-card a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.offer-card:hover img {
    transform: scale(1);
}

/* Gradient Overlay (Alt 1/3) */
.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 25px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    color: var(--white);
}

/* Sol Taraf - Kategori Bilgileri */
.offer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.offer-tour-count {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Sağ Taraf - Sayaç */
.offer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.countdown-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

/* Countdown Boxes */
.countdown-boxes {
    display: flex;
    gap: 6px;
    align-items: center;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 4px 6px;
    min-width: 38px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

/* Sıfır değerli kutular için silik görünüm */
.time-box.time-box-zero {
    opacity: 0.4;
}

.time-box .number {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-blue);
}

.time-box .label {
    font-size: 7px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-blue);
    opacity: 0.8;
    letter-spacing: 0.3px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .offers-grid {
        gap: 20px;
    }

    .offer-title {
        font-size: 17px;
    }

    .offer-tour-count {
        font-size: 12px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .time-box {
        min-width: 35px;
        padding: 4px 6px;
    }

    .time-box .number {
        font-size: 13px;
    }

    .time-box .label {
        font-size: 7px;
    }
    
    .banner-section {
        padding: 20px 0;
    }
    
    .banner-container {
        padding: 0 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
    }
    
    .banner-section {
        padding: 40px 0 0 0;
    }
    
    .banner-container {
        padding: 0 10px;
    }
    
    .banner-image {
        border-radius: 8px;
    }
    
    /* Tur sayfası mobil */
    .tour-main-container .banner-section {
        padding: 15px 0;
    }
    
    .tour-main-container .banner-container {
        padding: 0;
    }
    
    .limited-offers-section {
        padding: 40px 0 0 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        aspect-ratio: 7 / 3;
    }

    .offer-overlay {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .offer-left {
        width: 100%;
    }

    .offer-title {
        font-size: 16px;
    }

    .offer-tour-count {
        font-size: 11px;
    }

    .offer-right {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-boxes {
        gap: 5px;
    }

    .time-box {
        min-width: 32px;
        padding: 3px 5px;
        gap: 1px;
    }

    .time-box .number {
        font-size: 12px;
    }

    .time-box .label {
        font-size: 6px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .offer-overlay {
        padding: 12px 15px;
    }

    .offer-title {
        font-size: 14px;
    }

    .offer-tour-count {
        font-size: 10px;
    }

    .countdown-label {
        font-size: 9px;
    }

    .countdown-boxes {
        gap: 4px;
    }

    .time-box {
        min-width: 30px;
        padding: 3px 4px;
    }

    .time-box .number {
        font-size: 11px;
    }

    .time-box .label {
        font-size: 6px;
    }
}
