/* SEO Paketleri - Frontend Styles */
.seo-paketleri-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Tabs */
.seo-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.seo-tab {
    padding: 12px 30px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    outline: none;
}

.seo-tab:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.seo-tab.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
}

/* Packages Section */
.seo-packages-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.seo-packages-section.active {
    display: block;
}

.seo-packages-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Packages Grid */
.seo-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Package Card */
.seo-package-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.seo-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.seo-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.package-badge .icon-star {
    font-size: 14px;
}

/* Package Header */
.package-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: #059669;
    text-shadow: 0 1px 4px rgba(5, 150, 105, 0.3);
}

.price-note {
    font-size: 12px;
    color: #718096;
    margin-left: auto;
    font-weight: 500;
}

/* Package Feature */
.package-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 24px;
    line-height: 1;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

/* Package Competition */
.package-competition {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #f7fafc;
    border-radius: 8px;
    font-size: 13px;
}

.competition-percent {
    font-weight: 700;
    color: #059669;
    text-shadow: 0 1px 3px rgba(5, 150, 105, 0.3);
}

.competition-level {
    color: #718096;
    font-weight: 500;
}

/* Buy Button */
.package-buy-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.package-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5), 0 0 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.7), 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Package Details Toggle */
.package-details-toggle {
    text-align: center;
    margin-top: 15px;
}

.toggle-details {
    background: none;
    border: none;
    color: #10b981;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}

.toggle-details:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    text-shadow: 0 1px 5px rgba(5, 150, 105, 0.4);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.toggle-details.active .toggle-icon {
    transform: rotate(180deg);
}

/* Package Details */
.package-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.package-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-services li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.package-services li:last-child {
    border-bottom: none;
}

.package-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(16, 185, 129, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .seo-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-package-card {
        padding: 20px;
    }
    
    .package-name {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .seo-tabs {
        flex-direction: column;
    }
    
    .seo-tab {
        width: 100%;
    }
}
