/* ============================================
   YUKLENIYOO - PAKET SİSTEMİ STİLLERİ
   Modern, gradient'li, responsive tasarım
============================================ */

:root {
    --paket-primary: #FF6B00;
    --paket-primary-light: #FF8C42;
    --paket-success: #10B981;
    --paket-warning: #F59E0B;
    --paket-info: #3B82F6;
    --paket-purple: #8B5CF6;
    --paket-bg: #F8FAFC;
    --paket-text: #1F2937;
    --paket-text-light: #6B7280;
    --paket-border: #E5E7EB;
}

/* ============================================
   HERO SECTION
============================================ */
.paket-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 100%);
    padding: 80px 0 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.paket-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
}

.paket-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.2);
    color: #FFB347;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.paket-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.paket-hero-highlight {
    background: linear-gradient(135deg, #FF6B00, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paket-hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}

.paket-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.paket-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.paket-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFB347;
}

.paket-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.paket-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.paket-hero-visual {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paket-visual-card {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #FF6B00, #FF8C42);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.4);
    position: relative;
    z-index: 2;
}

.paket-visual-card i {
    font-size: 60px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.paket-visual-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.paket-visual-label {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 6px;
}

.paket-visual-float {
    animation: paketFloat 3s ease-in-out infinite;
}

@keyframes paketFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.paket-visual-bubble {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--paket-text);
    z-index: 3;
    animation: paketFloat 4s ease-in-out infinite;
}

.paket-visual-bubble i {
    font-size: 18px;
    color: var(--paket-success);
}

.paket-visual-bubble-1 {
    top: 30px;
    left: -10px;
    animation-delay: 0.5s;
}

.paket-visual-bubble-2 {
    bottom: 40px;
    right: -10px;
    animation-delay: 1s;
}

/* ============================================
   PAKETLER SEKSİYONU
============================================ */
.paket-section {
    padding: 80px 0;
    background: var(--paket-bg);
}

.paket-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--paket-text);
    margin-bottom: 12px;
}

.paket-section-subtitle {
    font-size: 1.1rem;
    color: var(--paket-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.paket-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.paket-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--paket-color);
}

.paket-card-populer {
    border-color: var(--paket-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.paket-card-populer:hover {
    transform: scale(1.05) translateY(-12px);
}

.paket-populer-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.paket-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.paket-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--paket-text);
    margin-bottom: 8px;
}

.paket-card-desc {
    font-size: 13px;
    color: var(--paket-text-light);
    margin-bottom: 20px;
    min-height: 38px;
}

.paket-kredi-box {
    background: var(--paket-bg);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.paket-kredi-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.paket-kredi-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.paket-kredi-label {
    font-size: 16px;
    color: var(--paket-text-light);
    font-weight: 600;
}

.paket-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--paket-success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.paket-ozellikler {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.paket-ozellikler li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--paket-text);
}

.paket-ozellikler li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}

.paket-fiyat-row {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--paket-border);
}

.paket-fiyat-label {
    font-size: 11px;
    color: var(--paket-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paket-fiyat-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--paket-text);
    line-height: 1;
    margin: 4px 0;
}

.paket-fiyat-detail {
    font-size: 12px;
    color: var(--paket-text-light);
}

.paket-buton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.paket-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

/* ============================================
   NASIL ÇALIŞIR
============================================ */
.paket-nasil-calisir {
    padding: 80px 0;
    background: #fff;
}

.paket-nasil-calisir h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--paket-text);
}

.paket-step {
    background: var(--paket-bg);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.paket-step:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.paket-step-num {
    position: absolute;
    top: -16px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--paket-primary), var(--paket-primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.paket-step-icon {
    font-size: 48px;
    color: var(--paket-primary);
    margin-bottom: 16px;
    display: block;
}

.paket-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--paket-text);
    margin-bottom: 8px;
}

.paket-step p {
    font-size: 13px;
    color: var(--paket-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SSS
============================================ */
.paket-sss {
    padding: 80px 0;
    background: var(--paket-bg);
}

.paket-sss h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--paket-text);
}

.paket-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.paket-accordion .accordion-item {
    border: none !important;
    background: #fff;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.paket-accordion .accordion-button {
    background: #fff !important;
    color: var(--paket-text) !important;
    font-weight: 700;
    padding: 20px 24px;
    border: none !important;
    box-shadow: none !important;
    font-size: 15px;
}

.paket-accordion .accordion-button:not(.collapsed) {
    background: var(--paket-bg) !important;
    color: var(--paket-primary) !important;
}

.paket-accordion .accordion-body {
    padding: 0 24px 20px;
    color: var(--paket-text-light);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
============================================ */
.paket-cta {
    padding: 60px 0;
    background: var(--paket-bg);
}

.paket-cta-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 100%);
    border-radius: 28px;
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.paket-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
}

.paket-cta-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
}

.paket-cta-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    position: relative;
}

