/* İlk Alım Paketleri Bölümü */
.first-purchase-section {
    padding: 0px 0 !important;
    background: linear-gradient(135deg, #7bbd32 0%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

.first-purchase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0;
}

.first-purchase-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: #ff0000 !important;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.first-purchase-badge i {
    font-size: 24px;
    animation: pulse 2s infinite;
    color: #ff0000 !important;
}

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

.first-purchase-section .h2Baslik {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.first-purchase-section .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.first-purchase-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.first-purchase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.first-purchase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 15px;
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.package-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.package-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.price-per-sms {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.package-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: #fff;
    text-decoration: none;
}

/* Standart Paketler Bölümü */
.standard-packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: #667eea;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.standard-packages-section .h2Baslik {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.standard-package-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.standard-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.standard-package-card.popular {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.package-header-standard {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 10px;
}

.package-title-standard {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.package-description-standard {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.package-price-standard {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.price-amount-standard {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-per-sms-standard {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.package-features-standard {
    margin-bottom: 25px;
}

.feature-item-standard {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.feature-item-standard i {
    color: #667eea;
    font-size: 0.9rem;
}

.package-btn-standard {
    display: block;
    width: 100%;
    padding: 12px;
    background: #667eea;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.package-btn-standard:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .first-purchase-section .h2Baslik,
    .standard-packages-section .h2Baslik {
        font-size: 2rem;
    }
    
    .package-title {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .first-purchase-section,
    .standard-packages-section {
        padding: 60px 0;
    }
    
    .first-purchase-section .h2Baslik,
    .standard-packages-section .h2Baslik {
        font-size: 1.75rem;
    }
    
    .first-purchase-card,
    .standard-package-card {
        margin-bottom: 20px;
    }
}

