/* ========================================
   PAKETLER SAYFASI STILLERI
   ======================================== */

/* Hero */
.paketler-hero {
    background: linear-gradient(135deg, #3d618d 0%, #5b82b0 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.paketler-hero h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.paketler-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Container */
.paketler-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .paketler-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .paketler-container {
        grid-template-columns: 1fr;
    }
}

/* Paket Kartı */
.paket-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.paket-card.current {
    border-color: #22c55e;
}

.paket-card.featured {
    border-color: #f59e0b;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
}

/* Badge */
.paket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Header */
.paket-header {
    text-align: center;
    margin-bottom: 20px;
}

.paket-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.paket-icon.free {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: #fff;
}

.paket-icon.standard {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.paket-icon.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.paket-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.paket-desc {
    font-size: 14px;
    color: #64748b;
}

/* Price */
.paket-price {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.paket-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.paket-price .period {
    font-size: 14px;
    color: #64748b;
}

/* Features */
.paket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.paket-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

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

.paket-features li.included i {
    color: #22c55e;
}

.paket-features li.excluded {
    color: #94a3b8;
}

.paket-features li.excluded i {
    color: #ef4444;
}

/* Button */
.paket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.paket-btn.current {
    background: #dcfce7;
    color: #16a34a;
}

.paket-btn.disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.paket-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.paket-btn.primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.paket-btn.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.paket-btn.premium:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Info Cards */
.paketler-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .paketler-info {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.info-card i {
    font-size: 32px;
    color: #3d618d;
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Sidebar Cards */
.paket-durum-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.paket-durum-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 16px;
}

.paket-durum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
}

.paket-durum.free {
    background: #f1f5f9;
    color: #64748b;
}

.paket-durum.standard {
    background: #dbeafe;
    color: #1d4ed8;
}

.paket-durum.premium {
    background: #fef3c7;
    color: #d97706;
}

.paket-giris-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.paket-giris-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3d618d 0%, #5b82b0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 24px;
}

.paket-giris-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.paket-giris-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3d618d 0%, #5b82b0 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.paket-giris-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(61, 97, 141, 0.4);
    color: #fff;
}

/* Fiyat Bilgisi */
.paketler-fiyat-bilgi {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.fiyat-bilgi-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.fiyat-bilgi-text strong {
    display: block;
    font-size: 15px;
    color: #92400e;
    margin-bottom: 4px;
}

.fiyat-bilgi-text p {
    font-size: 13px;
    color: #78350f;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   HERO BÖLÜMÜ - GELİŞTİRİLMİŞ
   ======================================== */
.paketler-hero-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

.paketler-hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ========================================
   KARŞILAŞTIRMA TABLOSU
   ======================================== */
.paketler-compare {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.paketler-compare h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.paketler-compare h3 i {
    margin-right: 10px;
    color: #3d618d;
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.compare-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.compare-table td.highlight,
.compare-table th.highlight {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    font-weight: 600;
}

.compare-table .text-success {
    color: #22c55e;
}

.compare-table .text-danger {
    color: #ef4444;
}

/* ========================================
   SSS BÖLÜMÜ
   ======================================== */
.paketler-sss {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.paketler-sss h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.paketler-sss h3 i {
    margin-right: 10px;
    color: #3d618d;
}

.sss-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sss-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-item:hover {
    border-color: #3d618d;
}

.sss-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.sss-question:hover {
    background: #f1f5f9;
}

.sss-question i {
    transition: transform 0.3s ease;
    color: #64748b;
}

.sss-item.active .sss-question i {
    transform: rotate(180deg);
}

.sss-answer {
    display: none;
    padding: 16px 20px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
}

.sss-item.active .sss-answer {
    display: block;
}

/* ========================================
   FİYAT ALANI
   ======================================== */
.paket-price {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.paket-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.paket-price .period {
    font-size: 14px;
    color: #64748b;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .paketler-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

/* ========================================
   SATIŞ DURDURULDU BANNER
   ======================================== */
.satis-durduruldu-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 24px auto 32px;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.satis-durduruldu-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.satis-durduruldu-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.satis-durduruldu-icon i {
    font-size: 26px;
    color: #fff;
}

.satis-durduruldu-content {
    flex: 1;
}

.satis-durduruldu-content h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #92400e;
}

.satis-durduruldu-content p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.6;
}

.satis-durduruldu-alt {
    font-size: 0.9rem !important;
    color: #a16207 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.satis-durduruldu-alt i {
    color: #d97706;
}

.satis-durduruldu-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(146, 64, 14, 0.3);
}

.takipte-kal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #b45309;
}

.takipte-kal i {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Satış durduruldu banner responsive */
@media (max-width: 768px) {
    .satis-durduruldu-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .satis-durduruldu-icon {
        margin: 0 auto;
    }

    .satis-durduruldu-alt {
        justify-content: center;
    }

    .satis-durduruldu-footer {
        text-align: center;
    }
}

/* ========================================
   DARK MODE
   ======================================== */
[data-theme="dark"] .paket-card,
.dark .paket-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .paket-name,
.dark .paket-name {
    color: #f1f5f9;
}

[data-theme="dark"] .paket-desc,
.dark .paket-desc {
    color: #94a3b8;
}

[data-theme="dark"] .paket-features li,
.dark .paket-features li {
    color: #cbd5e1;
    border-color: #334155;
}

[data-theme="dark"] .satis-durduruldu-banner,
.dark .satis-durduruldu-banner {
    background: linear-gradient(135deg, #451a03 0%, #78350f 50%, #92400e 100%);
    border-color: #d97706;
}

[data-theme="dark"] .satis-durduruldu-content h3,
.dark .satis-durduruldu-content h3 {
    color: #fde68a;
}

[data-theme="dark"] .satis-durduruldu-content p,
.dark .satis-durduruldu-content p {
    color: #fcd34d;
}

[data-theme="dark"] .satis-durduruldu-alt,
.dark .satis-durduruldu-alt {
    color: #fbbf24 !important;
}

[data-theme="dark"] .takipte-kal,
.dark .takipte-kal {
    color: #fcd34d;
}

[data-theme="dark"] .info-card,
.dark .info-card {
    background: #1e293b;
}

[data-theme="dark"] .info-card h4,
.dark .info-card h4 {
    color: #f1f5f9;
}

[data-theme="dark"] .info-card p,
.dark .info-card p {
    color: #94a3b8;
}

[data-theme="dark"] .paketler-fiyat-bilgi,
.dark .paketler-fiyat-bilgi {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
    border-color: #3b82f6;
}

[data-theme="dark"] .fiyat-bilgi-text strong,
.dark .fiyat-bilgi-text strong {
    color: #93c5fd;
}

[data-theme="dark"] .fiyat-bilgi-text p,
.dark .fiyat-bilgi-text p {
    color: #bfdbfe;
}

[data-theme="dark"] .paketler-compare,
.dark .paketler-compare {
    background: #1e293b;
}

[data-theme="dark"] .paketler-compare h3,
.dark .paketler-compare h3 {
    color: #f1f5f9;
}

[data-theme="dark"] .compare-table th,
.dark .compare-table th {
    background: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .compare-table td,
.dark .compare-table td {
    border-color: #334155;
    color: #cbd5e1;
}

[data-theme="dark"] .paketler-sss,
.dark .paketler-sss {
    background: #1e293b;
}

[data-theme="dark"] .paketler-sss h3,
.dark .paketler-sss h3 {
    color: #f1f5f9;
}

[data-theme="dark"] .sss-item,
.dark .sss-item {
    border-color: #334155;
}

[data-theme="dark"] .sss-question,
.dark .sss-question {
    background: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .sss-answer,
.dark .sss-answer {
    color: #cbd5e1;
    border-color: #334155;
}
