/* Paket Detay Sayfası Stilleri */
.paket-detay-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.paket-banner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}

.content-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #003d82;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8e8e8;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.content-text p {
    margin-bottom: 15px;
}

.content-text ul,
.content-text ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 8px;
}

/* Özellikler Grid */
.ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ozellik-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ozellik-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.ozellik-item i {
    font-size: 20px;
    flex-shrink: 0;
}

.ozellik-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Sidebar */
.paket-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-thumbnail-wrapper,
.paket-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail-wrapper img,
.paket-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #003d82;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.video-play-btn:hover {
    background: white;
    transform: scale(1.1);
    color: #ff6600;
}

.video-play-btn i {
    margin-left: 3px;
}

/* Fiyat Bölümü */
.price-section {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff6600;
}

.old-price {
    font-size: 18px;
    color: #999;
}

.old-price del {
    text-decoration: line-through;
}

/* Paket Bilgi Listesi */
.paket-info-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.info-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.info-item strong {
    color: #003d82;
}

/* Video Modal */
#videoModal .modal-content {
    background: #000;
    border: none;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal iframe {
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .paket-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .ozellikler-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .paket-detay-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


