/* ========================================
   PAKETLER PAGE STYLES
   influencer360.com.tr Style - Birebir Aynı
   ======================================== */

/* ===== HERO BANNER SECTION ===== */
.paketler-hero-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.paketler-hero-banner__content {
    max-width: 900px;
    margin: 0 auto;
}

.paketler-hero-banner__title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.3;
}

.paketler-hero-banner__highlight {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paketler-hero-banner__description {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ===== OLD HERO (REMOVED) ===== */
.paketler-hero {
    display: none;
}

/* ===== PRICING SECTION ===== */
.paketler-pricing {
    padding: 60px 0 100px;
    background: #ffffff;
}

.paketler-pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== FEATURES COLUMN (LEFT) ===== */
.paketler-pricing__features {
    display: none; /* Desktop'ta da gizli - her kartta özellik ismi var */
}

.paketler-pricing__feature-header {
    height: 180px;
    margin-bottom: 12px;
}

.paketler-pricing__feature-item {
    padding: 20px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.4;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    min-height: 70px;
}

/* ===== PACKAGE CARDS ===== */
.paketler-pricing__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.paketler-pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Pro Max Recommended Card */
.paketler-pricing__card--recommended {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-color: #81c784;
}

.paketler-pricing__card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CARD HEADER ===== */
.paketler-pricing__card-header {
    margin-bottom: 24px;
    text-align: center;
}

.paketler-pricing__card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.paketler-pricing__card-title--start {
    color: #1d1d1f;
}

.paketler-pricing__card-title--special {
    color: #4caf50;
}

.paketler-pricing__card-title--promax {
    color: #e91e63;
}

.paketler-pricing__card-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.paketler-pricing__card-btn:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
    color: #ffffff !important;
}

/* ===== CARD BODY ===== */
.paketler-pricing__card-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.paketler-pricing__card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    min-height: 60px;
    gap: 12px;
}

.paketler-pricing__card-row:last-child {
    border-bottom: none;
}

.paketler-pricing__card-feature {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.4;
    text-align: left;
    flex: 1;
}

.paketler-pricing__card-value {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.5;
    text-align: right;
    flex-shrink: 0;
}

.paketler-pricing__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.paketler-pricing__card-icon i {
    font-size: 18px;
    color: #d1d5db;
}

.paketler-pricing__card-icon--check i {
    color: #10b981;
    font-size: 20px;
}

/* ===== LIGHT MODE ===== */
body.light-mode {
    background: #ffffff;
}

body.light-mode .paketler-hero {
    background: #ffffff;
}

body.light-mode .paketler-pricing {
    background: #ffffff;
}

/* ===== RESPONSIVE ===== */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .paketler-hero-banner {
        padding: 120px 0 60px;
    }
    
    .paketler-hero-banner__title {
        font-size: 36px;
    }
    
    .paketler-hero-banner__description {
        font-size: 16px;
    }
    
    .paketler-pricing__cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .paketler-pricing__card {
        padding: 24px 16px;
    }
    
    .paketler-pricing__card-title {
        font-size: 26px;
    }
    
    .paketler-pricing__card-row {
        padding: 14px 12px;
    }
    
    .paketler-pricing__card-feature {
        font-size: 12px;
    }
    
    .paketler-pricing__card-value {
        font-size: 12px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .paketler-hero-banner {
        padding: 100px 0 50px;
    }
    
    .paketler-hero-banner__content {
        padding: 0 20px;
    }
    
    .paketler-hero-banner__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .paketler-hero-banner__description {
        font-size: 16px;
    }
    
    .paketler-pricing {
        padding: 40px 0 60px;
    }
    
    .paketler-pricing__cards {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .paketler-pricing__card {
        padding: 28px 20px;
    }
    
    .paketler-pricing__card-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .paketler-pricing__card-badge {
        top: 12px;
        right: 12px;
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .paketler-pricing__card-row {
        padding: 14px 12px;
    }
    
    .paketler-pricing__card-feature {
        font-size: 13px;
    }
    
    .paketler-pricing__card-value {
        font-size: 13px;
    }
    
    .paketler-pricing__card-icon {
        width: 28px;
        height: 28px;
    }
    
    .paketler-pricing__card-icon i {
        font-size: 16px;
    }
    
    .paketler-pricing__card-icon--check i {
        font-size: 18px;
    }
}

/* ===== ANIMATIONS ===== */
.paketler-pricing__card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.paketler-pricing__card:nth-child(2) { animation-delay: 0.1s; }
.paketler-pricing__card:nth-child(3) { animation-delay: 0.2s; }
.paketler-pricing__card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
.paketler-pricing__card:focus-within {
    outline: 2px solid #4caf50;
    outline-offset: 4px;
}

.paketler-pricing__card-btn:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}
