/* ============================================ */
/* PAKETLER SAYFASI - CSS */
/* ============================================ */

/* HERO SECTION */
.paketler-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.paketler-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.paketler-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

/* PAKETLER CONTENT */
.paketler-content {
    background: #fff;
}

/* PAKET ITEM */
.paket-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.paket-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.paket-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.paket-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.paket-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.paket-item:hover .paket-image {
    transform: scale(1.1);
}

.paket-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 3;
}

.paket-zoom-icon i {
    font-size: 1.8rem;
    color: #667eea;
}

.paket-item:hover .paket-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.paket-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
}

.paket-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.paket-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.paket-overlay-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.paket-overlay-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.paket-overlay-meta i {
    font-size: 1rem;
}

/* CTA SECTION */
.paketler-cta {
    background: #f8f9fa;
}

.paketler-cta .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
    transition: all 0.3s ease;
}

.paketler-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.paketler-cta .btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}

.paketler-cta .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .paketler-hero {
        height: 250px;
    }
    
    .paketler-hero h1 {
        font-size: 2.5rem;
    }
    
    .paket-overlay h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .paketler-hero {
        height: 200px;
    }
    
    .paketler-hero h1 {
        font-size: 2rem;
    }
    
    .paket-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .paketler-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .paketler-cta .btn.me-3 {
        margin-right: 0 !important;
    }
}