.paket-cta-card .btn {
    border-radius: 14px;
    padding: 12px 24px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PAKET DETAY SAYFASI
============================================ */
.paket-detay-section {
    padding: 40px 0 80px;
    background: var(--paket-bg);
    min-height: 100vh;
}

.paket-geri-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--paket-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.paket-geri-link:hover {
    color: var(--paket-primary);
}

.paket-detay-hero {
    border-radius: 28px;
    padding: 48px 40px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.paket-detay-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.paket-detay-ad {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.paket-detay-aciklama {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.paket-detay-kredi-box {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 18px;
}

.paket-detay-kredi-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paket-detay-kredi-value {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.paket-detay-bonus {
    display: inline-block;
    background: var(--paket-success);
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 800;
}

.paket-detay-fiyat-box {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 24px;
}

.paket-detay-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.paket-detay-baslik {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--paket-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.paket-detay-baslik i {
    color: var(--paket-warning);
}

.paket-detay-ozellikler {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paket-detay-ozellikler li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--paket-border);
    font-size: 15px;
    color: var(--paket-text);
}

.paket-detay-ozellikler li:last-child {
    border-bottom: none;
}

.paket-ozellik-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.paket-detay-sticky {
    position: sticky;
    top: 90px;
}

.paket-detay-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.paket-detay-sidebar h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--paket-text);
    margin-bottom: 20px;
}

.paket-ozet-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--paket-text);
    font-size: 14px;
}

.paket-ozet-row strong {
    font-weight: 700;
}

.paket-ozet-bonus {
    color: var(--paket-success);
}

.paket-ozet-total {
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid var(--paket-border);
    margin-top: 8px;
    padding-top: 16px;
}

.paket-ozet-total strong {
    font-size: 22px;
    font-weight: 800;
}

.paket-detay-uyari {
    background: rgba(59, 130, 246, 0.08);
    border-left: 4px solid var(--paket-info);
    padding: 16px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    gap: 12px;
}

.paket-detay-uyari i {
    color: var(--paket-info);
    font-size: 20px;
    flex-shrink: 0;
}

.paket-detay-uyari p {
    font-size: 13px;
    color: var(--paket-text);
    margin: 0;
    line-height: 1.5;
}

.paket-indir-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    color: #fff !important;
    font-weight: 700;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 15px;
    border: none;
}

.paket-indir-btn-light {
    background: var(--paket-text) !important;
    color: #fff !important;
}

.paket-indir-btn:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.paket-guvenlik-rozetleri {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paket-guvenlik-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 13px;
    color: var(--paket-text-light);
    border-bottom: 1px solid var(--paket-border);
}

.paket-guvenlik-item:last-child {
    border-bottom: none;
}

.paket-guvenlik-item i {
    color: var(--paket-success);
    font-size: 18px;
}

/* ============================================
   ADMIN PANELİ
============================================ */
.paket-admin-section {
    background: var(--paket-bg);
    min-height: 100vh;
}

.paket-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 24px 32px;
    border-radius: 18px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.paket-admin-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--paket-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.paket-admin-title i {
    color: var(--paket-primary);
}

.paket-admin-subtitle {
    color: var(--paket-text-light);
    margin: 4px 0 0;
}

.paket-admin-btn {
    background: linear-gradient(135deg, var(--paket-primary), var(--paket-primary-light));
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.paket-admin-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.paket-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.paket-admin-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.paket-admin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.paket-admin-card-header {
    padding: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.paket-admin-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.paket-admin-card-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.paket-admin-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.paket-admin-status.aktif {
    background: rgba(16, 185, 129, 0.25);
    color: #fff;
}

.paket-admin-status.pasif {
    background: rgba(239, 68, 68, 0.25);
    color: #fff;
}

.paket-admin-card-body {
    padding: 20px 24px;
}

.paket-admin-aciklama {
    font-size: 13px;
    color: var(--paket-text-light);
    margin-bottom: 16px;
    min-height: 38px;
}

.paket-admin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    background: var(--paket-bg);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.paket-admin-stat {
    text-align: center;
}

.paket-admin-stat-label {
    font-size: 10px;
    color: var(--paket-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.paket-admin-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--paket-color, var(--paket-primary));
    margin-top: 2px;
}

.paket-admin-populer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--paket-warning);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.paket-admin-actions {
    display: flex;
    gap: 8px;
}

.paket-admin-actions .btn {
    flex: 1;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991.98px) {
    .paket-hero {
        padding: 60px 0 80px;
    }

    .paket-hero-title {
        font-size: 2.5rem;
    }

    .paket-card-populer {
        transform: scale(1);
    }

    .paket-card-populer:hover {
        transform: translateY(-12px);
    }

    .paket-detay-sticky {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .paket-hero-title {
        font-size: 2rem;
    }

    .paket-hero-stats {
        gap: 16px;
    }

    .paket-section-title {
        font-size: 1.8rem;
    }

    .paket-detay-hero {
        padding: 32px 24px;
    }

    .paket-detay-ad {
        font-size: 1.8rem;
    }

    .paket-cta-card {
        padding: 32px 24px;
    }

    .paket-detay-kredi-box {
        flex-direction: column;
        gap: 16px;
    }

    .paket-detay-fiyat-box {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 16px;
    }
}
